:root {
    --bg-color: #0B0D10;
    --bg-secondary: #0e1115;
    --primary-color: #80D4F7;
    /* New Cyan accent */
    --text-color: #ffffff;
    --text-muted: #888888;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Sora', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    /* text-transform: uppercase; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-cyan {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 4px;
}

.btn-cyan:hover {
    background-color: #2bb0da;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background-color: #fff;
    color: #000;
    font-size: 16px;
    border-radius: 10px;
}

.apply-now-arrow {
    background: black;
    color: white;
    padding: 7px;
    height: 27px;
    border-radius: 50%;
    width: 27px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Distributes the 3 main sections */
    padding: 20px 60px;
    /* Generous padding like the image */
    background: transparent;
    /* Or rgba(0,0,0,0.8) if you want a dark background */
    transition: all 0.3s ease;
}

/* --- Layout Logic --- */
/* Make Left and Right sections equal width to ensure Logo remains perfectly centered */
.nav-links-left,
.nav-links-right {
    flex: 1;
    display: flex;
    align-items: center;
}

/* --- Left Section --- */
.nav-links-left {
    justify-content: flex-end;
    /* Pushes text links towards the center logo */
    padding-right: 60px;
    /* Space between links and logo */
    gap: 40px;
    /* Space between individual links */
}

/* --- Center Section --- */
.nav-brand-center {
    flex: 0 0 auto;
    /* Don't grow or shrink */
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    height: 40px;
    /* Adjust based on your actual SVG file */
    width: auto;
    display: block;
}

/* --- Right Section --- */
.nav-links-right {
    justify-content: space-between;
    /* Separates the Text Links from the Button */
    padding-left: 60px;
    /* Space between logo and text links */
}

/* The wrapper for "Team, Partner, Footprint" */
.nav-links-group {
    display: flex;
    gap: 40px;
}

/* --- Typography --- */
.nav-links-left a,
.nav-links-group a {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    text-decoration: none;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-links-left a:hover,
.nav-links-group a:hover {
    color: #fff;
}

/* --- The Cyan Button --- */
.btn-cyan {
    background-color: #7dd3fc;
    /* The specific blue/cyan from image */
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
    /* margin-left: auto is handled by the parent justify-content: space-between */
}

.btn-cyan:hover {
    background-color: #5ac4f5;
    transform: translateY(-2px);
}

.btn-cyan i {
    transform: rotate(-45deg);
    /* Angles the arrow up-right */
    /* font-size: 12px; */
    transition: transform 0.3s;
}

.btn-cyan:hover i {
    transform: rotate(0deg);
    /* Straightens on hover */
}

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 30px;
    }

    .nav-links-left {
        padding-right: 30px;
        gap: 20px;
    }

    .nav-links-right {
        padding-left: 30px;
    }

    .nav-links-group {
        gap: 20px;
    }
}

@media (max-width: 991px) {

    .nav-links-left,
    .nav-links-right {
        display: none;
        /* Hide desktop menu */
    }

    .mobile-toggle {
        display: block;
    }

    .nav-brand-center {
        margin: 0;
        /* Align left or center as preferred on mobile */
    }

    .navbar {
        justify-content: space-between;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content */
    padding-left: 60px;
    /* Left align content area */
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%); */
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-left: 0;
    text-align: left;
    margin-top: -50px;
}

