/* ================================
   ROOT VARIABLES
================================ */
:root {
    /* Fonts */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Colors */
    --white: #ffffff;
    --orange: #fdaf27;
    --light-orange: #fff5e4;
    --dark-overlay: rgba(26, 35, 50, 0.8);
    --text: #5f6f6c;
    --text-dark: #0b3954;

    /* Layout */
    --hero-radius: 30px;
    --hero-margin: 25px;

    /* Header */
    --header-padding-desktop: 24px 40px;
    --header-padding-mobile: 16px 24px;

    /* Buttons */
    --btn-radius-full: 50%;
    --btn-radius-pill: 28px;
    --btn-contact-padding: 14px 32px;
    --btn-contact-padding-sm: 12px 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Typography */
    --heading-xl: 72px;
    --heading-lg: 60px;
    --heading-md: 48px;
    --heading-sm: 36px;
    --heading-xs: 32px;

    --text-lg: 20px;
    --text-md: 18px;
    --text-sm: 16px;
}

/* ================================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ================================
   HERO SECTION
================================ */
.hero-section {
    position: relative;
    width: 97%;
    overflow: hidden;
    margin: var(--hero-margin);
    border-radius: var(--hero-radius);
}

/* Background Image */
.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("assets/images/s2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.8s ease-in-out;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--dark-overlay);
}

/* Content Container */
.hero-content {
    position: relative;
    /* z-index: 10; */
}

/* ================================
   HEADER
================================ */
.header {
    padding: var(--header-padding-desktop);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.header.transparent {
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0);
    padding: 50px;
}

.header.scrolled {
    background-color: rgba(26, 35, 50, 0.975);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}


.header .container-fluid {
    max-width: 100%;
    padding: 0;
}

section {
    overflow-x: hidden;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: var(--orange);
    border-radius: var(--btn-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

/* ================================
   NAVIGATION
================================ */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--white) !important;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-normal);
    padding: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange) !important;
}

.nav-link svg {
    width: 12px;
    height: 8px;
    transition: transform var(--transition-normal);
}

.nav-link:hover svg {
    transform: translateY(2px);
}

/* ================================
   HEADER ACTIONS
================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-contact {
    background-color: var(--white);
    color: var(--text-dark);
    padding: var(--btn-contact-padding);
    border-radius: var(--btn-radius-pill);
    border: none;
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-menu {
    width: 56px;
    height: 56px;
    background-color: var(--white);
    border-radius: var(--btn-radius-full);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

/* ================================
   HERO CONTENT
================================ */
.hero-main {
    padding: 120px 40px 150px;
}

/* Eco Badge */
.eco-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.eco-icon {
    width: 80px;
    height: 80px;
}

.eco-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eco-text {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 500;
}

/* Heading */
.hero-heading {
    font-size: var(--heading-xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-white {
    color: var(--white);
}

.text-orange {
    color: var(--orange);
}

/* Description */
.hero-description {
    color: var(--white);
    font-size: var(--text-md);
    line-height: 1.6;
    max-width: 700px;
}



/* ================================
   STATS SECTION
================================ */
.stats-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.stats-container {
    background: var(--white);
    border-radius: var(--hero-radius);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 75%;
    max-width: 1400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-top: -165px;
    z-index: 2;
}

/* Individual Stat */
.stat-item {
    position: relative;
    flex: 1;
    text-align: center;
}

/* Soft Circle Behind Number */
.stat-badge {
    position: absolute;
    top: -25px;
    left: 70%;
    width: 70px;
    height: 70px;
    background: var(--light-orange);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Number */
.stat-number {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    z-index: 3;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: translateY(-4px);
}

/* Label */
.stat-label {
    margin-top: 10px;
    font-size: var(--text-md);
    color: var(--text-dark);
    font-weight: 500;
}

/* Divider */
.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--text-dark);
}

/* ================================
   ABOUT SECTION
================================ */





/* Text */
.about-text {
    font-size: var(--text-md);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

/* Button */
.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
}

.main-btn i {
    background: var(--light-orange);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.main-btn i::before {
    transition: color 0.3s ease;
}



.main-btn:hover {
    background: var(--light-orange);
    color: var(--text-dark);
}

.main-btn:hover i {
    background: var(--text-dark);
    transform: rotate(-30deg);
}

.main-btn:hover i::before {
    color: var(--orange);
    transition: color 0.3s ease;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.about-text {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
    max-width: 750px;
}

.about-text strong {
    font-weight: 600;
}



/* Cards */
.info-card {
    border-radius: 28px;
    padding: 40px 32px;
    height: 100%;
}

.info-card.dark {
    background: var(--orange);
    color: var(--white);
}

.info-card.green {
    background: var(--light-orange);
    color: var(--text-dark);
}

.card-number {
    font-size: 56px;
    font-weight: 700;
    opacity: 0.9;
}

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
}


/* ================================
   PROJECTS SECTION
================================ */
.projects-section {
    padding: 80px 0 0;
    background: var(--white);
    font-family: var(--font-primary);
}

/* Badge */
.section-badge {
    display: inline-block;
    background: var(--light-orange);
    color: var(--orange);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Title */
.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin: 20px 0;
    color: var(--text-dark);
}

/* Description */
.projects-desc {
    max-width: 520px;
    margin-left: auto;
    font-size: var(--text-md);
    color: #667085;
    line-height: 1.7;
}

/* ================================
   PROJECT CARD
================================ */
.project-card {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.1));
    opacity: 0.9;
}

