        /* =========================================================================
   AWRF MASTER THEME & VARIABLES (Kept as is)
   ========================================================================= */
:root {
    --primary-emerald: #0b3d1f;      /* Deep premium corporate green derived from logo */
    --accent-teal: #1e7a4d;         /* Fresh active agricultural green */
    --gold-wheat: #dfb755;          /* Rich wheat golden theme accent */
    --liquid-gold-glow: rgba(223, 183, 85, 0.4);
    --dark-neutral: #07170c;        /* High contrast dynamic background elements */
    --light-neutral: #f4f9f5;
    --pure-white: #ffffff;
     --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: 50px;
  
}

/* Base Body Resets */
body {
    font-family: var(--font-body);
    color: var(--dark-neutral);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Container Custom Width Overrides */
.container-custom {
    padding-left: 5%;
    padding-right: 5%;
}

/* =========================================================================
   HEADER & GLASSMORPHIC NAVIGATION CSS (Kept as is)
   ========================================================================= */
.awrf-header {
    background: rgba(7, 23, 12, 0.98);
    padding: 20px 0;
    transition: var(--transition-smooth);
    z-index: 1050;
}

/* Header state change on scrolling */
.awrf-header.header-scrolled {
    background: rgba(7, 23, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.awrf-header .navbar {
    padding: 0;
}

/* Brand Logo Optimization */
.logo-wrapper {
    max-width: 320px;
    transition: var(--transition-smooth);
}

@media (max-width: 576px) {
    .logo-wrapper {
        max-width: 240px;
    }
}

.brand-logo {
    height: auto;
    max-height: 55px;
    object-fit: contain;
    border-radius: 8px;
}

.awrf-header.header-scrolled .brand-logo {
    max-height: 48px;
}

/* Navbar Menu Link Animations */
.navbar-nav .nav-item {
    margin: 0 12px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 0 !important;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-wheat) !important;
}

/* Premium Animated Underline Effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--gold-wheat));
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Connect button, Custom Toggler, and Mobile Dropdown (Unchanged) */
.btn-premium-connect {
    background: transparent;
    border: 1px solid var(--gold-wheat);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(223, 183, 85, 0.1);
}

.btn-premium-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-premium-connect:hover::before {
    left: 100%;
}

.btn-premium-connect:hover {
    color: var(--dark-neutral);
    background-color: var(--gold-wheat);
    box-shadow: 0 0 25px var(--liquid-gold-glow);
    border-color: var(--gold-wheat);
    transform: translateY(-2px);
}

.custom-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent !important;
    box-shadow: none !important;
}

.toggler-icon {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--pure-white);
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-toggler[aria-expanded="true"] .bar-top {
    transform: translateY(11px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .bar-mid {
    opacity: 0;
}
.custom-toggler[aria-expanded="true"] .bar-bot {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: rgba(7, 23, 12, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 30px;
        border-bottom: 2px solid var(--accent-teal);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    .navbar-nav .nav-item {
        margin: 15px 0;
    }
    .btn-premium-connect {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

/* =========================================================================
   NEW DROPDOWN STYLING - FULL VIEW (Section-by-section)
   ========================================================================= */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 8px;
    background: rgba(7, 23, 12, 0.95); /* Deep emerald background */
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    /* Set custom width for full visibility */
    min-width: 250px; 
    /* Smooth hover transitions */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    display: block !important; /* Fixed Bootstrap conflict */
}

/* Show dropdown on hover (for large screens) */
@media (min-width: 1200px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Reset Bootstrap's default display rules for mobile */
@media (max-width: 1199.98px) {
  @media (max-width: 1199.98px) {
    .navbar-nav .dropdown-menu {
        display: none !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        position: static;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        margin-left: 20px;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
}
}

.navbar-nav .dropdown-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    padding: 10px 25px !important;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
    background: rgba(30, 122, 77, 0.2); /* Subtle teal background on hover */
    color: var(--gold-wheat) !important;
}

/* Chevron icons placement and styling */
.nav-link i.fa-chevron-down {
    font-size: 0.75rem;
    color: var(--gold-wheat);
    transition: var(--transition-smooth);
}

.dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* MobileIndentation Fix for non-text slider alignment */
@media (max-width: 1199.98px) {
    .dropdown:hover .nav-link i.fa-chevron-down {
        transform: none; /* Keep icon static in mobile */
    }
}

/* FIXED: Premium Animated Underline - Only for normal nav-links, not dropdown toggles */
.navbar-nav .nav-link::after {
    display: block; /* Make it a block element to ensure full width underline */
}

/* Hide underline specifically for dropdown-toggles to prevent double arrow icon effect on desktop */

.navbar-nav .dropdown-item {
    position: relative;
}

.navbar-nav .dropdown-item::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 25px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), var(--gold-wheat));
    transition: var(--transition-smooth);
}

.navbar-nav .dropdown-item:hover::after,
.navbar-nav .dropdown-item.active::after {
    width: calc(100% - 50px);
}
.dropdown-toggle::after {
    display: none !important;
}


/* =========================================================================
   UPDATED PREMIUM HERO SLIDER SYSTEM - NO TEXT, IMAGE FULL VIEW ONLY
   ========================================================================= */
/* =========================
        HERO SLIDER
========================= */

.hero-slider{
    width: 100%;
    background: #000;
    overflow: hidden;
    padding: 0;
    margin-top: 105px;
}

/* CAROUSEL */
#heroCarousel{
    width: 100%;
}

/* IMAGE */
.hero-img{
    width: 100%;
    height: auto;

    /* IMPORTANT */
    display: block;
    object-fit: contain;

    background: #000;
}

/* DESKTOP */
@media(max-width:1199px){

    .hero-slider{
    margin-top: 83px;
}
        
    
}

/* BUTTONS */
.carousel-control-prev,
.carousel-control-next{
    width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: brightness(0) invert(1);
}
/* =========================================================================
   PREMIUM ABOUT SECTION STYLING
   ========================================================================= */
.about-section {
    padding: var(--section-padding) 0;
    background-color: var(--pure-white);
    position: relative;
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
}

.section-label {
    color: var(--accent-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.about-title {
    color: var(--dark-neutral);
    font-size: 2vw;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5a4f;
    margin-bottom: 30px;
    text-align: justify;
}

.feature-box {
    padding: 30px;
    background:var(--light-neutral);
    border-left: 4px solid var(--gold-wheat);
    transition: var(--transition-smooth);
    margin-top: 20px;
    text-align: justify;
}

.feature-box:hover {
    background:  #fcfcfc;
    transform: translateX(10px);
}

.about-image-stack {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-title { font-size: 25px; }
    .about-image-stack { margin-bottom: 50px; }
}

/* =========================================================================
   SERVICES SECTION - PREMIUM GLASS LAYOUT
   ========================================================================= */
.services-section {
    padding: 50px 0;
    background-color: var(--light-neutral);
    position: relative;
}

.service-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--accent-teal);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(30, 122, 77, 0.1);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--accent-teal);
    color: var(--pure-white);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-neutral);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* =========================================================================
   PREMIUM TEAM SLIDER - PRODUCTION READY
   ========================================================================= */
/* =========================================================================
   PREMIUM TEAM SECTION - CLEAN & HIGH-END
   ========================================================================= */
.team-slider-section { 
    padding: 50px 0; 
    background: #ffffff; 
    position: relative; 
}

.team-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 480px;
    background: #111;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.8; 
    transition: 0.7s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.team-card:hover .team-image { 
    transform: scale(1.1); 
    opacity: 0.5; 
}

/* Content & Overlay */
.team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    color: #fff;
    transition: 0.5s ease;
}