.hero h1 {
    font-size: 82px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: none;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.btn-glass {
    background: rgba(30, 35, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Footer Elements */
.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    /* Space out items */
    align-items: flex-end;
    padding: 0 60px;
}

.hero-footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.social-links-hero {
    display: flex;
    gap: 25px;
}

.social-links-hero a {
    color: #fff;
    font-size: 18px;
    opacity: 0.8;
    transition: 0.3s;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.social-links-hero a:hover {
    opacity: 1;
    background-color: #fff;
    color: #000 !important;
}

.slider-dots-hero {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 10px;
    /* Circle */
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    opacity: 0.9;
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* --- About Section --- */
.about-section {
    padding: 100px 50px;
    /* max-width: var(--container-width); */
    margin: 35px 23px;
    text-align: center;
    background-color: #FFFFFF05;

    border-radius: 50px;
}

.section-badge {
    color: white;

    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7px;

    letter-spacing: 2px;
}

.about-us-dot {
    color: var(--primary-color);
    font-size: 12px;

    filter: drop-shadow(0 0 5px #009A4D);
}

.about-section h2 {
    font-size: 40px;
    text-transform: none;
    margin-bottom: 30px;
}

.section-desc {
    width: fit-content;
    /* max-width: 800px; */
    margin: 0 0 80px;
    font-size: 33.45px;
    color: #fff;
    font-weight: 300;
    line-height: normal;
}

.light-section-desc {
    color: #A2A2A2;
}

.values-grid {
    display: grid;
    /* allow narrower columns on small screens to avoid overflow */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 0 auto 100px;
    max-width: var(--container-width);
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 60px;
        padding: 0 16px;
    }

    .about-section {
        padding: 60px 16px;
        margin: 20px 12px;
        border-radius: 24px;
    }

    .value-card {
        padding: 24px;
    }
}

/* About Card Updates */
.value-card {
    background: #FFFFFF0F;
    /* Dark background */
    padding: 40px;
    text-align: left;
    border-radius: 12px;
    border: none;
    /* Removed border */
    position: relative;
    transition: 0.3s;
    /* Optional: Add slight inner glow or shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1200px) {
    .value-middle-card {
        margin-bottom: -41px;
        margin-top: 41px;
    }
}

@media (min-width: 1024px) {
    .section-desc {
        margin: 0 70px 80px;
        font-size: 40.45px;
    }
}

.value-card:hover {
    transform: translateY(-5px);
    background: #161616;
}

.card-icon-arrow {
    margin-bottom: 20px;
}

.card-icon-arrow i {
    font-size: 25.34px;
    color: #fff;
    transform: rotate(45deg);
    /* Pointing down-right */
}

.value-card h3 {
    font-size: 25.34px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #fff;
}

.value-card p {
    font-size: 23.93px;
    color: #938F8F;
    line-height: 1.6;
}

/* --- Stats Section --- */
.stats-section {
    position: relative;
    padding: 200px 0;
    background: radial-gradient(ellipse at center, rgb(76 117 135 / 38%) 0%, rgb(5 6 8 / 0%) 50%);
    overflow: hidden;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
}

/* 2. The Shared Styles for Pseudo-elements */
.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    /* How "narrow" you want the center to act. Increase for more narrowness */
    z-index: 1;
    /* Above lines, below text */
    pointer-events: none;
    /* Allows clicking through them */
}

/* 3. Left Fade (Dark to Transparent) */
.stats-section::before {
    left: 0;
    /* Replace #050608 with your exact body background color */
    background: linear-gradient(to right, #101215 0%, transparent 100%);
    z-index: 999;
}

/* 4. Right Fade (Transparent to Dark) */
.stats-section::after {
    right: 0;
    /* Replace #050608 with your exact body background color */
    background: linear-gradient(to left, #101215 0%, transparent 100%);

}

.stats-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-line {
    fill: none;
    stroke: rgba(51, 197, 244, 0.2);
    stroke-width: 1;
}


.meteor-grp {
    offset-rotate: auto;
    /* Ensure the meteor aligns to the path */
    animation: meteorTravel linear infinite;
    opacity: 0;
    /* Start invisible */
}

/* Line 1: Top Outer */
.m-line-1 {
    offset-path: path('M0,40 C360,130 1080,130 1440,40');
    animation-duration: 7s;
}

/* Line 2: Top Inner */
.m-line-2 {
    offset-path: path('M-190,70 C360,140 1080,140 1440,70');
    animation-duration: 9s;
    animation-delay: 2s;
}

/* Line 3: Center */
.m-line-3 {
    offset-path: path('M0,150 C360,150 1080,150 1440,150');
    animation-duration: 6s;
    animation-delay: 1s;
}

/* Line 4: Bottom Inner */
.m-line-4 {
    offset-path: path('M-190,230 C360,160 1080,160 1440,230');
    animation-duration: 8s;
    animation-delay: 3s;
}

/* Line 5: Bottom Outer */
.m-line-5 {
    offset-path: path('M-190,260 C360,170 1080,170 1440,260');
    animation-duration: 10s;
    animation-delay: 0.5s;
}

@keyframes meteorTravel {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}






/* Note: The exact dashoffset values depend on path length. 
   For a robust "moving point" effect, offset-path is better but support varies.
   Stroke-dasharray trick is standard for simple lines. */

.stats-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.infinity-symbol {
    font-size: 4rem;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    line-height: 1.4;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 50px;
    background-color: var(--bg-color);
    text-align: center;
}

.services-section h2 {
    font-size: 40px;
    font-weight: 800;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 40px;
}

.line {
    content: "";
    display: block;
    width: 100%;
    height: 2.25px;
    background-color: #80D4F7;
    /* margin-top: 20px; */
    max-width: 45px;
    margin-bottom: 80px;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for large screens */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Card Design */
.service-item {
    background-color: #12151a;
    /* Dark gray similar to image */
    border-radius: 28px;
    padding: 60px 20px 40px;
    /* Top padding accomodates diamond */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    margin-top: 40px;
    /* Space for the floating diamond */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background-color: #161a20;
}

/* Diamond Floating Element */
.diamond {
    width: 60px;
    height: 60px;
    background: #58CCED;
    /* Cyan color */
    transform: rotate(45deg);
    position: absolute;
    top: -30px;
    /* Float on top edge */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    /* Slightly rounded diamond corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 5px solid #0b0d10;
}

.diamond i {
    transform: rotate(-45deg);
    font-size: 18px;
    color: #000;
    /* Black star */
}

.service-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    max-width: 90%;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns tablet */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* 1 column mobile */
    }
}

/* --- Projects Section --- */
.projects-section {
    padding: 100px 0;
    text-align: center;
    background: #101215;
}

.projects-section h2 {
    /* margin-bottom: 40px; */
}

.project-filters {
    display: inline-flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    background: #111418;
    padding: 5px;
    border-radius: 12px;
    flex-wrap: wrap;
    margin-left: 18px;
    margin-right: 18px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #25333b;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.filter-btn:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}


.projects-slider-container {
    width: 100%;
    /* overflow: hidden; */
    /* Allow dots to be seen if outside, but usually inside */
    padding-bottom: 50px;
}

.projects-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 50px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* Hide scrollbar */
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 400px;
    height: 500px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #1a1e24;
    /* Fallback */
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    opacity: 0.9;
    transition: 0.3s;
}

/* .project-card:hover .project-overlay {
    opacity: 1;
} */

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    text-align: left;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.project-info h4 {
    font-size: 14px;
    color: #ccc;
    /* Lighter than primary for subtitle */
    margin-bottom: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.project-info p {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .project-card {
        min-width: 300px;
        height: 400px;
    }
}

/* --- Partners Section --- */
.partners-section {
    padding: 80px 50px;
    text-align: center;
}

.partners-section h2 {
    font-size: 40px;
    /* margin-bottom: 50px; */
    letter-spacing: 1px;
    color: #fff;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 3vw, 40px);
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
    /* opacity: 0.6; */
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #192025;
    border-radius: 21.12px;
}

.logo-item img {
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: scale-down;
    transition: 0.3s ease;
}


.logo-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);

}



@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 769px) {
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    }
}


/* --- Team Section Global --- */
.team-section {
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
    /* Assuming a dark body background based on your text colors, 
       if not, ensure background-color is set here */
}

/* Layout Wrapper */
.team-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    /* Space between image and text */
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

/* --- Left Side: Visuals --- */
.team-visual {
    position: relative;
    flex: 0 0 400px;
    /* Fixed width for image column */
}

.team-img-frame {
    position: relative;
    width: 100%;
    height: 500px;
    /* Taller, more executive look */
    z-index: 2;
}

/* The Photo */
.team-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    /* Kept original filter */
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Adds depth */
}

