:root {
    /* Color Palette - Premium Dark Theme */
    --color-bg-primary: #0B1120;
    /* Deep Navy */
    --color-bg-secondary: #151E32;
    /* Lighter Navy */
    --color-accent: #F5A623;
    /* Gold/Orange */
    --color-accent-hover: #E0961F;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #94A3B8;
    /* Slate Grey */
    --color-border: #1E293B;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0B1120 0%, #1A2744 100%);
    --gradient-accent: linear-gradient(90deg, #F5A623 0%, #FFD700 100%);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--color-accent);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-accent);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #000;
}

/* Header & Navbar */
header {
    height: var(--header-height);
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    /* Center the container inside if needed, though margins usually do it */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    /* Removed global height: 100% to avoid footer stretching */
}

nav .logo-link {
    height: 100%;
}

.footer-col .logo-link {
    height: auto;
    margin-bottom: 0;
    /* Tight spacing */
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    margin-left: 0;
    margin-top: 0;
    text-align: left;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Dropdown Active State (Click-based) */
.nav-links li.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    border-radius: 0;
}

.dropdown-menu li a:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.02);
}

/* Desktop Hover Interaction */
@media (min-width: 769px) {
    .nav-links li.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        /* Stack naturally */
        width: 100%;
        box-shadow: none;
        background: transparent;
        padding: 0;
        border: none;
        opacity: 1;
        /* Always visible in DOM but hidden via height/display usually, strictly relying on active class here */
        visibility: visible;
        /* We rely on display: none/block for mobile usually, or height */
        transform: none;
        display: none;
        /* Hidden by default on mobile */
        padding-left: 20px;
    }

    .nav-links li.dropdown.active .dropdown-menu {
        display: block;
        /* Show when clicked */
    }

    .dropdown-menu li a {
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.7);
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 20%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* New Flex Container for Content and Image */
.container.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    z-index: 1;
    padding-right: 40px;
    /* Add space between text and image */
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* 3D Background Elements (Optional) */
.hero-bg-graphic {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

/* Hero Image Container & 3D Effect */
.hero-image-container {
    position: relative;
    /* Relative positioning for flex item */
    width: 45%;
    max-width: 600px;
    height: auto;
    z-index: 1;
    perspective: 1000px;
    /* Enable 3D space */
    right: auto;
    /* Reset any absolute positioning */
    top: auto;
    transform: none;
    /* Reset transform */
}

.hero-3d-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Smooth movement */
    border-radius: 20px;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

/* 3D Floating Animation (Idle) */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-3d-wrapper:not(:hover) {
    animation: float 6s ease-in-out infinite;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--color-accent);
}

