@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #9FD14A;
    --primary-gradient: linear-gradient(135deg, #9FD14A 0%, #8AC03D 100%);

    --secondary-color: #232323;
    --text-primary: #232323;
    --text-secondary: #666666;
    --bg-light: #F8F8F8;
    --bg-white: #FFFFFF;
    --accent-dark: #2D2D2D;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 127, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 127, 98, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Top Bar */
.top-bar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    font-size: 13px;
    color: #fff;
}

header.scrolled .top-bar {
    display: none;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 25px;
}

.top-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.top-social a {
    margin-left: 20px;
    color: #fff;
    font-size: 14px;
}

.top-social a:hover {
    color: var(--primary-color);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


.nav-wrapper {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.5px;
}

header.scrolled .logo-text h1 {
    color: var(--text-primary);
}

.logo-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
    font-weight: 500;
    margin-top: 4px;
}

/* Centered Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

header.scrolled .nav-links a {
    color: var(--text-primary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color) !important;
}

/* Header Utilities (Right Side) */
.header-utils {
    display: flex;
    align-items: center;
    gap: 25px;
}

.util-item {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}

header.scrolled .util-item {
    color: var(--text-primary);
}

.util-item:hover {
    color: var(--primary-color);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.cart-badge {
    background: var(--text-primary);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -10px;
    left: -12px;
}

.header-cta .btn-apply {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header.scrolled .btn-apply {
    color: var(--text-primary);
    border-color: var(--primary-color);
    font-weight: 800;
}

.btn-apply:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

/* Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    /* Offset fixed header */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

/* Re-use hero styles for slider content */
.hero-content {
    max-width: 1000px;
    position: relative;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}


.hero-sub {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    display: block;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s 0.2s;
    letter-spacing: 0.5px;
}

.slide.active .hero-sub {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: 90px;
    margin-bottom: 50px;
    line-height: 1.05;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s 0.4s;
    position: relative;
    font-weight: 800;
}

.hero-content h1 span {
    font-weight: 300;
    display: block;
}


.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: #fff;
}





.slide.active h1 {
    transform: translateY(0);
    opacity: 1;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    max-width: 700px;
    transform: translateY(30px);
    transition: all 0.8s 0.6s;
    line-height: 1.6;
}



.slide.active p {
    transform: translateY(0);
    opacity: 0.9;
}

.hero-btns {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s 0.8s;
}

.slide.active .hero-btns {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}


/* Hero Features Bar */
.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 20;
    color: #fff;
}

.hero-features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 35px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 24px;
    color: #fff;
}

.feature-item span {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #fff !important;
    }

    nav {
        justify-content: flex-end;
    }

    .mobile-toggle {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
        color: #fff;
    }

    header.scrolled .mobile-toggle {
        color: var(--text-primary);
    }

    .header-cta,
    .header-utils .cart-item,
    .header-utils .search-icon {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-features {
        position: static;
        background: var(--secondary-color);
    }

    .hero-features-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

.mobile-toggle {
    display: none;
}

/* About Section Refinement */
.about-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-top: 30px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 15px solid var(--primary-color);
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 0;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.exp-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #232323;
    color: #fff;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.exp-number {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-subtitle {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.about-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-title span {
    font-weight: 300;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 30px;
}

.about-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.about-info-text {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
    line-height: 1.8;
}

.how-we-work {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 15px 30px rgba(255, 127, 98, 0.3);
    transition: var(--transition-smooth);
}

.how-we-work:hover .play-btn {
    transform: scale(1.1);
}

.how-we-work span {
    font-weight: 700;
    font-size: 16px;
}

