:root {
    --primary-color: #0d4393;
    --secondary-color: #6c757d;
    --dark-bg: #0a0a0a;
    --brand-green: #3c5c46;
    --brand-blue: #812b34;
    --light-text: #f8f9fa;
    --hero-transition: 1s ease-in-out;
}

html,
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}


/* Logo Styling */
/* Logo Styling */








.navbar-brand img {
    height: 100px;
    width: auto;
    display: block;
}

/* Mobile: HARD LOCK, NO ANIMATION */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 70px;
        transition: none !important;
    }

    .navbar-brand {
        flex-shrink: 0;
    }
}






h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
    font-family: 'Outfit', sans-serif;
}

/* Navbar - Always Dark for Visibility */
/* Navbar - Always Dark for Visibility */
/* Navbar - Always Dark for Visibility */
/* =========================================
   NAVBAR REWRITE (FINAL STABLE VERSION) 
   ========================================= */

/* 1. Desktop Default State (Large Screens) */
.navbar {
    /* background-color: #ffffff; */
    background: linear-gradient(to top, #eef9e5, #f3f3f3);
    padding: 10px 0;
    /* Initial large padding */
    transition: padding 0.3s ease;
    /* Smooth shrink effect */
    /* Smooth shrink effect */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Button (Get Started) - Brand Green Override */
#mainNav .btn-primary {
    background-color: var(--brand-green);
    /* Brand Green */
    border-color: #6dad35;
    color: #fff;
    transition: all 0.3s ease;
}

#mainNav .btn-primary:hover {
    background-color: #0a0a0a;
    /* Dark hover for contrast */
    color: #fff;
    border-color: #0a0a0a;
}

/* Navbar Link Styling (Dark Text for Light Bg) */
.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--brand-green);
}

/* 2. Desktop Scrolled State */
.navbar.scrolled {
    padding: 8px 0 !important;
    /* Shrink to 15px */
}












/* Remove Bootstrap blue focus & active styles */
.navbar .nav-link:focus,
.navbar .nav-link:focus-visible,
.navbar .nav-link:active,
.navbar .nav-item.show>.nav-link,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Remove blue focus ring from hamburger */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}










@media (max-width: 991px) {




    .navbar,
    .navbar.scrolled {
        /* FORCE LOCK ALL PROPERTIES */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        /* Use min-height to allow expansion */
        min-height: 80px !important;
        height: auto !important;
        /* Explicit height */
        z-index: 9999 !important;
        /* Maximum Z-Index */
        background-color: #ffffff !important;

        /* PADDING FOR VERTICAL SPACING */
        padding: 15px 0 !important;

        /* KILL ANIMATIONS */
        transition: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .navbar>.container {
        /* Reset aggressive flex overrides */
        display: flex !important;
        flex-wrap: wrap !important;
        /* Allow menu to break to next line */
        justify-content: space-between !important;
        align-items: flex-start !important;
        /* Don't center the whole blob */
        padding-left: 15px;
        padding-right: 15px;
        height: auto !important;
    }

    /* Isolate the Header Row Items */
    .navbar-brand,
    .navbar-toggler {
        /* Center them in the initial strip using margins or self-alignment */
        align-self: center !important;
        margin-top: 5px;
        /* Fine-tune alignment */
        margin-bottom: 5px;
    }

    .navbar-collapse {
        /* Ensure menu has its own space */
        width: 100%;
        margin-top: 15px;
        background: #ffffff;
        max-height: 80vh;
        /* Prevent screen takeover */
        overflow-y: auto;
        /* Scroll inside menu if needed */
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }


    .navbar-nav {
        padding-bottom: 20px;
    }





    .navbar-nav .dropdown-menu {
        position: static !important;
        width: 100%;
        transform: none !important;
    }

    /* Lock Services link position */
    .navbar-nav .dropdown-toggle {
        width: 100%;
        padding-left: 0 !important;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Navbar Services Dropdown */
.dropdown-menu {
    background-color: #ffffff;
    /* Light Bg */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 10px 0;
    margin-top: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    color: #333;
    /* Dark Text */
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa;
    /* Light Hover */
    color: var(--brand-green);
    padding-left: 25px;
}

/* Hover Trigger for Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}





















@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section (Bootstrap Carousel) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    padding-top: 100px;
}



.hero-primary {
    color: #56a26d;
}

.btn-hero {
    background-color: var(--brand-green);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #fff;
    color: var(--brand-green);
    border: none;
}

.carousel-item {
    transition: transform 1s ease-in-out, opacity .5s ease-in-out;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Overlay remains same but ensures it sits above bg within item */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    /* Match bg z-index but physically after in DOM */
}

/* Indicators Customization */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    opacity: 0.7;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #fff;
    opacity: 1;
}

.hero-content {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
    /* Delay for slide */
}

/* Animation triggers when slide is active */
.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}


.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    /* Ensure white text */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    /* Bright white-ish text */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Core Utilities */
.bg-brand-green {
    background-color: var(--brand-blue);
    color: #fff;
}

.text-brand-green {
    color: var(--brand-green);
}

/* Feature Cards */
.feature-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

/* About Section Images */
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.about-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-large {
    grid-column: 1 / 3;
}


/* --- REDESIGNED SECTIONS --- */

