* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* ========================================================== */
/* --- Brand Colors --- */
        :root {
            --brand-red: #781c1c;
            --brand-green: #2d8a32;
            --text-dark: #333333;
            --topbar-bg: #741616; 

            --footer-bg: #111111;
            --footer-text: #b0b0b0;
            --newsletter-bg: #f4f4f4;

             /* --light-bg: #f9f9f9; */
                         
        }

      

        /* --- Top Bar Section --- */
        .top-bar {
            background-color: var(--topbar-bg);
            color: #fff;
            padding: 8px 0;
            font-size: 14px;
            position: relative;
            z-index: 1002; /* Navbar se upar */
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--brand-green);
        }

        .contact-info i {
            margin-right: 5px;
            color: var(--brand-green);
        }

        /* --- Navbar Styling --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.9); /* Default slight white */
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            width: 100%;
            z-index: 1001;
            padding: 5px 0;
            /* Layout Adjustment */
            position: absolute; 
            top: 35px; /* Top bar ki height ke barabar niche */
            left: 0;
            background: #fff !important; /* Force transparent as requested */
            box-shadow: none; /* Remove shadow for clean overlay */
        }

        /* Logo Size */
        .navbar-brand img {
            max-height: 65px; 
        }


        .banner-heading{
          color: #4CAF50;
        }
        /* --- Desktop Menu Styling --- */
        @media (min-width: 992px) {
            .nav-item .nav-link {
                color: #000; 
                font-weight: 600;
                font-size: 16px;
                padding: 10px 20px; /* Spacing */
                transition: color 0.3s;
            }

            .nav-item .nav-link:hover {
                color: var(--brand-green);
            }

            /* Dropdown Hover Logic for Desktop */
            .dropdown:hover > .dropdown-menu {
                display: block;
                margin-top: 0;
            }

            /* Submenu (Level 3) Desktop */
            .dropdown-menu .dropdown-submenu {
                position: relative;
            }
            
            .dropdown-menu .dropdown-submenu > .dropdown-menu {
                top: 0;
                left: 100%;
                margin-top: -6px;
                display: none;
            }

            .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
                display: block;
            }

            .dropdown-toggle::after {
                transition: transform 0.3s;
            }
            .dropdown:hover > .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-top: 3px solid var(--brand-green);
            border-radius: 0;
        }

        .dropdown-item {
            padding: 10px 20px;
            color: #444;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: var(--brand-red);
            padding-left: 25px;
        }

        /* --- Mobile Offcanvas Styling --- */
        .offcanvas-header {
            background-color: var(--brand-green);
            color: white;
        }
        
        .btn-close {
            filter: invert(1);
        }

        /* Mobile specific submenu adjustments */
        @media (max-width: 991px) {
            .navbar {
                background-color: #fff !important; /* Mobile me white background zaroori h content dikhne k liye */
                position: relative;
                top: 0;
            }
            
            /* Submenu styling for mobile */
            .dropdown-menu {
                border: none;
                box-shadow: none;
                padding-left: 15px;
                background-color: #f8f9fa;
                display: none; /* Hidden by default */
            }
            
            .dropdown-menu.show {
                display: block;
            }

            /* Top bar adjustment for mobile */
            .top-bar {
                display: none; /* Usually top bar hide kar dete h mobile me space bachane k liye, agar dikhana h to is line ko hata de */
            }
            
            /* Agar Top bar mobile me bhi dikhana h to ise use kare: */
            /* .top-bar .d-flex { flex-direction: column; text-align: center; gap: 5px; } */
        }

        /* --- Hero Banner / Carousel --- */
        .carousel-item {
            height: 100vh;
            min-height: 600px;
            position: relative;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            /* Brightness filter removed here, handled by overlay if needed */
        }

        /* Seamless Fade */
        .carousel-fade .carousel-item {
            opacity: 0;
            transition-duration: 2s;
            transition-property: opacity;
        }

        .carousel-fade .carousel-item.active,
        .carousel-fade .carousel-item-next.carousel-item-start,
        .carousel-fade .carousel-item-prev.carousel-item-end {
            opacity: 1;
        }

        .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
          color: #000;
          font-weight: 600;
        }

        .hero-caption {
            position: absolute;
            top: 50%;
            left: 10%; /* Adjusted for container look */
            transform: translateY(-50%);
            color: #333; /* Text color changed to dark as per screenshot style usually, or keep white */
            color: white; /* Reverted to white for contrast on banner */
            max-width: 650px;
            z-index: 10;
            text-align: left;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: capitalize;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        }

        .hero-para {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        }

        .btn-custom {
            background-color: var(--brand-red);
            color: white;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            border: 2px solid var(--brand-red);
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-custom:hover {
            background-color: transparent;
            color: white;
            border-color: #fff;
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .hero-caption { left: 5%; width: 90%; }
        }





        /* ==================================== About us sectin css===================================== */

        
      /* Background */
.about-section {
    background: url("https://www.naturaldehydration.com/images/section1back.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

/* GRID LAYOUT */
.about-grid {
    display: grid;
    grid-template-columns: 480px 1fr;  /* LEFT FIXED | RIGHT FLEX */
    column-gap: 40px;
    align-items: start;
}

/* Image */
.about-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

/* Text content */
.about-subtitle {
    color: var(--brand-red);
    font-size: 22px;
    font-weight: 600;
}

.about-title {
    font-size: 45px;
    font-weight: 700;
    margin: 15px 0;
}

.about-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--brand-red);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================
   RESPONSIVE 
   ============================= */

/* Below 992px → Stack layout */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Single column full width */
    }

    .about-img {
        height: auto !important;
    }

    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 27px;
    }

    .about-btn {
        padding: 10px 22px;
    }
}