/* Footer Section */
.footer {
    background: #232323;
    color: #fff;
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo-area img {
    height: 60px;
    margin-bottom: 40px;
}

.footer-logo-area p {
    color: #999;
    font-size: 14px;
    margin-top: 30px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #999;
    font-size: 15px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 45px;
    height: 45px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-box:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: #fff;
    background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&q=80&w=2068');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Soft overlay for the world map */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testi-subtitle {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.testi-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    margin-bottom: 20px;
}

.testi-title span {
    font-weight: 300;
}

.testi-title-line {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.testi-carousel-container {
    position: relative;
    padding: 0 20px;
}

.testi-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testi-carousel::-webkit-scrollbar {
    display: none;
}

.testi-card {
    background: transparent;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-width: calc(50% - 20px);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.testi-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.testi-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: auto;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(159, 209, 74, 0.4);
}

.testi-nav:hover {
    background: #232323;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.testi-client {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-client-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.testi-client-info span {
    font-size: 14px;
    color: #888;
}

.testi-stars {
    color: #ffb400;
    font-size: 14px;
}

.testi-quote-area {
    display: flex;
    gap: 20px;
}

.testi-quote-area i.fa-quote-left {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.8;
}

.testi-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.btn-view-all-testi {
    background: var(--primary-gradient);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
    display: inline-block;
}

/* Who We Are Section */
.who-section {
    position: relative;
    padding: 0;
}

.who-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&q=80&w=2074');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 150px;
    text-align: center;
    color: #fff;
}

.who-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.who-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.who-title-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -100px;
}

.who-card {
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
}