/* The Architectural Border (Offset Box) */
.team-img-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Subtle border color */
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Hover effect for interaction */
.team-highlight:hover .team-img-frame::before {
    transform: translate(-10px, -10px);
}

/* --- Right Side: Content --- */
.team-content {
    flex: 1;
    max-width: 500px;
    z-index: 3;
    /* Sit above background text */
}

.team-role {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-name {
    font-size: 48px;
    /* Large, commanding font size */
    color: #fff;
    margin: 0 0 30px 0;
    font-weight: 700;
    line-height: 1.1;
}

.team-bio p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    /* Better readability */
    margin: 0;
    border-left: 2px solid #333;
    /* Subtle dividing line */
    padding-left: 20px;
}

/* --- Hover Enhancements --- */

/* Slight logo lift */
.nav-logo {
    transition: transform 0.25s ease, filter 0.25s ease;
}

.nav-logo:hover {
    transform: scale(1.06);
    filter: brightness(1.08);
}

/* Subtle lift + shadow for all buttons */
.btn {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* Project card image zoom + info reveal */
.project-bg {
    transition: transform 0.5s ease;
    will-change: transform;
}

.project-card:hover .project-bg {
    transform: scale(1.04);
}

.project-overlay {
    transition: opacity 0.35s ease, background 0.35s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(12px);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.95;
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

/* Team image: remove grayscale and scale on hover */
.team-img {
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Floating diamond pop on service hover */
.diamond {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover .diamond {
    transform: rotate(45deg) translateY(-6px) scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

/* Social icons lift */
.social-links-hero a {
    transition: transform 0.18s ease, background-color 0.25s ease, color 0.25s ease;
}

.social-links-hero a:hover {
    transform: translateY(-4px);
}

/* Slider dots hover */
.dot,
.hero-dot {
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.dot:hover {
    transform: scale(1.3);
    background: #fff;
}


/* --- Background Decoration --- */
.team-bg-text {
    position: absolute;
    right: -50px;
    /* Offset slightly off screen */
    top: 50%;
    transform: translateY(-50%);
    font-size: 15vw;
    /* Responsive huge size */
    line-height: 0.8;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    /* Very subtle */
    z-index: 1;
    pointer-events: none;
    text-align: right;
    white-space: nowrap;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 991px) {
    .team-highlight {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }

    .team-visual {
        flex: auto;
        width: 100%;
        max-width: 350px;
    }

    .team-img-frame {
        height: 400px;
    }

    .team-name {
        font-size: 36px;
    }

    .team-bg-text {
        font-size: 20vw;
        right: 0;
    }
}

/* --- Footer Global --- */
.footer {
    background-color: #050608;
    /* Very dark background */
    color: #fff;
    font-family: sans-serif;
    position: relative;
    overflow: hidden;
}

/* --- Top Section: CTA --- */
.footer-cta-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background: #050608;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Background Watermark Text */
.cta-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    /* Responsive huge size */
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    /* Outline effect */
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Cyan Button */
.btn-cyan {
    height: 47px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #7dd3fc;
    color: #000;
    padding: 8px 9px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
    width: fit-content;
    justify-content: space-around;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    background-color: #5ac4f5;
}

.btn-cyan i {
    transform: rotate(-45deg);
    /* Angled arrow */
    transition: transform 0.3s;
}

.btn-cyan:hover i {
    transform: rotate(0deg);
}

/* --- Bottom Section: Info --- */
.footer-main {
    background-color: #0b0c10;
    /* Slightly lighter than top for contrast (optional) or keep same */
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

/* Logo Column */
.brand-col {
    flex: 0 0 250px;
    /* Fixed width for logo area */
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Links Global */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 2.2;
    /* Spacing between links */
}

.footer-col a:hover {
    color: #7dd3fc;
    /* Hover cyan */
}

/* Specific Layout for "Quick Links" split columns */
.links-group {
    display: flex;
    gap: 40px;
}

/* Contact Icons */
.contact-list i {
    margin-right: 10px;
    font-size: 12px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 18px;
    color: #fff;
}

.social-icons a:hover {
    color: #7dd3fc;
    transform: translateY(-3px);
}

/* Copyright Bar */
.footer-bottom-bar {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #666;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .cta-watermark {
        font-size: 25vw;
        /* Even bigger on mobile */
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .links-group {
        gap: 50px;
        /* More space between link columns on mobile */
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050608;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-menu-links a {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.mobile-menu-links a:hover {
    color: var(--primary-color);
}

.footer-links-col a {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 30px;
    display: block;
    text-align: center;
    font-size: 14px;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #444;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1200px) {
    .navbar {
        padding: 20px 40px;
    }

    .nav-links-left,
    .nav-links-right {
        gap: 20px;
    }

    .brand-text {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 60px;
    }

    .navbar {
        padding: 20px 30px;
    }

    .hero {
        padding-left: 40px;
    }

    .hero-footer {
        padding: 0 40px;
    }

    .nav-links-left a,
    .nav-links-right a:not(.btn) {
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        background: rgba(5, 6, 8, 0.95);
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .hero-footer {
        padding: 0 20px 30px;
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }

    .hero-footer-left {
        align-items: center;
    }

    .social-links-hero {
        gap: 20px;
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll on mobile to save space or keep if needed */
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .team-highlight {
        flex-direction: column;
    }

    .team-bg-text {
        font-size: 5rem;
        bottom: 10px;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}