/* Hover zoom */
.project-card:hover img {
    transform: scale(1.08);
}

/* Overlay text */
.project-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.project-overlay h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-overlay span {
    color: var(--orange);
    font-size: 15px;
    font-weight: 500;
}







/* ================================
   MARQUEE
================================ */
.services-marquee {
    background: var(--light-orange);
    overflow: hidden;
    padding: 28px 0;
    margin-bottom: 10px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-content span {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.marquee-icon {
    font-size: 28px;
    color: #000;
}

.services-marquee:hover .marquee-track {
    animation-play-state: paused;
}


/* Animation */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ================================
   WHY CHOOSE US SECTION
================================ */
.why-choose-section {
    padding: 90px 0;
}



/* Description */
.section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    max-width: 520px;
}

/* Feature Items */
.feature-item {
    position: relative;
    padding-left: 44px;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    color: var(--text-dark);
    background-color: var(--light-orange);
    font-size: 14px;
    display: grid;
    place-items: center;
}

.feature-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 0;
}

/* Image */
.image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* service */


.services-section {
    padding: 50px 0;
}


.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
}

.section-desc {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.service-card {
    background: var(--light-orange);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 27px;
    left: -1px;
    width: 30px;
    height: 30px;
    background: white;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 28px;
    width: 30px;
    height: 30px;
    background: white;
}

.service-card img {
    width: 42px;
    margin-bottom: 20px;
}

.service-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-card a {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
}

.service-card a span {
    margin-left: 6px;
}

.service-card:hover {
    transform: translateY(-8px);
}







/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonial-section {
    width: 100%;
    overflow: hidden;
    font-family: var(--font-primary, 'Inter', sans-serif);
    margin-bottom: 370px;
}

/* LEFT IMAGE */
.testimonial-image {
    width: 100%;
    height: 100%;
    background: url('assets/images/s2.webp');
}



/* Quote Icon */
.quote-icon {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Text */
.testimonial-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 520px;
    margin-bottom: 40px;
}

/* Author */
.testimonial-author {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Dots */
.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
}

.testimonial-dots span.active {
    background: #0f172a;
}




/* Swiper fixes */
.testimonial-content {
    background: var(--light-orange);
    padding: 80px 70px;
    position: relative;
    height: 100%;
    position: relative;
}

.testimonial-content img {
    width: 450px;
    position: absolute;
    bottom: 0px;
    right: -50px;
}

/* Swiper inside content */
.testimonial-text-swiper {
    width: 100%;
}

.swiper-slide {
    height: auto;
}

/* Pagination dots */
.swiper-pagination {
    margin-top: 30px;
    text-align: left;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0f172a;
}


.appointment-box {
    background: var(--text-dark);
    border-radius: 20px;
    padding: 50px;
    margin: -350px 0 60px 0;
}

.badge-text {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 1px;
}

.appointment-section h2 {
    font-size: 38px;
    font-weight: 600;
    margin: 15px 0;
}

.appointment-section h2 span {
    color: var(--orange);
}

.appointment-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
}

.call-box {
    background: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 25px;
    max-width: 300px;
}