.team-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }
.team-role { font-size: 0.9rem; color: var(--gold-wheat); text-transform: uppercase; letter-spacing: 2px; }

/* Social Icons - Animated Reveal */
.social-icons { 
    margin-top: 20px; 
    display: flex; 
    gap: 15px; 
    opacity: 0; 
    transform: translateY(20px); 
    transition: 0.5s ease; 
}

.team-card:hover .social-icons { opacity: 1; transform: translateY(0); }

.social-icons a { 
    color: var(--gold-wheat); 
    font-size: 1.1rem; 
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: 0.4s;
    text-decoration: none;
}

.social-icons a:hover { 
    background: var(--accent-teal); 
    border-color: var(--accent-teal);
    transform: rotate(360deg);
}

/* Glassmorphism Navigation */
.team-slider-section .swiper-button-next, .swiper-button-prev {
    background: rgba(255,255,255,0.9);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    color: var(--accent-teal) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.3);
}
.team-slider-section .swiper-button-next:after, .swiper-button-prev:after { font-size: 22px !important; font-weight: 900; }



.approval-section {
   
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    /* 3D perspective for cards */
    perspective: 1500px; 
}



.approval-slider {
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.approval-track {
    display: flex;
    gap: 40px;
    animation: scroll-approval 30s linear infinite;
    padding: 40px 0;
}

/* Unique 3D Floating Card (No Hover Needed) */
.approval-card {
    width: 240px;
    height: 150px;
    background: rgba(255, 255, 255, 0.02);
    /*backdrop-filter: blur(12px);*/
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    
    /* THE MAIN ANIMATION: Auto-rotate and Float */
    animation: unique-float 6s ease-in-out infinite;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Staggering the animation so they don't move together */
.approval-track div:nth-child(even) .approval-card { animation-delay: -3s; }
.approval-track div:nth-child(3n) .approval-card { animation-duration: 8s; }

@keyframes unique-float {
    0%, 100% { 
        transform: rotateY(-10deg) translateY(0) rotateX(5deg); 
        border-color: rgba(197, 160, 89, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    50% { 
        transform: rotateY(10deg) translateY(-25px) rotateX(-5deg); 
        border-color: var(--accent);
        box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
    }
}

.approval-card img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    /* Logos ko gold tint dena (Optional but Premium) */
    /*filter: brightness(0.8) sepia(0.3) saturate(1.2);*/
    animation: img-pulse 6s ease-in-out infinite;
}

@keyframes img-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Auto-Scroll Keyframe */
@keyframes scroll-approval {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 11)); }
}


