/* GLOBAL STYLES */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #0f172a; /* Deep Navy */
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(120deg, #020617, #0f172a);
    position: relative;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-sub {
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 0.8;
}

.hero-title {
    font-size: 52px;
    margin: 10px 0;
}

.hero-title span {
    color: #22c55e; /* Green accent */
}

.hero-p {
    opacity: 0.9;
}

.hero-btns {
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 5px;
    display: inline-block;
}

.btn-primary {
    background: #22c55e;
    color: #000;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* SECTION CONTROLS */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.section-title span {
    color: #22c55e;
}

/* ABOUT US SECTION - DARK THEME & IMAGE ALIGNMENT */
#about-us {
    background: #0b0f1a; /* Darker navy/black to match the dark room image */
    padding: 100px 0;
    color: #ffffff;
}

#about-us .about-flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE COLUMN */
#about-us .about-image-column {
    flex: 1;
    max-width: 550px;
}

#about-us .about-featured-image {
    width: 100%;
    height: 450px; /* Slightly taller for the chosen portrait-style image */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15); /* Green glow matching your span color */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* TEXT COLUMN */
#about-us .about-text-column {
    flex: 1.2;
}

#about-us .section-subheading {
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #22c55e;
}

#about-us .section-mainheading {
    font-size: 42px;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.1;
}

#about-us .section-mainheading span {
    color: #22c55e;
}

#about-us .about-description {
    opacity: 0.8;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* STATS BOXES */
#about-us .about-stats-row {
    display: flex;
    gap: 20px;
}

#about-us .stat-box {
    background: #161e2d; /* Lighter navy cards */
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#about-us .stat-box:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    background: #1c2638;
}

#about-us .stat-box h2 {
    font-size: 34px;
    color: #22c55e;
    margin: 0 0 5px 0;
}

#about-us .stat-box p {
    font-size: 13px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    #about-us .about-flex-container {
        flex-direction: column;
        text-align: center;
    }
    #about-us .about-stats-row {
        flex-wrap: wrap;
    }
}

/* STATS BOXES ROW */
#about-us .about-stats-row {
    display: flex;
    gap: 20px;
}

#about-us .stat-box {
    background: #1e293b; /* Dark card color */
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#about-us .stat-box:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
}

#about-us .stat-box h2 {
    font-size: 32px;
    color: #22c55e;
    margin-top: 0;
    margin-bottom: 5px;
}

#about-us .stat-box p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    #about-us .about-flex-container {
        flex-direction: column;
        text-align: center;
    }
    #about-us .about-image-column {
        margin-bottom: 30px;
    }
    #about-us .about-stats-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* 2. PROCESS SECTION - Specific Background & 4-Column Grid */
#process {
    background: #1e293b; /* Lighter Navy for separation */
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Fixed 4-box setting */
    gap: 30px;
    text-align: center;
}

.process-card {
    background: #0f172a; /* Dark cards on lighter section */
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
}

.step {
    width: 50px;
    height: 50px;
    background: #22c55e;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 700;
    margin-bottom: 15px;
}

/* 3. PREMIUM TOOLS SECTION */
#tools {
    /* Royal Midnight Gradient */
    background: radial-gradient(circle at center, #111827 0%, #030712 100%);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 35px;
}

/* THE PREMIUM GLASS CARD */
.tool-card {
    /* Semi-transparent dark slate */
    background: rgba(31, 41, 55, 0.4); 
    backdrop-filter: blur(12px); /* Premium frosted glass effect */
    padding: 30px;
    border-radius: 20px; /* More rounded for a modern feel */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 360px; 
    display: flex;
    flex-direction: column;
    /* Subtle silver border */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ROYAL HOVER STATE */
.tool-card:hover {
    transform: translateY(-12px);
    background: rgba(31, 41, 55, 0.7);
    /* Gilded Green Glow */
    border-color: #22c55e;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 20px rgba(34, 197, 94, 0.2);
}

/* TYPOGRAPHY */
.tool-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    /* Royal green accent bar */
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

/* SCROLLBAR & LIST */
.tool-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex-grow: 1;
}

/* Premium Slim Scrollbar */
.tool-card ul::-webkit-scrollbar {
    width: 3px;
}

.tool-card ul::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.5);
    border-radius: 10px;
}