.section-title p {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--color-bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

/* Footer Links Hover Effect */
.footer-links li a {
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Contact List Special Styling */
.contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-links li i {
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-links li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}



/* Mobile Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col:first-child {
        grid-column: span 2;
    }

    .container.hero-container-flex {
        flex-direction: column-reverse;
        /* Image on top/middle, text below? Or standard stack */
        text-align: center;
        gap: 40px;
    }

    .hero {
        padding-top: 100px;
        /* Reduced padding */
        align-items: center;
        /* Center vertically if needed */
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        position: relative;
        width: 80%;
        max-width: 400px;
        height: auto;
        transform: none;
        margin: 0 auto;
        right: auto;
        top: auto;
    }

    .hero-3d-wrapper,
    .hero-img {
        border-radius: 20px;
        /* Full rounded corners on mobile */
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Links */
.service-card-link {
    display: block;
    height: 100%;
}

.service-card-link .service-card {
    height: 100%;
    position: relative;
    padding-bottom: 60px;
    /* Space for Read More */
}

.read-more {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.service-card-link:hover .read-more {
    opacity: 1;
    gap: 15px;
}


/* Page Header (for sub-pages) */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(27, 36, 56, 1) 0%, rgba(11, 17, 32, 1) 100%);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Process Grid (Home) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: var(--color-bg-secondary);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0;
}

.process-card .icon-box {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    background: var(--color-accent);
    color: #000;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-bg-secondary);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--color-accent);
    background: linear-gradient(145deg, #1A2238 0%, #151E32 100%);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* About Page */
.intro-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.vm-card {
    background: #0F1623;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid var(--color-accent);
}

.vm-card .icon-box {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.vm-card p {
    color: var(--color-text-secondary);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    background: var(--color-bg-secondary);
    padding: 50px;
    border-radius: 20px;
}

.img-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: #253350;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    border: 4px solid var(--color-accent);
}

.founder-points {
    list-style: none;
}

.founder-points li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}


/* Industry Focus Section */
.industry-section {
    padding: 100px 0;
    background: #020617;
    /* Very dark navy/black background */
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left Image Wrapper */
.industry-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.industry-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.floating-icons-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.float-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
}

.float-icon.icon-tech {
    color: var(--color-accent);
}

.float-icon.icon-medical {
    color: #fff;
}

.float-icon.icon-finance {
    color: var(--color-accent);
}

.float-icon.icon-manufacturing {
    color: #fff;
}


/* Right Content */
.section-title-left {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.industry-desc {
    color: #94a3b8;
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 90%;
}

.industry-list {
    list-style: none;
    padding: 0;
}

.industry-list li {
    display: flex;
    align-items: flex-start;
    /* Align with top of text */
    gap: 25px;
    margin-bottom: 35px;
}

.list-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(245, 166, 35, 0.3);
    /* Subtle orange border */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.industry-list li:hover .list-icon-box {
    background: rgba(245, 166, 35, 0.1);
    border-color: var(--color-accent);
}

.industry-list div h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 700;
}

.industry-list div p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Specific styling to match design */
.industry-list li:nth-child(1) .list-icon-box {
    color: var(--color-accent);
    border-color: rgba(245, 166, 35, 0.5);
}

.industry-list li:nth-child(2) .list-icon-box {
    color: var(--color-accent);
    border-color: rgba(245, 166, 35, 0.5);
}


/* Why ARS Consulting Section */
.why-us-section {
    padding: 80px 0;
    background: #020617;
    /* Keeping consistent dark background */
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border matching reference */
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    /* Orange circle border */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    /* Orange checkmark */
    font-size: 0.8rem;
    flex-shrink: 0;
    background: transparent;
    margin-top: 3px;
    /* Align with text top */
}

.why-us-list p {
    font-size: 1.1rem;
    color: #e2e8f0;
    /* Light text color */
    margin: 0;
    line-height: 1.5;
}

/* Faded for others to match hierarchy if needed, but keeping consistent is safer */


/* Stats Detailed Section */
.stats-detailed-section {
    padding: 80px 0;
    background: #020617;
}

.stats-detailed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-header {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.header-orange {
    background: var(--color-accent);
    color: #020617;
    /* Dark text on orange */
}

.header-white {
    background: #ffffff;
    color: #020617;
    /* Dark text on white */
}

.stat-row {
    background: rgba(255, 255, 255, 0.03);
    /* Very dark card background */
    padding: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #cbd5e1;
    /* Light grey text */
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    /* Make rows same height if possible, usually handled by grid but flex here */
    display: flex;
    align-items: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .stats-grid,
    .vm-grid,
    .founder-grid,
    .industry-grid,
    .why-us-grid,
    .stats-detailed-grid {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        gap: 30px;
    }

    .foundation-grid {
        padding: 30px;
        text-align: center;
    }

    .founder-grid {
        padding: 30px;
        text-align: center;
    }

    .founder-points li {
        text-align: left;
    }

    .img-placeholder {
        width: 150px;
        height: 150px;
    }
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Our Team Page Styles */
.team-section {
    padding-top: 50px;
    padding-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0B1120;
    /* Dark background matching theme */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid rgba(245, 166, 35, 0.3);
    /* Subtle outer border */
    box-shadow: inset 0 0 0 1px rgba(245, 166, 35, 0.3);
    /* Inner border effect */
}

/* Create the distinct ring effect */
.member-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(245, 166, 35, 0.5);
    /* Outer ring */
    opacity: 0.7;
}

.member-avatar span {
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.member-name {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.member-role {
    font-size: 0.75rem;
    color: #94a3b8;
    /* Slate grey */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive for Team */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Pricing Page Styles */
.pricing-section {
    padding-top: 50px;
    padding-bottom: 100px;
}

.pricing-table-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
}

.pricing-col {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-col.bg-white {
    background: #ffffff;
    color: #000;
}

.pricing-col.bg-orange {
    background: var(--color-accent);
    /* Orange */
    color: #000;
    position: relative;
    transform: scaleY(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: none;
}

/* Triangle Top for Highlight Column */
.triangle-top {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid var(--color-accent);
}

.pricing-header {
    text-align: center;
    padding: 25px 0;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.pricing-rows {
    padding: 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #0B1120;
    /* Dark background for rows */
    color: #fff;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-col.bg-orange .pricing-row {
    background: #0B1120;
    color: #fff;
    /* Keep text white inside dark rows */
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.row-left i {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.row-right {
    font-weight: 800;
    font-size: 1.2rem;
}

.pricing-col.bg-orange .row-right {
    color: var(--color-accent);
}

/* Bottom Grid: Terms & Guarantee */
.pricing-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.payment-terms h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.guarantee-card {
    background: var(--color-accent);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #000;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.guarantee-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.guarantee-box p {
    margin: 5px 0;
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.terms-apply {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Pricing */
@media (max-width: 992px) {
    .pricing-table-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-col.bg-orange {
        transform: none;
    }

    .pricing-bottom-grid {
        grid-template-columns: 1fr;
    }

    .bg-white .pricing-row {
        background: #0B1120;
        color: #fff;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #151E32;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    /* Reduced movement */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent);
}

.blog-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
    min-height: 50px;
}

.blog-content p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-footer {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.blog-card:hover .blog-footer {
    background: var(--color-accent);
    color: #000;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Suggested Blogs Section */
.suggested-section {
    padding: 60px 0;
    background: #0B1120;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.suggested-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Reuse .blog-card styles but maybe slightly smaller if needed, 
   but standard grid styles work best for consistency. */

/* Global Mobile Optimization Overrides */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1 {
        font-size: 2rem !important;
        /* Prevent massive headings */
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .section {
        padding: 50px 0;
        /* Reduce padding on mobile */
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Suggested Grid Mobile */
    .suggested-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
    }
}

/* Redesigned Blog Details Page */
.blog-article-header {
    padding: 120px 0 60px;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-badge {
    background: rgba(245, 166, 35, 0.1);
    color: var(--color-accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.blog-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: var(--color-accent);
}

.blog-article-content {
    padding: 60px 0;
}

.blog-hero {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.25rem;
    color: #e2e8f0;
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    font-style: italic;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.article-body h2 {
    font-size: 2rem;
    color: #fff;
    margin: 40px 0 25px;
    font-weight: 700;
}

.highlight-box {
    background: rgba(11, 17, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-box li:last-child {
    margin-bottom: 0;
}

.author-box {
    margin-top: 60px;
    background: #0B1120;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    padding: 3px;
    background: #020617;
}

.author-info h4 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin: 0 0 10px;
    font-weight: 500;
}

.author-bio {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-hero {
        height: 250px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}
/* Mobile Optimization Fixes */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Blog Grid Fix */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-top: 40px;
    }
}