.who-card-white:hover {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.who-card-primary:hover {
    background: rgba(159, 209, 74, 0.8);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.who-card-dark:hover {
    background: rgba(35, 35, 35, 0.8);
    backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.who-card i {
    font-size: 60px;
    margin-bottom: 30px;
    display: block;
}

.who-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.who-card p {
    font-size: 18px;
    line-height: 1.6;
}

.who-card-white {
    background: #fff;
    color: #232323;
}

.who-card-white i {
    color: var(--primary-color);
}

.who-card-primary {
    background: var(--primary-color);
    color: #fff;
}

.who-card-primary i {
    color: #fff;
}

.who-card-dark {
    background: #232323;
    color: #fff;
}

.who-card-dark i {
    color: var(--primary-color);
}

/* Projects Section */
.projects-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.projects-subtitle {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.projects-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    margin-bottom: 20px;
}

.projects-title span {
    font-weight: 300;
}

.projects-title-line {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.project-hover-btn {
    position: absolute;
    bottom: 0;
    right: 20px;
    transform: translateY(50%) scale(0);
    width: 80px;
    height: 60px;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-hover-btn {
    opacity: 1;
    transform: translateY(50%) scale(1);
}

.project-hover-btn:hover {
    background: #232323;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-info {
    padding: 30px;
    flex-grow: 1;
    position: relative;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 800;
    transition: var(--transition-smooth);
}

.project-card:hover .project-info h3 {
    color: var(--primary-color);
}

.project-info p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.btn-view-projects {
    background: var(--primary-gradient);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
    display: inline-block;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: #fff;
    text-align: center;
}

.process-subtitle {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
}

.process-title span {
    font-weight: 300;
}

.process-title-line {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
}

.process-item {
    position: relative;
    z-index: 1;
}

.process-icon-wrapper {
    width: 170px;
    height: 170px;
    border: 1px dashed #ccc;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.process-icon-inner {
    width: 130px;
    height: 130px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.process-item:hover .process-icon-inner {
    background-color: var(--primary-color);
}

.process-item:hover .process-icon-inner i {
    color: #fff;
}

.process-icon-inner i {
    font-size: 40px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #232323;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.process-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.process-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* Connecting arrows logic */
.process-grid::before {
    display: none;
}

.process-arrow {
    position: absolute;
    top: 60px;
    width: 200px;
    z-index: 0;
    pointer-events: none;
    transform: translateX(-50%);
}

.process-arrow-1 {
    left: 33.33%;
}

.process-arrow-2 {
    left: 66.66%;
}

@media (max-width: 992px) {
    .process-arrow {
        display: none;
    }
}

/* Calculator Section */
.calc-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
}

.calc-image {
    background-image: url('../img/home1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.calc-testimonial {
    background: #232323;
    color: #fff;
    padding: 40px;
    width: 80%;
    margin-bottom: 50px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.calc-testimonial span {
    color: var(--primary-color);
}

.calc-form-container {
    background: var(--primary-gradient);
    color: #fff;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.calc-title {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 800;
}

.calc-group {
    margin-bottom: 40px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid #232323;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calc-results {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.result-item label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.result-item .value {
    font-size: 32px;
    font-weight: 800;
}

.btn-calc-apply {
    background: #fff;
    color: #232323;
    padding: 20px 40px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    transition: var(--transition-smooth);
}

.btn-calc-apply:hover {
    background: #232323;
    color: #fff;
    transform: translateY(-5px);
}

/* Services Section Refinement */
.services-section {
    padding: 120px 0;
    background-color: #fff;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.services-title-area {
    flex: 1;
}

.services-subtitle {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.services-title span {
    font-weight: 300;
}

.services-header .btn-view-all {
    background: var(--primary-gradient);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 0;
    display: inline-block;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-card-new {
    padding: 40px;
    border-right: 1px solid #eee;
    transition: var(--transition-smooth);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.service-card-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-new:hover::after {
    width: 100%;
}

.service-card-new:last-child {
    border-right: none;
}

.service-card-new:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.service-icon-new {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-card-new h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.service-card-new:hover h3 {
    color: var(--primary-color);
}

.service-card-new p {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-link-new {
    color: var(--primary-color);
    font-size: 18px;
    display: inline-block;
}

.service-link-new:hover {
    transform: translateX(5px);
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 992px) {

    .about-wrapper,
    .calc-section,
    .testi-grid,
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-grid,
    .projects-grid,
    .who-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-cards {
        margin-top: -50px;
    }

    .about-image-wrapper img {
        height: auto;
    }

    .calc-form-container {
        padding: 40px;
    }

    .services-header,
    .projects-header,
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .exp-box {
        bottom: -15px;
        right: -15px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .process-grid,
    .projects-grid,
    .who-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        min-width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .about-section,
    .services-section,
    .projects-section,
    .process-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .about-title,
    .services-title,
    .calc-title,
    .process-title,
    .projects-title,
    .who-title,
    .testi-title {
        font-size: 32px;
    }

    .who-header {
        padding: 60px 0 100px;
    }

    .who-cards {
        margin-top: -30px;
    }

    .feature-item {
        padding: 20px 10px;
        justify-content: flex-start;
    }

    .calc-image {
        min-height: 300px;
    }

    .calc-testimonial {
        width: 100%;
        margin-bottom: 0;
        padding: 20px;
        font-size: 16px;
    }

    .testi-card {
        padding: 20px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .calc-results {
        flex-direction: column;
        gap: 15px;
    }

    .slider-dots {
        bottom: 30px;
    }

    .btn-calc-apply {
        width: 100%;
    }
}

/* Global utility classes for inline grid replacements */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-grid-2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.content-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.content-grid-about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.content-grid-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .top-bar {
        display: none !important;
    }

    .form-grid,
    .content-grid-2,
    .content-grid-2-inner,
    .content-grid-layout,
    .content-grid-about,
    .content-grid-about-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&q=80&w=2074');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: #fff;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-hero .hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.contact-hero .breadcrumbs {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.contact-hero .breadcrumbs a {
    color: #fff;
    transition: var(--transition-smooth);
}

.contact-hero .breadcrumbs a:hover {
    color: var(--primary-color);
}

.contact-hero .breadcrumbs i {
    font-size: 10px;
    margin: 0 10px;
    color: var(--primary-color);
}

.contact-section-new {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.contact-info-col,
.contact-form-col {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
}

.section-subtitle {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-heading span {
    font-weight: 300;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 30px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateX(10px);
}

.contact-info-card .card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(159, 209, 74, 0.2);
    flex-shrink: 0;
}

.contact-info-card .card-text-area h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-info-card .card-text-area p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.new-contact-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-new.full-width {
    margin-bottom: 35px;
}

.form-group-new label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group-new input,
.form-group-new textarea {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(159, 209, 74, 0.1);
}

.btn-submit-gradient {
    padding: 18px 45px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(159, 209, 74, 0.3);
}

.btn-submit-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(159, 209, 74, 0.4);
}

.alert {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-success i {
    font-size: 22px;
    color: #2e7d32;
}

.alert-danger {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.alert-danger i {
    font-size: 22px;
    color: #c62828;
}

.alert h4 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 16px;
}

.alert p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.map-section {
    line-height: 0;
}

@media (max-width: 992px) {
    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 30px 20px;
    }
}

/* About Page Premium Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: #fff;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.about-hero .hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.about-hero .breadcrumbs {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.about-hero .breadcrumbs a {
    color: #fff;
    transition: var(--transition-smooth);
}

.about-hero .breadcrumbs a:hover {
    color: var(--primary-color);
}

.about-hero .breadcrumbs i {
    font-size: 10px;
    margin: 0 10px;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: stretch;
}

.benefits-left {
    background: #1b1e24;
    color: #fff;
    padding: 60px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-left .section-subtitle {
    color: var(--primary-color);
}

.benefits-left .section-heading {
    color: #fff;
}

.benefits-left .section-heading span {
    color: #fff;
    font-weight: 300;
}

.benefits-desc {
    font-size: 16px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 40px;
}

.progress-bars-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-title-area {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.benefits-right {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 450px;
}

.benefits-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Who We Are (Highlights) */
.who-we-are-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.highlight-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    text-align: left;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(159, 209, 74, 0.1);
    color: var(--primary-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 10px 20px rgba(159, 209, 74, 0.3);
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.highlight-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.btn-read-more-gradient {
    padding: 16px 40px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    /* border-radius: 30px; */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(159, 209, 74, 0.3);
    display: inline-block;
}

.btn-read-more-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(159, 209, 74, 0.4);
}

/* Statistics Banner */
.stats-banner {
    background: var(--primary-gradient);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 36px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Experts Section */
.experts-section {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.expert-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.expert-image-box {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.expert-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.expert-card:hover .expert-image-box img {
    transform: scale(1.05);
}

.expert-social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(27, 30, 36, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.expert-card:hover .expert-social-overlay {
    bottom: 0;
}

.expert-social-overlay a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.expert-social-overlay a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.expert-info {
    padding: 30px 20px;
    text-align: center;
}

.expert-info h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.expert-info span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-left {
        padding: 40px;
    }

    .benefits-right {
        min-height: 350px;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Premium Styles */
.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=2070');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: #fff;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.services-hero .hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.services-hero .breadcrumbs {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.services-hero .breadcrumbs a {
    color: #fff;
    transition: var(--transition-smooth);
}

.services-hero .breadcrumbs a:hover {
    color: var(--primary-color);
}

.services-hero .breadcrumbs i {
    font-size: 10px;
    margin: 0 10px;
    color: var(--primary-color);
}

/* Core Services Section */
.services-main-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.services-grid-checkerboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-checker-card {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    height: 100%;
}

.service-checker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-checker-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-checker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-checker-card:hover .service-checker-image img {
    transform: scale(1.05);
}

.service-checker-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.service-checker-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(159, 209, 74, 0.3);
}

.service-checker-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.service-checker-card:hover .service-checker-content h3 {
    color: var(--primary-color);
}

.service-checker-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-checker-btn {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.service-checker-btn i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.service-checker-card:hover .service-checker-btn {
    color: var(--primary-color);
}

.service-checker-card:hover .service-checker-btn i {
    transform: translateX(5px);
}

/* Staggered Row ordering: Image on bottom for Row 2 */
.img-bottom {
    flex-direction: column-reverse;
}

@media (max-width: 992px) {
    .services-grid-checkerboard {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Disable staggered checkerboard columns order on tablets */
    .img-bottom {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .services-grid-checkerboard {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 40px;
    }
}

/* ==========================================
   Navigation Dropdown Menu Premium Styles
   ========================================== */
.nav-links li {
    position: relative;
}

.nav-links li.dropdown-item {
    padding-right: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition-smooth);
}

.nav-links li.dropdown-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--bg-white);
    min-width: 260px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
}

/* Arrow indicator on top of the dropdown card */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-white);
    box-shadow: -3px -3px 5px rgba(0,0,0,0.02);
}

.nav-links li.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-primary) !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary-color) !important;
    padding-left: 30px;
}

/* Adjust dropdown display for non-scrolled transparent header */
header:not(.scrolled) .dropdown-menu {
    border-top: 3px solid var(--primary-color);
}

/* Mobile dropdown styles matching 992px responsive rules */
@media (max-width: 992px) {
    .nav-links li.dropdown-item {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-links li.dropdown-item > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        width: 100%;
        min-width: 0;
        padding: 0;
        display: none; /* Toggle via open class in mobile JS */
        border-top: none !important;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li a {
        padding: 15px 45px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        text-align: left;
    }

    .dropdown-menu li a:hover {
        color: var(--primary-color) !important;
        background: transparent;
        padding-left: 45px !important;
    }

    /* Open state toggled by mobile menu script */
    .nav-links li.dropdown-item.open .dropdown-menu {
        display: block;
    }
}