/***********============================================== section2 =====================================================***********/
@media only screen and (max-width: 600px) {.section2{padding:50px 20px 80px 20px;} .section2 .c3{margin-top: 60px;} .section2 .block:before{height: 440px;}}
@media only screen and (min-width: 600px) {.section2{padding:50px 20px 80px 20px;} .section2 .c3{margin-top: 60px;} .section2 .block:before{height: 440px;}}
@media only screen and (min-width: 768px) {.section2{padding:50px 20px 80px 20px;} .section2 .c3{margin-top: -100px;} .section2 .block:before{height: 440px;}}
@media only screen and (min-width: 992px) {.section2{padding:50px 50px 80px 50px;} .section2 .c3{margin-top: -120px;} .section2 .block:before{height: 440px;}}
@media only screen and (min-width: 1200px) {.section2{padding:50px 100px 80px 100px;} .section2 .c3{margin-top: -120px;} .section2 .block:before{height: 380px;}}
@media only screen and (min-width: 1500px) {.section2{padding:50px 160px 80px 160px;} .section2 .c3{margin-top: -120px;} .section2 .block:before{height: 420px;}}
.section2 .mt30{margin-top:30px;}
.section2 .mt15{margin-top:15px;}
.section2 .c2{margin-top: 200px;}
.section2 .c1{margin-top: 50px;}
.section2 .ei{margin-top: -210px;}
.section2 .c2:before{
    content: " ";
    position: absolute;
    background-image: url(https://www.naturaldehydration.com/images/si.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    z-index: -1;
    background-position: right;
    top: -110px;
    left: 80px;
}
.section2 h6{
  
    font-size: 30px;
    font-weight: 400;
    color: #da261c;
}
.section2 h2{
    
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    color: #1d1d1d;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.section2 .block{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-self: flex-start;
}
.section2 .block:before{
    content: " ";
    position: absolute;
    
    width: 100%;
    z-index: -1;
    border-radius: 30px;
    top: 30%;
    bottom: 0;
    display: block;
    transform: skewY(-7deg);
}
.section2 .block1:before{background: var(--brand-red);}
.section2 .block2:before{background: var(--brand-red);}
.section2 .block3:before{background: var(--brand-red);}
.section2 .block:hover .block:before{background: #f2391f; z-index: 0;}
.section2 .block .content{
    padding: 10px 30px;
    display: block;
}
.section2 h4{
   
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.section2 p{
     
    color: #ccc;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.section2 .btn{
    
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 0px 0px;
    background-color: rgba(0,0,0,0);
}






/* ========================= sustainable-section      ======================== */



/* --- Section Styling --- */
        .sustainable-section {
            position: relative;
            
            background-image: url('https://www.naturaldehydration.com/images/section3back.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;           
            padding: 80px 0;
            color: #ffffff; 
        }

        
        .sustainable-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;             
            z-index: 0;  
        }

        
        .sustainable-section .container {
            position: relative;
            z-index: 1;
        }

       
        .sus-subtitle {            
            color: #e74c3c; 
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-family: cursive;  
        }

        .sus-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .sus-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e0e0e0;  
            margin-bottom: 35px;
            max-width: 600px; 
        }

        
        .btn-sustainable {
            background-color: var(--brand-red);  
            color: #ffffff;
            padding: 12px 40px;
            border-radius: 50px;  
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #e74c3c;
            transition: all 0.3s ease-in-out;  
        }

        .btn-sustainable:hover {
            background-color: transparent;  
            color: #e74c3c;  
            border-color: var(--brand-red);  
            transform: translateY(-3px);  
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 991px) {
            .sustainable-section {
                padding: 60px 0;
            }
            
            .sus-content-wrapper {
                text-align: center;
                margin-top: 40px;
            }
            .sus-text {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            .sus-title {
                font-size: 2rem;  
            }
        }




        /* ======================= product section css========================== */


        /* --- Product Section Styling --- */
        .product-section {
            padding: 50px 0 50px 0;
            position: relative;
            background-color: #fff;  
        }

        /* The Overlap Magic */
        .overlap-container {
            /* margin-top: -100px;   */
            position: relative;
            z-index: 10;  
        }

        /* --- Product Card Styling --- */
        .product-card {
            background: #fff;
            border-radius: 15px;   
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);  
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;  
            border: none;
        }

        .product-card:hover {
            transform: translateY(-5px);  
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .product-img-wrapper {
            height: 200px;  
            overflow: hidden;
        }

        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

         
        .product-card:hover .product-img-wrapper img {
            transform: scale(1.05);
        }

        .card-body {
            padding: 20px;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        /* --- Button Styling --- */
        .btn-read-more {
            background-color: #ffcccc;  
            color: var(--brand-red); 
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 6px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-read-more:hover {
            background-color: var(--brand-red);
            color: #fff;  
            box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
        }

         
        @media (max-width: 991px) {
            .overlap-container {
                margin-top: -60px;  
            }
        }



        /*=============================== client logo css ============================== */
              
.trusted-by-section {
  background-color: #f7f7f7;
  padding: 3rem 0;
}

.trusted-by-section h2 {
   
  color: var(--brand-blue);
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.logo-scroller-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.logo-scroller-container:hover .logo-scroller-inner {
  animation-play-state: paused;
}

.logo-scroller-inner {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.logo-scroller-inner img {
  max-height: 90px;
  width: auto;
  margin: 0 2.5rem;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (max-width: 767px) {
  .logo-scroller-inner img {
    max-height: 50px;
    width: auto;
    margin: 0 2.5rem;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

.logo-scroller-inner img:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 1rem 0;
  }
  .trusted-by-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .logo-scroller-inner img {
    max-height: 30px;
    margin: 0 1.5rem;
  }
}





/* flot icon  */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 15px;
    font-size: 26px;
  }
}






/* --- Section Padding --- */
        .video-image-section {
            padding: 60px 0;
            background-color: #fff;
        }

        
        .video-wrapper, .image-hover-wrapper {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;  
        }

        
        .image-hover-wrapper {
            position: relative;
             
            min-height: 300px; 
        }

        .image-hover-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            transition: transform 0.5s ease;
        }

        
        .image-hover-wrapper:hover img {
            transform: scale(1.03);
        }

     
        .overlay-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;  
            justify-content: center;  
            pointer-events: none; 
        }

         
        .overlay-heading-strip {
            background-color: #e73c3e;  
            color: #ffffff;
            padding: 15px 25px;
            text-align: center;
            width: 85%;  
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            
           
            opacity: 0;
            visibility: hidden;
            
            transform: translateY(-250%); 
            
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
        }

         
        .image-hover-wrapper:hover .overlay-heading-strip {
            opacity: 1;
            visibility: visible;
            
            transform: translateY(0); 
        }

        
        @media (min-width: 992px) {
             .row.match-height {
                display: flex;
                flex-wrap: wrap;
             }
             .row.match-height > [class*='col-'] {
                 display: flex;
                 flex-direction: column;
             }
             .video-wrapper, .image-hover-wrapper {
                 flex-grow: 1;
             }
        }








/* ==================== Footer section ============================ */


        /* --- Newsletter Section --- */
        .newsletter-section {
            background-color: var(--newsletter-bg);
            padding: 50px 0;
            position: relative;
        }

        .newsletter-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .newsletter-desc {
            color: #666;
            margin-bottom: 0;
        }

        .subscribe-form .form-control {
            height: 50px;
            border-radius: 30px 0 0 30px;  
            border: 1px solid #ddd;
            padding-left: 20px;
        }

        .subscribe-form .btn-subscribe {
            background-color: var(--brand-red);
            color: white;
            border-radius: 0 30px 30px 0; 
            padding: 0 30px;
            font-weight: 600;
            border: none;
            transition: background 0.3s;
        }

        .subscribe-form .btn-subscribe:hover {
            background-color: #5a1212;
        }

        
        .footer-section {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding-top: 70px;
            /* padding-bottom: 30px; */
            font-size: 15px;
        }

        .footer-logo {
            max-width: 180px;
            margin-bottom: 20px;
            background: white;  
            padding: 5px;
            border-radius: 5px;
        }

        .footer-about-text {
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-heading {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

       
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--brand-green);
        }

       
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--footer-text);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--brand-green);
            padding-left: 8px; 
        }

        /* Contact Info */
        .contact-info-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .contact-info-item i {
            color: var(--brand-green);
            font-size: 18px;
            margin-right: 15px;
            margin-top: 3px;
        }

       
        .social-links {
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--brand-red);
            transform: translateY(-3px);
        }

        
        .copyright-area {
            background-color: #000;
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid #222;
        }

        .copyright-text {
            color: #888;
            font-size: 14px;
        }

        .designer-text {
            text-align: right;
            color: #888;
            font-size: 14px;
        }

        .designer-text a {
            color: var(--brand-green);
            text-decoration: none;
            font-weight: 600;
        }

       
        @media (max-width: 768px) {
            .subscribe-form {
                margin-top: 20px;
            }
            .designer-text {
                text-align: center;    
                margin-top: 10px;
            }
            .copyright-text {
                text-align: center;
            }
        }








        /* ====================== sitemap section css ============================= */
        
        .sitemap-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
            color: #333;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        
        .location-btn {
            display: block;
            width: 100%;
            padding: 15px 10px;
            text-align: center;
            border: 1px solid var(--brand-red);
            background-color: #f8f9fa; 
            color: #333;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            position: relative;  
            overflow: hidden; 
            z-index: 1;
            transition: color 0.4s ease-in-out;  
            border-radius: 5px;
        }

       
        .location-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 0%;  
            background-color: var(--brand-green);  
            z-index: -1;  
            transition: width 0.4s ease-in-out;  
        }

         
        .location-btn:hover::before {
            width: 100%; 
        }

        .location-btn:hover {
            color: #fff;  
            border-color: #2d8a32;
        }

        
        @media (max-width: 768px) {
            .location-btn {
                margin-bottom: 10px;
            }
        }






        /* --- Breadcrumb Section Styling --- */

        
        .breadcrumb-section {
            
            background-image: url('https://www.naturaldehydration.com/images/slider3.jpg');  
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 150px 0 80px 0;  
            text-align: center;
            color: #ffffff;
        }

       
        .breadcrumb-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);  
            z-index: 1;
        }

        .breadcrumb-content {
            position: relative;
            z-index: 2;  
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: capitalize;
        }

         
        .breadcrumb {
            justify-content: center;  
            background-color: transparent;
            padding: 0;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #ffffff;  
        }

        .breadcrumb-item a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-item a:hover {
            color: #2d8a32;  
        }

        .breadcrumb-item.active {
            color: #2d8a32;  
            font-weight: 600;
        }

       
        @media (max-width: 768px) {
            .breadcrumb-section {
                padding: 120px 0 60px 0;
            }
            .page-title {
                font-size: 2rem;
            }
        }





        /* ======================= contact section css ============================= */

        
        
        .contact-page-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }

        .section-para {
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
        }

        
        .contact-info-item2 {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .contact-info-item2:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateY(-5px);
            border-color: transparent;
        }

       
        .icon-box {
            width: 60px;
            height: 60px;
            background-color: rgba(45, 138, 50, 0.1); 
            color: var(--brand-green);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            margin-right: 20px;
            transition: all 0.4s ease;
            flex-shrink: 0;  
        }

        
        .contact-info-item2:hover .icon-box {
            background-color: var(--brand-red);
            color: #fff;
            transform: rotate(360deg);
        }

        .info-content h5 {
            font-weight: 700;
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 5px;
        }

        .info-content p {
            color: #666;
            margin: 0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

      
        .contact-form-wrapper {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-top: 5px solid var(--brand-green);
        }

        .form-control {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #ddd;
            padding-left: 15px;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        textarea.form-control {
            height: 150px;
            padding-top: 15px;
        }

        
        .form-control:focus {
            border-color: var(--brand-green);
            box-shadow: 0 0 0 0.2rem rgba(45, 138, 50, 0.15);
        }

       
        .btn-send {
            background-color: var(--brand-red);
            color: white;
            padding: 12px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            border: 2px solid var(--brand-red);
            transition: all 0.3s ease;
            width: 100%;  
        }

        .btn-send:hover {
            background-color: white;
            color: var(--brand-red);
            border: 1px solid var(--brand-red);
        }

        
        @media (min-width: 992px) {
            .btn-send {
                width: auto; 
            }
        }

        @media (max-width: 768px) {
            .contact-form-wrapper {
                padding: 25px;
                margin-top: 30px;
            }
            .section-title {
                font-size: 2rem;
            }
        }
		
		
		
		.owl-carousel .item {
				height: 600px;
				position: relative;
				overflow: hidden;
			}

			.slide-image {
				width: 100%;
				height: 100%;
				object-fit: cover;
				position: absolute;
				top: 0;
				left: 0;
				z-index: 0;
			}

			.slide-overlay {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				/*background: rgba(0, 0, 0, 0.6);*/
				z-index: 1;
			}

			.carousel-content {
				position: absolute;
				top: 50%;
				left: 10%;
				transform: translateY(-50%);
				color: white;
				max-width: 600px;
				z-index: 2;
			}

			.carousel-content .carousel-heading {
				font-size: 3.5rem;
				font-weight: bold;
				margin-bottom: 20px;
				line-height: 1.2;
			}

			.carousel-content .highlight {
				color: #52c234;
				display: block;
			}

			.carousel-content p {
				font-size: 1.2rem;
				margin-bottom: 30px;
				line-height: 1.6;
			}

			.btn-custom {
				background-color: #8B2635;
				color: white;
				padding: 15px 40px;
				font-size: 1.1rem;
				border: none;
				border-radius: 50px;
				text-transform: uppercase;
				font-weight: 600;
				letter-spacing: 1px;
				transition: all 0.3s ease;
			}

			.btn-custom:hover {
				background-color: #6d1e2a;
				transform: translateY(-2px);
				box-shadow: 0 5px 15px rgba(139, 38, 53, 0.4);
			}

			/* Owl Carousel Navigation */
			.owl-nav button {
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				background: rgba(255, 255, 255, 0.2) !important;
				color: white !important;
				font-size: 40px !important;
				width: 60px;
				height: 60px;
				border-radius: 50%;
				transition: all 0.3s ease;
			}

			.owl-nav button:hover {
				background: rgba(255, 255, 255, 0.4) !important;
			}

			.owl-nav .owl-prev {
				left: 20px;
			}

			.owl-nav .owl-next {
				right: 20px;
			}

			.owl-dots {
				position: absolute;
				bottom: 30px;
				left: 50%;
				transform: translateX(-50%);
			}

			.owl-dot {
				display: inline-block;
				width: 12px;
				height: 12px;
				background: rgba(255, 255, 255, 0.5) !important;
				margin: 0 5px;
				border-radius: 50%;
				transition: all 0.3s ease;
			}
			
			.owl-theme .owl-dots .owl-dot span{
				height:0;
			}
			.owl-dot.active {
				background: white !important;
				width: 30px;
				border-radius: 10px;
			}

			@media (max-width: 768px) {
				.owl-carousel .item {
					height: 500px;
				}

				.carousel-content {
					left: 5%;
					max-width: 90%;
				}

				.carousel-content .carousel-heading {
					font-size: 1rem;
				}

				.carousel-content p {
					font-size: 1rem;
				}

				.btn-custom {
					padding: 8px 16px;
					font-size: 8px;
				}
				.carousel-content p{
					display:none;
				 } 
				.slide-image{
					height:auto;
				}
				.owl-carousel .item{
					height:200px;
				}
				.owl-nav button {
					font-size:20px !important;
					width:25px;
					height:40px;
					top:40%;
				}
				.owl-nav{
					display:none;
				}
			}
			
			table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody tr td {
    padding: 11px 14px;
    font-size: 12px;
    line-height: 1.6;
}

table tbody tr td:first-child {
    font-weight: 600;
    color: #333;
    background-color: #f5f5f5;
    width: 35%;
    vertical-align: top;
}

table tbody tr td:last-child {
    color: #555;
    background-color: #fff;
    width: 65%;
}

/* Alternating row colors (optional enhancement) */
table tbody tr:nth-child(even) td:first-child {
    background-color: #ebebeb;
}

/* Responsive design */
@media (max-width: 768px) {
    table tbody tr td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    table tbody tr td:first-child {
        width: 40%;
    }
    
    table tbody tr td:last-child {
        width: 60%;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 13px;
    }
    
    table tbody tr td {
        padding: 10px 12px;
    }
    
    table tbody tr td:first-child,
    table tbody tr td:last-child {
        width: 50%;
    }
}