.call-icon {
    background: var(--orange);
    padding: 10px 13px 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-image img {
    width: 100%;
    border-radius: 16px;
}




.footer-section {
    background: var(--light-orange);
    color: var(--text-dark);
    padding: 80px 0 30px;
    position: relative;
    margin-top: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
}

.footer-logo i {
    color: var(--orange);
    margin-right: 8px;
}

.footer-text {
    color: var(--text);
    margin: 20px 0;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--text-dark);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    color: #000;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact-box {
    background: var(--text-dark);
    padding: 30px;
    border-radius: 16px;
    color: white;
}





.footer-divider {
    border-color: #222;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--text);
}

.footer-bottom a {
    color: var(--text-dark);
    margin-left: 20px;
    text-decoration: none;
}




/* about page */

/* Breadcrumb Wrapper */
.breadcrumb-wrapper {
    width: 97%;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 200px 40px;
    border-radius: var(--hero-radius);
    margin: var(--hero-margin);
    display: flex;
    align-items: center;
    min-height: 80px;
    color: #ffffff;
    overflow: hidden;
}

/* Gradient Dark Overlay */
.breadcrumb-wrapper .breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.492),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.04));
    border-radius: var(--hero-radius);
    z-index: 0;
}

/* Breadcrumb Content */
.breadcrumb-wrapper .breadcrumb {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.748);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Breadcrumb Links */
.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 1;
    color: #ff7f00;
    text-decoration: none;
}

/* Active Item */
.breadcrumb-item.active {
    color: #ff7f00;
    font-weight: 600;
}

/* Divider */
.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    padding-right: 8px;
}



.story-section {
    padding: 70px 0 100px 0;
}


.story-title {
    font-size: 44px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}



.main-image img {
    border-radius: 4px;
    width: 79%;
}

.floating-image {
    border-radius: 4px;
    position: absolute;
    bottom: 60px;
    right: -32px;
    width: 360px;
    padding: 10px;
    background-color: white;
}

.floating-image img {
    border-radius: 4px;
}

.experience-box {
    border-radius: 4px;
    position: absolute;
    top: 0px;
    right: -20px;
    background: var(--orange);
    color: #fff;
    padding: 30px 35px;
    text-align: center;
}

.experience-box h2 {
    font-size: 48px;
    font-weight: 700;
}

.experience-box p {
    margin: 0;
    font-size: 16px;
}

.clients-box {
    margin-top: 30px;
}

.clients-box p {
    font-weight: 500;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -10px;
    border: 2px solid #fff;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-orange);
    padding: 20px;
}

.feature-box i {
    font-size: 30px;
    color: var(--orange);
}

.feature-box h6 {
    margin: 0;
    font-weight: 600;
}

.checklist p {
    font-size: 15px;
    margin-bottom: 10px;
}

.checklist i {
    color: var(--orange);
    margin-right: 8px;
}










/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: var(--heading-lg);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 42px;
    }

    .projects-desc {
        margin-left: 0;
        margin-top: 20px;
    }

    .project-card {
        height: 360px;
    }

    .main-nav {
        display: none;
    }

    .hero-heading {
        font-size: var(--heading-md);
    }

    .hero-main {
        padding: 80px 32px 60px;
    }

    /* hero stats */
    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px;
        border-radius: 40px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .section-title {
        font-size: 36px;
    }

    .testimonial-content {
        padding: 50px 40px;
    }

    .testimonial-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: var(--header-padding-mobile);
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .btn-contact {
        padding: var(--btn-contact-padding-sm);
        font-size: 14px;
    }

    .btn-menu {
        width: 48px;
        height: 48px;
        z-index: 1;
    }

    .hero-heading {
        font-size: var(--heading-sm);
    }

    .hero-description {
        font-size: var(--text-sm);
    }

    .eco-badge {
        margin-bottom: 24px;
    }

    .eco-icon {
        width: 60px;
        height: 60px;
    }

    .eco-text {
        font-size: var(--text-sm);
    }

    .hero-main {
        padding: 100px 24px 40px;
    }

    .hero-section {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .stats-container {
        margin-top: 0;
    }


    .marquee-content span {
        font-size: 22px;
    }

    .marquee-icon {
        font-size: 18px;
    }

    .breadcrumb-wrapper .breadcrumb-overlay {
        border-radius: 0;
    }

    .breadcrumb-wrapper {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .floating-image {
        width: 135px;
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: var(--heading-xs);
    }

    .btn-contact span:last-child {
        display: none;
    }

    /* hero stat cards */
    .stat-item {
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: 48px;
    }

    .project-card {
        height: 300px;
    }
}