:root {
    --primary: #2A8CA6;
    /* Original Brand Teal */
    --primary-light: #4DB3D8;
    --primary-dark: #1A5C78;
    --accent: #FFFFFF;

    /* Gradient Themes */
    --bg-gradient-body: linear-gradient(180deg, #FFFFFF 0%, #F0F9FB 100%);
    --bg-gradient-section: linear-gradient(135deg, #E0F2F5 0%, #F0F9FB 100%);
    --bg-gradient-primary: linear-gradient(135deg, #2A8CA6 0%, #4DB3D8 100%);
    --bg-gradient-dark: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    --bg-gradient-impact: linear-gradient(135deg, #1A5C78 0%, #2A8CA6 100%);
    --bg-gradient-soft: linear-gradient(135deg, #F5F7FA 0%, #E8ECF2 100%);
    --bg-gradient-hero-about: linear-gradient(120deg, #1a2a3a 0%, #2A8CA6 100%);

    --bg-body: #FFFFFF;
    --bg-header: #FFFFFF;

    --text-main: #1F2937;
    /* Slightly darker for better readability */
    --text-muted: #6B7280;
    --text-light: #FFFFFF;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --max-width: 1400px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(42, 140, 166, 0.1), 0 4px 6px -2px rgba(42, 140, 166, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(42, 140, 166, 0.25);
    --glass: blur(16px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient-body);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Utils */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    background: var(--bg-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(42, 140, 166, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(42, 140, 166, 0.4);
}

.btn-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.btn-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* Slimmed down a bit */
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 30px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Separator Pipes */
.nav-links li:not(:last-child)::after {
    content: "|";
    color: #ddd;
    margin: 0 10px;
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    display: block;
    z-index: 1100;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
    height: auto;
}

.dropdown-menu li::after {
    display: none !important;
    /* Remove separators in dropdown */
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
    border-radius: 8px;
    margin: 0 8px;
    width: auto;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    /* Above overlay */
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    transform: scale(1.1);
}

/* Active Indicator (Breadcrumb style) */
.mobile-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

@media (max-width: 900px) {

    .nav-links,
    .nav-cta .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: auto;
    min-height: 70vh;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: flex-start;
    /* Align left horizontally */
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 120px;
    padding-left: 10%;
    /* Spacing from left edge */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Deeper, richer gradient */
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.7) 0%, rgba(17, 24, 39, 0.9) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
    /* Subtle blur for focus */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 30px;
    color: white;
}

.hero-top-line {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(42, 140, 166, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(42, 140, 166, 0.3);
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 0.2s;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: white;
    /* Subtle text gradient */
    background: linear-gradient(to right, #ffffff 20%, #e0f2f5 50%, #ffffff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 5s linear infinite, fadeInUp 0.8s ease-out forwards 0.4s;
    opacity: 0;
}

.hero-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    display: inline-block;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out forwards 0.6s;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease-out forwards 0.8s;
}

/* Premium Button in Hero */
.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 1s;
    position: relative;
    overflow: hidden;
}

/* Shine Effect for Button */
.hero-content .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.hero-content .btn:hover::after {
    left: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* Responsive Font Sizes */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-quote {
        font-size: 1.2rem;
    }
}

.hero-tech-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

/* Shape Divider */
.custom-shape-divider-bottom-1678234839 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.custom-shape-divider-bottom-1678234839 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1678234839 .shape-fill {
    fill: var(--bg-body);
    /* Matches next section background */
}

.custom-shape-divider-top-1678234839 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

/* About Page Specifics */
.about-hero {
    position: relative;
    padding: 220px 0 120px;
    background: radial-gradient(circle at 15% 50%, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-anim-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    /* Slight transparency to blend with gradient */
}

.about-hero .container {
    position: relative;
    z-index: 10;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.about-hero .hero-eyebrow {
    color: var(--primary-light);
    opacity: 0.9;
}

.about-hero .hero-title-sc {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-hero .hero-desc {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
}

.about-hero .btn-light-hero {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.about-hero .btn-light-hero:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

/* Enhanced Lists for Story */
.story-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.story-list li {
    background: rgba(42, 140, 166, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-list li i {
    color: var(--primary);
}

/* Card Hover Enhancements */
.info-card,
.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card::before,
.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-card:hover,
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(42, 140, 166, 0.15);
}

.info-card:hover::before,
.process-step:hover::before {
    transform: scaleX(1);
}

.info-card h3,
.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Process Step Numbers */
.step-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(42, 140, 166, 0.1);
    margin-bottom: -20px;
    transition: color 0.3s;
}

.process-step:hover .step-num {
    color: rgba(42, 140, 166, 0.2);
}

/* Feature Cards (Why Choose Us) - Glassy/Gradient */
.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    background: linear-gradient(180deg, #fff 0%, #f0f9fb 100%);
}

.feature-icon {
    font-size: 3rem;
    background: var(--bg-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

position: relative;
display: block;
width: calc(150% + 1.3px);
height: 120px;
transform: rotate(180deg);
}

.custom-shape-divider-top-1678234839 .shape-fill {
    fill: var(--bg-body);
}

/* Services Section */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

/* Add gradient texture to specific sections usually needing separation */
.services-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(224, 242, 245, 0.4) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    /* Increased for modern look */
    margin-top: 60px;
    padding: 0 40px;
}

/* Flip Cards */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 350px;
    /* Square proportions */
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: var(--shadow-md);
    border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card:hover .flip-card-front {
    pointer-events: none;
    z-index: -1;
}

.flip-card:hover .flip-card-back {
    pointer-events: auto;
    z-index: 5;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Front - Brand Blue */
.flip-card-front {
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    /* Removed blend mode overlay to keep images clear if desired, or add soft tint */
}

/* Optional Tint Overlay */
.flip-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 140, 166, 0.85);
    /* Solid brand color opacity */
    z-index: 1;
}

.flip-card-front-content {
    position: relative;
    z-index: 2;
}

.icon-box {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.front-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 100%;
    font-weight: 400;
}

.flip-card-front h3 {
    color: white;
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Back - Clean White/Light or Dark? User asked for "Exact Style". 
   If exact style implies the original Highland Logic look, it might be white or brand dark.
   I will go with BRAND DARK for contrast on flip, but keep it clean.
*/
.flip-card-back {
    background-color: #000000;
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
    line-height: 1.3;
}

.flip-card-back p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.5;
}

.flip-card-back .btn-light {
    background-color: white;
    color: black;
    border: none;
    border-radius: 24px;
    padding: 10px 25px;
    font-weight: 600;
}

.flip-card-back .btn-light:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 140, 166, 0.4);
}

/* About & Contact - Simple Clean */
.bg-dim {
    background: white;
}

.about-container,
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* --- Footer (New 4-Column Design) --- */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Col 1: Brand */
.footer-logo {
    display: inline-block;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    /* Slight rounded corners for better feel, or 0 for strict square */
}

.footer-logo-img {
    width: 140px;
    /* Slightly smaller to fit in padding */
    display: block;
    /* Removed filter so black logo shows on white bg */
}

.footer-desc {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--primary);
}

/* Cols 2-4: Links & Contact */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
    /* Subtle movement */
}

.footer-contact-info p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact-info a {
    color: #cccccc;
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    /* Header Logo Constraint on Mobile */
    .logo-container {
        display: block;
        width: 160px;
        height: 50px;
        background-image: url('assets/logo_mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        background-color: white;
        /* As requested: white bg */
        border-radius: 6px;
        padding: 4px 8px;
    }

    .logo-img {
        display: none !important;
    }

    .nav-links,
    .nav-cta .btn {
        display: none;
        /* Already existing usually, but ensuring safety inside this block if merging */
    }

    .mobile-menu-btn {
        display: flex;
        /* Already existing */
        /* Add hamburger styling here */
        font-size: 1.5rem;
        cursor: pointer;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Blog Page Styles --- */
.page-header {
    background-color: var(--secondary-color, #F3F4F6);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-color, #1F2937);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light, #6B7280);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon-placeholder {
    font-size: 3rem;
    color: var(--primary-color, #2563EB);
    opacity: 0.8;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-light, #9CA3AF);
    margin-bottom: 10px;
    display: block;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-color, #1F2937);
}

.blog-card p {
    font-size: 1rem;
    color: var(--text-light, #4B5563);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-text {
    font-weight: 500;
    color: var(--primary-color, #2563EB);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.btn-text:hover {
    gap: 10px;
}

/* --- About Page Styles --- */
.page-hero {
    padding: 180px 0 100px;
    background: #fff;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.hero-title-sc {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-ctas {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-light-hero {
    background: #f3f4f6;
    color: #111;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-light-hero:hover {
    background: #e5e7eb;
}

.text-limit {
    max-width: 800px;
    margin: 0 auto;
}

.text-body-lg {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.highlight-section {
    background: #000;
    color: white;
    padding: 100px 0;
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

/* Popup Icon Wrapper - No background circle, just the SVG */
.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Styles */
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4DB3D8;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4DB3D8;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #4DB3D8;
    }
}

.popup-content h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.support-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-box h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
}

.support-intro {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ddd;
}

.support-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 40px;
}

.support-list li {
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-list i {
    color: var(--primary);
}

.support-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #94a3b8;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    .grid-3,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-sc {
        font-size: 2.5rem;
    }

    .support-list {
        grid-template-columns: 1fr;
    }
}

/* --- Reviews & Slider (Clean Tech White) --- */
.reviews-section {
    padding: 120px 0;
    overflow: hidden;
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    color: var(--text-main);
}

/* Background Deco Element - Subtle Tech Grid or Gradient */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(42, 140, 166, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}

.reviews-left {
    position: relative;
    z-index: 2;
}

.reviews-eyebrow {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 5px;
}

.reviews-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #111;
    letter-spacing: -1px;
}

.persistent-stars {
    color: #FBBF24;
    font-size: 1.8rem;
    display: flex;
    gap: 8px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.reviews-right {
    position: relative;
}

/* Clean Card for Slider on White */
.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.reviews-slider-main {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px -10px rgba(42, 140, 166, 0.1);
}

.reviews-slider-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.review-slide {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.review-slide .quote {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
}

/* Quote Decorative Mark */
.review-slide .quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -30px;
    left: -30px;
    font-family: serif;
    line-height: 1;
}

.client-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

/* Removed Avatar Styles */

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    color: #111;
    font-size: 1.3rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.client-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons for White Bg */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(42, 140, 166, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -30px;
}

.slider-arrow.next {
    right: -25px;
}

.slider-dots {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-left: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(42, 140, 166, 0.5);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .reviews-left {
        text-align: center;
    }

    .persistent-stars {
        justify-content: center;
        margin-bottom: 40px;
    }

    .reviews-slider-main {
        padding: 40px;
        min-height: 420px;
    }

    .review-slide {
        top: 40px;
        left: 40px;
        right: 40px;
    }

    .slider-arrow.prev {
        left: 0;
    }

    .slider-arrow.next {
        right: 0;
    }
}

/* --- Futuristic Contact Form --- */
#contact {
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(42, 140, 166, 0.08) 0%, transparent 40%),
        var(--bg-gradient-body);
}

.contact-wrapper {
    align-items: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px -10px rgba(42, 140, 166, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(42, 140, 166, 0.15), 0 10px 20px rgba(42, 140, 166, 0.1);
    transform: translateY(-2px);
}

/* Form Button Styling specific override if needed or rely on btn-primary */
.contact-form button[type="submit"] {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .review-card {
        padding: 40px 20px;
    }

    .review-text {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Impact / Stats Section (Futuristic Update) --- */
#impact {
    background: var(--bg-gradient-impact);
    color: white;
    position: relative;
    overflow: hidden;
}

#impact .section-title {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- Project Spotlight (New) --- */
.project-spotlight {
    background: #fbfbfc;
    overflow: hidden;
    padding: 100px 0;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.spotlight-context {
    padding-top: 20px;
}

.spotlight-context .eyebrow {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.project-spotlight .section-title {
    text-align: left;
    margin-bottom: 25px;
    font-size: 3rem;
    line-height: 1.1;
    color: #111;
}

.spotlight-context .section-desc {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Filter Pills */
.spotlight-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-pill {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: default;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.filter-pill.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(42, 140, 166, 0.25);
}

/* ShowCase Slider */
.spotlight-showcase {
    position: relative;
    padding-left: 20px;
    /* Space for shadow */
}

.featured-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 40px;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.featured-card.animating {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.featured-img-container {
    height: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.featured-details {
    padding: 50px;
}

.featured-header {
    margin-bottom: 25px;
}

.project-type {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.featured-header h3 {
    font-size: 2.2rem;
    color: #111;
    line-height: 1.2;
    font-weight: 700;
}

.project-outcome-line {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 35px;
    font-weight: 500;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    line-height: 1.6;
}

.project-meta {
    margin-bottom: 35px;
}

.project-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.project-bullets li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.project-bullets li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 800;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tags span {
    font-size: 0.8rem;
    background: #f3f4f6;
    color: #4b5563;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.project-tags span:hover {
    background: var(--primary);
    color: white;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: gap 0.3s ease;
}

.btn-link i {
    transition: transform 0.3s;
}

.btn-link:hover {
    gap: 15px;
    color: var(--primary-dark);
}

.btn-link:hover i {
    transform: translateX(3px);
}

/* Thumbnails */
.project-thumbs {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}

.thumb {
    width: 140px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 3px solid transparent;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.thumb.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(42, 140, 166, 0.2);
    transform: translateY(-5px);
}

/* Nav Controls */
.spotlight-nav-desktop {
    margin-top: auto;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: white;
    box-shadow: 0 10px 20px rgba(42, 140, 166, 0.15);
    transform: scale(1.1);
}

.progress-indicator {
    font-family: monospace;
    /* Tech feel */
    font-size: 1.1rem;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 2px;
}

.current-num {
    color: var(--primary);
    font-weight: 800;
}

/* Bottom Row */
.spotlight-footer {
    border-top: 1px solid #eee;
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trusted-strip {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trusted-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.client-logos {
    display: flex;
    gap: 20px;
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: #e5e7eb;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-placeholder:hover {
    opacity: 1;
}

.spotlight-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .spotlight-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .spotlight-context {
        text-align: center;
    }

    .project-spotlight .section-title {
        text-align: center;
    }

    .spotlight-context .section-desc {
        margin: 0 auto 30px;
        text-align: center;
        /* Align text center for mobile */
    }

    .spotlight-filters {
        justify-content: center;
    }

    .slider-controls {
        justify-content: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .featured-img-container {
        height: 280px;
    }

    .featured-details {
        padding: 30px;
    }

    .spotlight-footer {
        flex-direction: column;
        text-align: center;
    }

    .trusted-strip {
        flex-direction: column;
        gap: 15px;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* --- Services Page Styles --- */

/* Hero */
.svc-hero {
    position: relative;
    padding: 0;
    height: 85vh;
    min-height: 600px;
    background-color: #0f172a;
    /* Deep Slate Fallback */
    display: flex;
    align-items: center;
    color: white;
    margin-top: 100px;
    overflow: hidden;
}

/* Animated Background via Pseudo-element */
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_bg_premium_dark.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
    /* Let some dark bg color through */
    animation: bgPulseZoom 20s infinite alternate ease-in-out;
}

.svc-hero .hero-overlay {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(42, 140, 166, 0.1) 100%);
    /* Deep slate to subtle teal hint */
    position: absolute;
    inset: 0;
    z-index: 1;
    backdrop-filter: blur(0px);
    /* Clearer view of abstract bg */
}

.svc-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.svc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-slide.active {
    opacity: 1;
    visibility: visible;
}

.svc-hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.svc-hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    /* Sharper shadow for contrast */
}

.svc-hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0f2fe;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.svc-hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

/* Active State Animations */
.svc-slide.active .svc-hero-text h1,
.svc-slide.active .svc-hero-text p,
.svc-slide.active .svc-hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.btn-light-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-light-outline:hover {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.svc-hero-img {
    position: relative;
    opacity: 0;
    transform: perspective(1000px) rotateY(10deg) translateX(50px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.svc-slide.active .svc-hero-img {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}

.svc-hero-img img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 24px;
    /* Deep shadow + Teal Glow */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(42, 140, 166, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    /* Floating Animation */
    animation: heroFloat 6s ease-in-out infinite;
}

/* New Keyframes */
@keyframes bgPulseZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes heroFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Slider Arrows */
.svc-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.svc-slider-arrow:hover {
    background: white;
    color: var(--primary);
}

.svc-slider-arrow.prev {
    left: 40px;
}

.svc-slider-arrow.next {
    right: 40px;
}

/* Services Split */
.services-split-section {
    padding: 100px 0;
    background: #f9fafb;
}

.services-split-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: start;
}

.services-intro {
    position: sticky;
    top: 120px;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.2;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Flip Card Toggles */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Workflow */
.workflow-section {
    background: #111827;
    color: white;
    padding: 100px 0;
    scroll-margin-top: 140px;
    /* Offset for sticky header */
}

.workflow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.workflow-left h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.workflow-left h3 {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.text-small {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-style: italic;
}

.check-list {
    list-style: none;
    margin-bottom: 40px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e5e7eb;
}

.check-list i {
    color: var(--primary);
}

.workflow-cta p {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Timeline */
.timeline-wrap {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    left: 14px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #374151;
}

.timeline-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.step-num {
    position: absolute;
    left: -46px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 4px solid #111827;
    /* Matches section bg */
}

.timeline-content h4 {
    color: #111827;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #1f2937;
    /* Very Dark Grey (Almost Black) */
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Support Section */
.support-section {
    background: white;
}

.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-check-list {
    list-style: none;
    margin-top: 30px;
}

.support-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.support-check-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.support-premium-card {
    background: #1f2937;
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.support-premium-card h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.support-premium-card p {
    color: #d1d5db;
    margin-bottom: 30px;
}

.mini-bullets {
    list-style: none;
    border-top: 1px solid #374151;
    padding-top: 25px;
    margin-bottom: 25px;
}

.mini-bullets li {
    margin-bottom: 10px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.card-footer-line {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* Bottom CTA (Centered Redesign) */
.bottom-cta-banner-centered {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

/* Background flourish */
.bottom-cta-banner-centered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 179, 216, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cta-center-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-logo-wrapper {
    margin-bottom: 30px;
}

.cta-logo-animated {
    width: 120px;
    height: auto;
    animation: simpleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.bottom-cta-banner-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-cta-banner-centered p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 40px;
}

@keyframes simpleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    .svc-hero-container,
    .services-split-container,
    .workflow-container,
    .support-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-hero-text {
        text-align: center;
    }

    .svc-hero-text p {
        margin: 0 auto 30px;
    }

    .svc-hero-btns {
        justify-content: center;
    }

    .services-intro {
        position: static;
        text-align: center;
        margin-bottom: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-cta-banner {
        flex-direction: column;
    }

    .cta-img-side,
    .cta-content-side {
        width: 100%;
        height: 300px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .svc-hero-text h1 {
        font-size: 2.2rem;
    }

    /* Ensure background animation persists on mobile */
    .svc-hero::before {
        opacity: 0.6;
        animation: bgPulseZoom 20s infinite alternate ease-in-out !important;
        /* Ensure distinct behavior if needed */
        background-size: cover;
    }
}

/* Modern Sleek Tech Modules */
.sleek-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    padding: 0 10px;
}

@media (min-width: 1450px) {
    .sleek-grid {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.tech-module {
    background: #0f172a;
    /* Deep base matching hero */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle tech border */
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover: Lift & Highlight */
.tech-module:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 140, 166, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    background: #131c33;
    /* Slightly lighter on hover */
}

/* Header Section */
.module-header {
    margin-bottom: 25px;
}

.module-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    /* Brand blue */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-module:hover .module-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(42, 140, 166, 0.3);
}

.tech-module h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Body Section */
.module-body {
    flex-grow: 1;
}

.module-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Specs List */
.module-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-specs li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    /* Tech feel */
}

.module-specs li i {
    color: var(--primary-light);
    font-size: 0.8em;
}

/* Footer Section */
.module-footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.module-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.module-link i {
    font-size: 0.8em;
    color: var(--primary);
}

.module-link:hover {
    color: var(--primary-light);
    gap: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
    .sleek-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .sleek-grid {
        grid-template-columns: 1fr;
    }

    .tech-module {
        padding: 30px;
    }
}

/* Reviews Responsive */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .reviews-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-title {
        font-size: 2.5rem;
    }

    .persistent-stars {
        justify-content: center;
    }

    .reviews-slider-main {
        padding: 40px 30px;
        min-height: 450px;
        /* Taller on mobile for stacking */
    }

    .review-slide {
        left: 30px;
        right: 30px;
        top: 40px;
    }

    .review-slide .quote {
        font-size: 1.2rem;
    }

    .client-meta {
        align-items: center;
        /* Center align on mobile */
    }
}

/* --- About Page Modernization --- */

/* Split Layout for Story */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-visual {
    position: relative;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(42, 140, 166, 0.1), transparent 70%),
        rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform: rotate(-5deg);
}

.v-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    transition: transform 0.3s;
}

.v-card:hover {
    transform: translateY(-5px);
}

.v-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.v-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Process Timeline (Vertical) */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(42, 140, 166, 0.2);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

.timeline-marker {
    position: absolute;
    left: -44px;
    /* Adjust based on padding line */
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    z-index: 2;
    transition: all 0.3s;
}

.timeline-step:hover .timeline-marker {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 5px rgba(42, 140, 166, 0.1);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Stats Row */
.stats-banner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--bg-dark);
    color: white;
    padding: 60px 20px;
    border-radius: 20px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
}

.stat-val {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    margin-bottom: 5px;
}

.stat-lbl {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive About */
@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
        /* Visual first on mobile */
        height: 300px;
    }
}

/* Long Term Support Section */
.highlight-section {
    background: linear-gradient(120deg, #0f172a, #111827, #0f172a);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Optional Mesh Grid Overlay */
.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
}

.support-box {
    position: relative;
    z-index: 1;
}

.support-box h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -1px;
}

.support-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.support-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.support-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 30px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.support-list li:hover {
    background: rgba(42, 140, 166, 0.15);
    border-color: rgba(42, 140, 166, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.support-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.1em;
}

.support-note {
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Premium CTA Section */
.premium-cta-box {
    background: radial-gradient(circle at 10% 20%, #1e293b 0%, #0f172a 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}

.premium-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('assets/circuit-board.svg') center/cover opacity 0.05;
    /* Fallback or subtle patttern */
    pointer-events: none;
    z-index: 0;
}

/* Glowing Border effect */
.premium-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, rgba(42, 140, 166, 0.6), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.premium-cta-box h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Modern Input Group */
.cta-input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
    transition: border-color 0.3s;
}

.cta-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(42, 140, 166, 0.2);
}

.cta-input-group input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.cta-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-input-group button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-input-group button:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .premium-cta-box {
        padding: 50px 20px;
    }

    .premium-cta-box h2 {
        font-size: 2rem;
    }

    .cta-input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
    }

    .cta-input-group input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        width: 100%;
        margin-bottom: 15px;
    }

    .cta-input-group button {
        width: 100%;
        padding: 15px;
    }
}



/* --- Premium Mobile Navigation --- */

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    /* Default hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    /* Increased touch area */
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    /* Above overlay */
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1F2937;
    /* Dark Grey for contrast */
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

/* Open State (Animated X) */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: white;
    /* White on dark overlay */
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: white;
}

/* Pulse/Glow effect on open */
.mobile-menu-btn.open {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Full Screen Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    /* Deep slate, almost opaque for premium feel */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Links in Overlay */
.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav-links a {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 200%;
    transition: all 0.5s;
}

.mobile-nav-links a:hover {
    color: var(--primary-light);
    background-position: 100%;
    letter-spacing: 2px;
}

/* Hide scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .nav-links,
    .nav-cta .btn {
        display: none !important;
        /* Hide desktop nav and CTA */
    }

    .mobile-menu-btn {
        display: flex;
        /* Show Hamburger */
        margin-left: auto;
        /* Push to right */
    }
}


/* --- Fix for Projects/Spotlight Overflow on Mobile --- */
@media (max-width: 1024px) {
    .spotlight-container {
        width: 100%;
        max-width: 100vw;
        padding: 60px 20px;
        overflow-x: hidden;
    }

    .spotlight-layout {
        display: flex;
        flex-direction: column-reverse;
        /* Put image on top or bottom? User asked for "proper mobile version". Usually Content first then Image, or Image then Content. Given current flow, column (Image below) or column-reverse (Image above).
        Let's stick to standard flow: Content top, Image bottom. Default flex-direction: column is fine.
        Wait, currently its grid columns: 0.8fr 1.2fr. 
        Change to flex column. */
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
        margin-bottom: 40px;
    }

    .spotlight-context {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        padding-top: 0;
    }

    .spotlight-context h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .spotlight-showcase {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }

    /* Ensure specific slider elements don't overflow */
    .project-thumbs {
        width: 100%;
        overflow-x: auto;
        /* Allow scrolling if thumbs are too wide */
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .featured-card {
        width: 100%;
    }
}


/* --- Mobile Font Size Adjustments --- */
@media (max-width: 768px) {

    h1,
    .hero-title,
    .hero-premium h1 {
        font-size: 2.5rem !important;
        /* Cap hero titles */
    }

    h2,
    .section-title {
        font-size: 2rem !important;
        /* Cap section titles */
    }

    .hero-premium .hero-h1 {
        font-size: 2.2rem;
        /* Specific fix for premium hero */
    }
}

/* --- Mobile Layout Fixes (Verification Batch) --- */
/* Shared Grid for Services */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Header Logo Constraint on Mobile */
@media (max-width: 768px) {
    .logo-container {
        display: block;
        width: 170px;
        height: 55px;
        background-image: url('assets/logo_mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        background-color: white;
        border-radius: 6px;
        padding: 5px;
    }

    .logo-img {
        display: none !important;
    }

    /* Hero Buttons Stacking */
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    /* Ensure no weird margin stacking */
    .hero-btns .btn+.btn {
        margin-top: 0;
    }
}

/* Sticky WhatsApp Gadget */
.sticky-whatsapp-gadget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid white;
}

.sticky-whatsapp-gadget:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: #20BA5C;
    color: white;
}

@media (max-width: 768px) {
    .sticky-whatsapp-gadget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}


/* --- Corrected Impact Section Mobile Styles (Appended for Specificity) --- */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        /* Force 2x2 */
        gap: 10px;
        margin-top: 30px;
    }

    .stat-card {
        padding: 15px 10px;
        /* Very compact */
    }

    .stat-number {
        font-size: 2rem !important;
        /* Force smaller size */
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* --- Cookie Consent Banner --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    display: none;
    /* Toggled by JS class .show */
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    /* Toggled by JS class .show */
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-direction: column;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

#cookie-consent-banner.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.cookie-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    flex: 1;
    transition: background 0.3s;
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-decline {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted);
    flex: 1;
    transition: all 0.3s;
}

.btn-cookie-decline:hover {
    background: #f3f4f6;
    color: var(--text-main);
    border-color: #ccc;
}

/* --- Trusted Partners Section --- */
.trusted-section {
    background-color: #f8fafc;
    padding: 80px 0 100px;
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.trusted-section .section-title {
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.trusted-item h3 {
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    z-index: 2;
    line-height: 1.5;
}

.trusted-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-top: 15px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.trusted-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.trusted-item:hover h3 {
    color: var(--primary-dark);
}

.trusted-item:hover .trusted-line {
    transform: scaleX(1);
}

@media (max-width: 600px) {
    .trusted-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Clinic SaaS Showcase (Added) */
.clinic-showcase-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.clinic-card {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    position: relative;
    z-index: 10;
}

/* Premium Highlight Modifier */
.clinic-card.highlight-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fdff 100%);
    border: 1px solid rgba(42, 140, 166, 0.15);
    box-shadow: 0 20px 60px -15px rgba(42, 140, 166, 0.1);
}

.clinic-card.highlight-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(42, 140, 166, 0.4), transparent 40%);
    border-radius: 25px;
    opacity: 0.5;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


.clinic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(42, 140, 166, 0.15), 0 0 0 1px rgba(42, 140, 166, 0.1);
}

.clinic-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    gap: 25px;
}

.clinic-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.clinic-section-header .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    background: rgba(42, 140, 166, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.clinic-section-header h2 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin: 0;
}

.clinic-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--bg-gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(42, 140, 166, 0.3);
    z-index: 20;
}


.clinic-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.clinic-statement {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
}

.clinic-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px 30px;
    list-style: none;
    margin: 10px 0;
}

.clinic-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease-out;
}

/* When parent card is active/visible, we trigger these in JS or assume parent fade in covers it? 
   No, user asked for staggered bullets. 
   I will add a specific class '.reveal-active' to the card via JS, then trigger these.
*/
.clinic-card.is-visible .clinic-bullets li {
    opacity: 1;
    transform: translateY(0);
}

.clinic-card.is-visible .clinic-bullets li:nth-child(1) {
    transition-delay: 0.1s;
}

.clinic-card.is-visible .clinic-bullets li:nth-child(2) {
    transition-delay: 0.2s;
}

.clinic-card.is-visible .clinic-bullets li:nth-child(3) {
    transition-delay: 0.3s;
}

.clinic-card.is-visible .clinic-bullets li:nth-child(4) {
    transition-delay: 0.4s;
}


.clinic-bullets li i {
    color: var(--primary);
    font-size: 1rem;
    background: rgba(42, 140, 166, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.clinic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.clinic-tags .tag {
    background: #f3f4f6;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.clinic-card:hover .clinic-tags .tag {
    background: rgba(42, 140, 166, 0.1);
    color: var(--primary-dark);
}

.clinic-actions {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-outline {
    background: white;
    color: var(--text-main);
    border: 2px solid #e5e7eb;
    min-width: 180px;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: transparent;
    color: var(--text-main);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .clinic-card {
        padding: 30px 24px;
    }

    .clinic-subtitle {
        font-size: 1.4rem;
    }

    .clinic-bullets {
        grid-template-columns: 1fr;
    }

    .clinic-actions {
        flex-direction: column;
        width: 100%;
    }

    .clinic-actions .btn {
        width: 100%;
    }
}