/* PREMIUM LIST ITEMS */
.tool-card ul li {
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.tool-card ul li:hover {
    transform: translateX(5px); /* Subtle royal "slide" on hover */
}

.tool-card a {
    color: #94a3b8; /* Subtle grey for base state */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.tool-card a:hover {
    color: #22c55e; /* Vibrant green reveal */
}

/* PREMIUM SIDE-BY-SIDE INTELLIGENCE HUB */
.section-premium-hub {
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%); /* Royal Depth */
    padding: 100px 0;
    color: #ffffff;
}

.hub-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.hub-column {
    flex: 1;
}

/* CENTERED TITLES WITHIN SECTIONS */
.hub-column h3 {
    text-align: center; /* Title center alignment */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    padding-bottom: 15px;
}

/* METHODOLOGY STYLING */
.method-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.method-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px); /* Glassmorphism */
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.method-card:hover {
    border-color: #22c55e;
    transform: translateX(10px);
    background: rgba(30, 41, 59, 0.7);
}

.method-card span {
    font-weight: 900;
    color: #22c55e;
    font-size: 20px;
}

/* GLOSSARY TAGS STYLING */
.glossary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center; /* Centering the tags for balance */
}

.glossary-tags span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px; /* Pill shape for premium feel */
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    transition: all 0.4s ease;
    cursor: default;
}

.glossary-tags span:hover {
    background: #22c55e;
    color: #020617;
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hub-flex {
        flex-direction: column;
    }
}

/* PREMIUM FAQ SECTION */
.section-premium-faq {
    background: #020617; /* Matches the deep midnight background in your images */
    padding: 100px 0;
    color: #ffffff;
}

.section-premium-faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Centered Section Title */
.premium-section-title {
    text-align: center; /* Heading centered in section */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.premium-section-title span {
    color: #22c55e; /* Vibrant green accent from your UI */
}

/* 2-Column FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Premium FAQ Card Style */
.faq-item {
    background: #0b1120; /* Dark slate card background */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #22c55e; /* Green glow on hover */
}

.faq-item h4 {
    color: #22c55e; /* Question text color matches image_258344.png */
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #94a3b8; /* Muted gray for body text readability */
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr; /* Single column on tablets/mobile */
    }
}

/* PREMIUM LEGAL & ETHICAL SECTION */
.section-premium-legal {
    background: radial-gradient(circle at bottom, #0f172a 0%, #020617 100%); /* Royal Depth */
    padding: 100px 0;
    color: #ffffff;
}

.section-premium-legal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Centered Title */
.section-premium-legal .premium-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.section-premium-legal .premium-section-title span {
    color: #22c55e;
}

/* Side-by-Side Flex Layout */
.legal-flex-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.legal-box {
    flex: 1;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px); /* Premium Glassmorphism */
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

/* Centered Column Headings */
.legal-box h3 {
    text-align: center; /* Heading centered in section */
    color: #22c55e;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.legal-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-box ul li {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    color: #cbd5e1;
    position: relative;
    padding-left: 20px;
}

/* Custom Bullet Points */
.legal-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.legal-box strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

/* Hover Effect */
.legal-box:hover {
    border-color: #22c55e;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .legal-flex-container {
        flex-direction: column;
    }
}

/* PREMIUM SINGLE-LINE FOOTER */
.section-premium-footer {
    background: #020617; /* Matches the deep obsidian theme */
    padding: 20px 0;
    border-top: 1px solid rgba(34, 197, 94, 0.2); /* Subtle green divider */
    color: #ffffff;
}

.footer-single-line {
    display: flex;
    justify-content: space-between; /* Spreads elements across one line */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Home Link Styling */
.footer-home-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.footer-home-link:hover {
    color: #22c55e; /* Premium Green Hover */
}

/* Social Icons Styling */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 16px;
    transition: 0.4s;
    text-decoration: none;
    opacity: 0.6;
}

.footer-socials a:hover {
    color: #22c55e; /* Glowing green effect */
    opacity: 1;
    transform: translateY(-2px);
}

/* Copyright Text Styling */
.footer-copyright {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

.footer-copyright span {
    color: #22c55e; /* Royal Green brand highlight */
    font-weight: 600;
}

/* Responsive: Stacks on very small screens if necessary */
@media (max-width: 768px) {
    .footer-single-line {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}