.gallery-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;      /* Square card */
    border-radius: 15px;
    overflow: hidden;
    background: #f3f3f3;
    cursor: zoom-in;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Sab images same size me crop hongi */
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}
/* Fancybox overlay style */
.fancybox__container { --fancybox-bg: rgba(0,0,0,0.9); }


.footer-section {
    background: var(--dark-neutral);
    color: var(--pure-white);
    padding: 80px 0 30px;
}

.footer-logo { max-width: 200px;border-radius: 8px;}

.footer-title { color: var(--gold-wheat); margin-bottom: 25px; font-size: 1.2rem; }

.footer-text { color: #aaa; font-size: 0.9rem; line-height: 1.6; }

.footer-links, .footer-contact { list-style: none; padding: 0; }
.footer-links li a, .footer-contact li { color: #aaa; margin-bottom: 12px; display: block; transition: 0.3s; text-decoration: none; }
.footer-links li a:hover { color: var(--gold-wheat); padding-left: 5px; }

.footer-contact li i { color: var(--gold-wheat); margin-right: 10px; }

.social-links a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--pure-white); transition: 0.3s;
}
.social-links a:hover { background: var(--gold-wheat); color: var(--dark-neutral); }

.footer-newsletter { display: flex; background: rgba(255,255,255,0.1); border-radius: 50px; padding: 5px; }
.footer-newsletter input { background: transparent; border: none; padding: 10px 20px; color: #fff; width: 100%; outline: none; }
.footer-newsletter button { background: var(--gold-wheat); border: none; border-radius: 50%; width: 45px; height: 45px; color: var(--dark-neutral); }



/* =========================================================================
   PREMIUM BREADCRUMB - AWRF THEME
   ========================================================================= */
.page-breadcrumb-section {
    padding: 120px 0 40px; /* Top padding header ke niche set karne ke liye */
    background: linear-gradient(180deg, var(--dark-neutral) 0%, rgba(7, 23, 12, 0.95) 100%);
    position: relative;
    border-bottom: 1px solid rgba(223, 183, 85, 0.2);
}

.breadcrumb-content h2 {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-item a {
    color: var(--gold-wheat);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--pure-white);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gold-wheat);
    padding-right: 10px;
    padding-left: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-breadcrumb-section { padding: 100px 0 30px; }
    .breadcrumb-content h2 { font-size: 1.8rem; }
}


/* =========================================================================
   PREMIUM "WHO WE ARE" PAGE - AWRF
   ========================================================================= */
.who-we-are-page { padding: 100px 0; background: #fafafa; }

.content-block {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(223, 183, 85, 0.2);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

.motto-box {
    background: var(--primary-emerald);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
}

.motto-box h3 { font-size: 2rem; font-weight: 700; color: var(--gold-wheat); }

/* =========================================================================
   PREMIUM CORE VALUES GRID - STYLES
   ========================================================================= */

.core-values-section {
    position: relative;
    padding: 50px 0;
}

.premium-value-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect: Card Lift & Shadow */
.premium-value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-teal);
}

/* Icon Container with Glow Effect */
.icon-glow {
    width: 70px;
    height: 70px;
    background: rgba(30, 122, 77, 0.08);
    color: var(--accent-teal);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

/* Hover Effect: Icon Glow & Gold Accent */
.premium-value-card:hover .icon-glow {
    background: var(--primary-emerald);
    color: var(--gold-wheat);
    box-shadow: 0 0 20px rgba(223, 183, 85, 0.4);
    border-color: var(--gold-wheat);
    transform: rotate(5deg) scale(1.1);
}

/* Typography */
.premium-value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.premium-value-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .core-values-section { padding: 60px 0; }
    .premium-value-card { padding: 30px 20px; }
}

@media (max-width: 576px) {
    .premium-value-card { margin-bottom: 20px; }
}