/* Vision / Dream Section Overhaul */
.vision-section {
    padding: 120px 0;
    background-color: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(109, 173, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vision-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-img-premium {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-bottom: 5px solid var(--brand-green);
}

/* Values Tabs Section (Light & Clean) */
.values-tab-section {
    padding: 80px 0;
    background-color: #fff;
    /* White background */
    color: #333;
    border-top: 1px solid #eee;
}

.values-nav {
    border-bottom: none;
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 0;
    flex-direction: column;
    border-right: 1px solid #eee;
    /* Light divider */
}

.values-nav .nav-link {
    border: none;
    border-radius: 0;
    color: #999;
    /* Dimmed inactive text */
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 30px;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.values-nav .nav-link:hover {
    color: var(--brand-blue);
    background: #f8f9fa;
    /* Light hover bg */
}

.values-nav .nav-link.active {
    color: var(--brand-green);
    background: transparent;
    box-shadow: none;
}

.values-nav .nav-link.active::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--brand-green);
}

/* Mobile Adjustments for Values Tabs */
@media (max-width: 991px) {
    .values-nav {
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 30px;
        align-items: center;
        /* Center Items */
    }

    .values-nav .nav-link {
        text-align: center;
        justify-content: center;
        border-bottom: 1px solid #eee;
        /* Divider */
        width: 100%;
    }

    .values-nav .nav-link:last-child {
        border-bottom: none;
    }

    .values-nav .nav-link.active::after {
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }

    .tab-content-box {
        text-align: center;
        padding: 20px 0;
    }
}

/* Large Content Box (Minimal Light) */
.tab-content-box {
    background: transparent;
    border-radius: 0;
    padding: 20px 40px;
    text-align: left;
    height: 100%;
    box-shadow: none;
    border: none;
    animation: fadeInRight 0.5s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-icon {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 1;
}

.tab-content-box:hover .tab-icon {
    transform: translateX(5px);
}

.tab-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    /* Dark Title */
}

.tab-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    /* Dark Text */
    max-width: 100%;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Commitment / Process Overhaul */
.commitment-section {
    padding: 100px 0;
    background-color: #fff;
}

.commitment-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.progress-clean-wrapper {
    margin-bottom: 40px;
}

.progress-clean-label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.progress-clean {
    height: 4px;
    background-color: #f1f1f1;
    overflow: hidden;
    border-radius: 0;
}

.progress-clean-bar {
    height: 100%;
    background-color: #000;
}

/* Parallax Quote Clean */
.parallax-section {
    background-image: url('../images/parallax-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    position: relative;
    color: #fff;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker overlay */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.quote-text-clean {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.4;
}

/* Values Section Premium */
.values-section {
    padding: clamp(2rem, 5vw, 5rem) 0;
    background-color: #fcfcfc;
}

.value-card-premium {
    background: #fff;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 3px solid transparent;
}

.value-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-left-color: var(--brand-green);
}

.value-icon-premium {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    display: block;
}

.value-title-premium {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

/* CTA Section Professional Boxed */
.cta-section-premium {
    background-color: #fff;
    padding: clamp(2rem, 5vw, 3rem) 0;
    position: relative;
    border-top: none;
    /* border:1px solid red; */
}

.cta-box {
    /* background: linear-gradient(135deg, #6dad35 0%, #4a8a1a 100%); */
    background-color: var(--brand-green);
    /* Brand Green Gradient */
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    /* Strong shadow for highlight */
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title-premium {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    /* Larger font size */
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.25rem;
    /* Larger text */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-premium {
    background-color: #fff;
    /* White Button */
    color: #6dad35;
    /* Green Text */
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 50px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.btn-cta-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background-color: #f8f9fa;
    color: #6dad35;
}

/* Footer (Updated) */
.footer {
    background-color: #111;
    color: #888;
    font-size: 0.9rem;
    margin-top: 0px;
    padding: 80px 0;
}

.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-link {
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-green);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #222;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--brand-green);
}



.footer-brand{
  display:flex;
  align-items:center;
  justify-content:flex-start; /* keeps it left */
}

.footer-logo{
  height: 55px;          /* ✅ control size */
  max-width: 250px;      /* ✅ prevents it from stretching */
  width: auto;
  object-fit: contain;
}


@media (max-width: 576px){
  .footer-logo{
    height: 45px;
    max-width: 180px;
  }
}

/* Scroll Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    view-timeline-name: --section-view;
    view-timeline-axis: block;
    animation-timeline: view();
    animation-name: slideUpFade;
    animation-range: entry 10% cover 30%;
    animation-fill-mode: both;
}

/* Custom Button Brand Green */
.btn-brand-green {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-brand-green:hover {
    background-color: #5a9e25;
    /* Slightly darker shade */
    border-color: #5a9e25;
    color: #fff;
}

/* Mobile adjustments for the button */
@media (max-width: 576px) {
    .btn-brand-green {
        font-size: 1.1rem !important;
        /* Smaller font */
        padding: 10px 20px !important;
        /* Smaller padding */
    }
}





























/* Logo Marquee Section */
.logo-marquee-section {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 80px 0px 0px 0px !important;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll-left-to-right 15s linear infinite;
}

/* Hover to stop */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 30px 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    max-height: 50px;
    width: auto;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.marquee-item:hover img {
    filter: grayscale(50%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-left-to-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {

    .logo-marquee-section {

        margin: 40px 0px 0px 0px !important;
    }

    .marquee-item {
        /* padding: 0 20px; */
        padding: 20px 20px;

    }

    .marquee-item img {
        max-height: 35px;
    }

    .marquee-content {
        animation-duration: 20s;
    }
}