/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: Georgia, serif;

}

body {
    background-color: #f5f5f5;
    


}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 0px 48px;
    color: #fff;
    position: relative;
    background: white;
}

.logo a {
    text-decoration: none;
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
}
.logo img {
    width: 190px;
    height: auto; 
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    transition: max-height 0.3s ease-in;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 41px;
    display: block;
    
}

.nav-links a:hover {
    color: #3c8f58;
    text-decoration: none;
    font-weight: bold;


   
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    background-color: #3c8f58;
    list-style: none;
    padding: 0;
    border-radius: 4px;
    min-width: 200px;
    z-index: 100;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: white;
    font-weight: 100;
}

.hero-slider-content span{
    color: #3c8f58;
}

.dropdown-menu li a:hover{
   color: black;
   font-weight: 100;
   text-decoration: none;

}

/* Desktop hover dropdown */
@media screen and (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Quote button */
.quote-btn {
    background-color: #ff6600;
    border-radius: 4px;
}

.quote-btn:hover {
    background-color: #e65c00;
}

/* Search input */
.search-icon {
    display: flex;
    align-items: center;
}

#search-input {
    padding: 5px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

#search-btn {
    padding: 5px 8px;
    border: none;
    background-color: #3c8f58;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Burger menu for mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
   background-color: #282424;
    margin: 5px;
    transition: all 0.3s;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #3c8f58;
        max-height: 0;
        overflow: hidden;
    }

    .nav-links.nav-active {
        max-height: 500px; /* enough for all links */
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        display: none;
    }

    .burger {
        display: block;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

        .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}


/* for section one and slider */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.cards-grid img{
    height: 98px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    filter: drop-shadow(2px 4px 6px black);
}


/* Hero text */
.hero-slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero-slider-content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    font-family: futura_ltbook !important;
    position: relative;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-slider-content p {
        color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 20px;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
    background: linear-gradient(200deg, #409cc7 0%, rgba(242, 242, 242, 0.00) 100%);
    margin-bottom: 25px;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 14px 36px;
    color:white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 16px;
    overflow: hidden;
    background: #3c8f58;
    transition: color 0.4s ease, border-color 0.4s ease;
}

/* .hero-btn::before{
       content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ff5100; 
    transition: all 0.4s ease;
    z-index:1;
    color: #fff;
} */

.hero-btn:hover::before {
    left: 0;

    
  }

  .hero-btn:hover{
    color: black;
  }

/* Buttons */
.hero-prev-btn,
.hero-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 30px;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-prev-btn:hover,
.hero-next-btn:hover {
    background: #fff;
}

.hero-prev-btn {
    left: 20px;
}

.hero-next-btn {
    right: 20px;
}

/* Why choose us  */

/* Section layout */
.why-section{
  background-color: #f2f7fa;
  padding:48px 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
}

.idk{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
}

/* Header */
.why-header{
  text-align:center;
  margin-bottom:28px;
}
.why-header h2{
  font-size:28px;
  margin-bottom:8px;
  letter-spacing:0.2px;
      color: black;
    font-size: 45px;
    font-family: 'futura_ltbook' !important;
    margin: 0px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
}
.why-header p{
  color:#484848;
  font-size:15px;
  max-width:780px;
  margin:0 auto;
  line-height: 1.5;
}


/* Cards grid */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:var(--gap);
  align-items:stretch;
  margin-top:18px;
}

/* Card style */
.card{
  background:var(--card-bg);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:12px;
  transition:transform .26s ease, box-shadow .26s ease;
  min-height:220px;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(11,107,143,0.12);
}
.card-icon{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,rgba(11,107,143,0.08),rgba(11,107,143,0.03));
  border-radius:10px;
  color:var(--accent);
}
.card h3{
  font-size:18px;
  margin-top:6px;
      line-height: 4;
      font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Poppins !important;
    height: 30px;
    color: white;
}

.card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  margin-top:auto; 
      z-index: 1;
    opacity: 1;
    font-size: 17px;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    color: #f0f6f9;
}

.for-cc{
    background: #3c8f58;
    width: 300px;
        height: 328px;
        border-radius: 22px;
}

/* Responsive breakpoints */
@media (max-width:1100px){
  .cards-grid{ grid-template-columns:repeat(2,1fr);
    gap: 10px;
 }
}
@media (max-width:600px){
  .why-header h2{ font-size:22px; }
  .cards-grid{ grid-template-columns:1fr; }
  .card{ min-height:170px; padding:18px; }
  .card-icon{ width:52px; height:52px; }
}

/* Small utility for accessible focus */
.card:focus-within{ outline:3px solid rgba(11,107,143,0.14); outline-offset:4px; }

/* for our products */

 .products-showcase {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .products-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .products-title h2 {
                font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    color: black;
    font-size: 45px;
    font-family: 'futura_ltbook' !important;
    margin: 0px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
        }

        /* .products-title h2::after {
            content: '';
            position: absolute;
         bottom: -93px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #007bff, #0056b3);
            border-radius: 2px;
        } */

        .product-slider-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .product-slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
            width: calc(100% + 30px); /* Gap compensation */
        }

        .product-card {
            flex: 0 0 320px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .product-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-overlay {
            position: absolute;

            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
           background: linear-gradient(135deg, rgba(60, 143, 88, 0.55), rgba(60, 143, 88, 0.85));

            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.4s ease;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-name-hover {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }

        .product-card:hover .product-name-hover {
            transform: translateY(0);
            opacity: 1;
        }

        .view-details-btn {
            background: white;
            color: #3c8f58;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .product-card:hover .view-details-btn {
            transform: translateY(0);
            opacity: 1;
        }

        .view-details-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .product-info {
            padding: 25px;
            text-align: center;
        }

        .product-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .product-desc {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #007bff;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.95);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #007bff;
            transition: all 0.3s ease;
            z-index: 20;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            user-select: none;
        }

        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            color: white;
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }

        .slider-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .prev-slide {
            left: -10px;
        }

        .next-slide {
            right: -10px;
        }

        @media (max-width: 768px) {
            .product-card {
                flex: 0 0 280px;
            }
            .product-slider-wrapper {
                gap: 20px;
            }
          .navbar{
            z-index: 1;
          }

          .nav-links{
            background-color: #3c8f58;
          }

          .logo img{
             width: 161px;

        
          }

          .hero-slider-content h1{
            font-size: 39px;
          }
          .hero-btn{
               padding: 5px 23px; 
          }

          .hero-prev-btn{
                font-size: x-large;
          }

          .hero-next-btn{

            font-size: x-large;
                
          }

          .why-header h2{
            font-size: 37px;
          }

          .for-cc{
            margin: 6px;
          }

          .products-showcase {
    padding: 0px 0px;

          }

          .products-title h2{
            font-size: 40px;
          }

          .product-name{
            font-size: 17px;
          }

          .reviews-container {

            text-align: center;
          }

          .heading{
            font-size: 34px;
          }

          .name{
            font-size: 18px;
          

        }

    }

        /* Reviews  */

        .reviews-container {
    max-width: 700px;
    margin: 0 auto;
  }
  .heading {
      font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    color: black;
    font-size: 45px;
    font-family: 'futura_ltbook' !important;
    margin: 0px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 3;
    text-align: center;
  }
  .review {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .review:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  .name {
    font-weight: 600;
    font-size: 1.2em;
    color: #1a1a1a;
  }
  .stars {
    margin: 10px 0 15px;
    color: #ffb400;
    font-size: 1.25em;
  }
  .star {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg fill="%23ffb400" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 .587l3.668 7.431 8.2 1.192-5.934 5.78 1.4 8.178L12 18.896l-7.334 3.852 1.4-8.178-5.933-5.78 8.2-1.192z"/></svg>') no-repeat center;
    background-size: contain;
  }
  .star.empty {
    filter: grayscale(100%) brightness(70%);
  }
  .text {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
  }

  /* Footer  */

  
.footer {
    position: relative;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    margin-top: 50px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: rgb(255 255 255 / 85%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    max-width: 211px;
    height: auto;
   
}

.footer-services h3,
.footer-contact h3 {
    color: black;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.footer-contact .contact-item{
    color: black;
    display: flow;


}
.footer-contact{
        text-align: -webkit-center;
}

.footer-services ul {
    list-style: none;
    padding: initial;
}

.footer-services ul li {
    margin-bottom: 12px;
}

.footer-services ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover {
    color: #3c8f58;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ddd;
    font-size: 16px;
}

.contact-item i {
    width: 30px;
    color: #4CAF50;
    font-size: 20px;
    margin-right: 12px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    background: white;
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-size: 14px;
}

.footer-bottom p{
    color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .footer-logo img {
        max-width: 140px;
        margin: 0 auto;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        background-attachment: scroll;
    }
}

/* ABOUT SECTION */
/* About Us Section */
.about-us-section {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Header Image with Center Heading */
.about-header {
  position: relative;
  width: 100%;
}

.about-header img {
  width: 100%;
  height: auto;
  display: block;
}

.about-header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 46px;
    color: #ffffff;
    background: #3c8f58;
    font-family: 'futura_ltbook' !important
}

/* Two-column layout */
.about-content {
  display: flex;
  flex-wrap: wrap;  /* Responsive layout */
  padding: 60px 10%;
  align-items: center;
  gap: 40px;
  background-color: #f9f9f9;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h2 {
letter-spacing: 0.2px;
    color: black;
    font: size 30px;
    font-family: 'futura_ltbook' !important;
    margin: 0px;
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
  
}

.about-left p {
  font-size: 16px;
   margin-bottom: 20px;
  color: #333;
  opacity: 0;
  animation: fadeIn 2s forwards;
  line-height: 1.5;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.about-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-right img {
   width: 100%;
 max-width: 508px;
    height: 556px;
  border-radius: 10px;
  opacity: 0;
  animation: imageFadeIn 2s forwards;
}

@keyframes imageFadeIn {
  to {
    opacity: 1;
  }
}

/* Service one css  */

.brand-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
/* .brand-hero-section {
   background-image: url(Images/bsb.png);
   background-size: cover;    
  background-position: center; 
  background-repeat: no-repeat;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
} */

.brand-hero-section {
    background-image: linear-gradient(rgb(155 149 149 / 45%), rgba(0, 0, 0, 0.45)), url(Images/bsb.png);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}






.brand-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: #3c8f58;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-hero-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brand-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.brand-btn-primary {
    background: linear-gradient(135deg, #5ab27b 0%, #2f7447 100%);

    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.brand-btn-primary:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.brand-btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.brand-btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Content Sections */
.brand-main-content {
    display: grid;
    gap: 40px;
}

.brand-intro-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.brand-intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.brand-services-section,
.brand-benefits-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.brand-services-title,
.brand-benefits-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.brand-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.brand-service-card {
    padding: 25px;
    border-radius: 10px;
    background: #f8f9ff;
    border-left: 4px solid #3c8f58;
    transition: all 0.3s ease;
}

.brand-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.brand-service-card.brand-service-full {
    grid-column: 1 / -1;
   background: linear-gradient(135deg, #57b278 0%, #2f6f47 100%);

    color: white;
    border-left-color: #fff;
}

.brand-service-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: inherit;
}

.brand-service-desc {
    color: inherit;
    opacity: 0.9;
}

.brand-service-card.brand-service-full .brand-service-name {
    font-size: 1.4rem;
}

/* Benefits Section */
.brand-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.brand-benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.brand-benefit-title {
    display: block;
    font-size: 1.2rem;
    color: #3c8f58;
    margin-bottom: 10px;
    font-weight: 700;
}

.brand-benefit-text {
    color: #666;
}

/* CTA Section */
.brand-cta-section {
   background: linear-gradient(135deg, #58b77b 0%, #2e6c46 100%);

    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.brand-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.brand-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.brand-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-container {
        padding: 15px;
    }
    
    .brand-hero-section {
        padding: 30px 20px;
    }
    
    .brand-hero-title {
        font-size: 2rem;
    }
    
    .brand-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-main-content {
        gap: 25px;
    }
    
    .brand-services-section,
    .brand-benefits-section,
    .brand-intro-section {
        padding: 30px 25px;
    }
    
    .brand-cta-section {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .brand-hero-title {
        font-size: 1.7rem;
    }
    
    .brand-services-grid {
        grid-template-columns: 1fr;
    }
}

.meta-m{
        background-image: linear-gradient(rgb(155 149 149 / 45%), rgba(0, 0, 0, 0.45)), url(Images/Ads.PNG);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    
}

.cc-s{
        background-image: linear-gradient(rgb(155 149 149 / 45%), rgba(0, 0, 0, 0.45)), url(Images/ccc.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    
}

.smm-m{

        background-image: linear-gradient(rgb(155 149 149 / 45%), rgba(0, 0, 0, 0.45)), url(Images/smms.PNG);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.lg-m{
        background-image: linear-gradient(rgb(155 149 149 / 45%), rgba(0, 0, 0, 0.45)), url(Images/lgg.png);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

/* Contact us  */


.contactHero {
    background-image: linear-gradient(rgb(155 149 149 / 45%), rgba(0, 0, 0, 0.45)), url(Images/cu.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.contactHeroBox .contactTitle {
        text-transform: uppercase;
    font-weight: 800;
    font-size: 46px;
    color: #ffffff;
    background: #3c8f58;
    font-family: 'futura_ltbook' !important;
}

/* INTRO SECTION */
.contactIntro {
    text-align: center;
    padding: 60px 20px;
}

.introHeading {
    color: #3c8f58;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    padding: 10px 0px;
    margin: 10px 0px;
    text-transform: capitalize;
}

.introText {
    font-size: 18px;
    margin-top: 10px;
}

/* FORM SECTION */
.formWrapper {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
}

.contactFormBox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formMainHeading {
    text-align: center;
}

.contactFormBox input,
.contactFormBox textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contactFormBox textarea {
    height: 150px;
}

.submitBtn {
    padding: 15px;
    font-size: 18px;
    border: none;
    background: #3c8f58;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.submitBtn:hover {
    background: #2f6a43;
}


@media (max-width: 768px) {
    .contactTitle {
        font-size: 45px;
    }
}

/* Responsive all  */

@media (max-width: 320px) {

    .contactHeroBox .contactTitle {

        font-size: 20px;
    }


        .brand-hero-title {
        font-size: 19px;
    }
.brand-hero-subtitle {
    font-size: 19px;
}

.brand-btn-primary{
    padding: 5px 14px;
    font-size: 12px;
}

.brand-intro-text {
    font-size: 15px;
}
.brand-services-title, .brand-benefits-title {
    font-size: 22px;

}


.brand-service-name {
    font-size: 17px;
}

.brand-service-desc {
    color: inherit;
    opacity: 0.9;
    font-size: 12px;

}


.brand-cta-content h2 {
    font-size: 20px;

}

.brand-cta-text {
    font-size: 17px;

}







    .about-header h1{
        font-size: 22px;
    }

    .about-left h2{

        font-size: 18px;
    }

    .about-left p {
    font-size: 12px;

    }

    .about-right img {
    width: 78%;
    }

    .about-content{
        padding: 2px 10%;

    }

    .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 0px 48px;
    color: #fff;
    position: relative;
    background: white;
    z-index: 1;
}

.logo img {
    width: 94px;
    height: auto;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 12px;
    padding: 8px 41px;
    display: block;
}

.hero-slider-content h1 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    font-family: futura_ltbook !important;
    position: relative;
    text-transform: uppercase;
     display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .burger {
        display: block;
        width: 0px;
    }

.hero-slider-content p {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 20px;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
    background: linear-gradient(200deg, #409cc7 0%, rgba(242, 242, 242, 0.00) 100%);
  margin-bottom: 10px;
  height: 80px;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 0px 24px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 16px;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
   
}
.hero-prev-btn {
    left: 9px;
    font-size: small;
}

.hero-next-btn {
    right: 20px;
    font-size: small;
}

    .nav-links li {
        margin: 7px 0;
        text-align: center;
    }

    #search-input {
    padding: 1px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
  font-size: 10px;
}

#search-btn {
   padding: 0px 5px;
        border: none;
        background-color: #ffffff;
        color: #fff;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        height: 17px;
}

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #3c8f58;
        max-height: 0;
        overflow: hidden;
    }
    .hero-btn {
        font-size: 11px;

    }

        .why-header h2 {
        font-size: 24px;
    }

    .why-header p {
    color: #484848;
    font-size: 13px;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.5;
}

.card h3 {
    font-size: 14px;
}

.card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    z-index: 1;
    opacity: 1;
    margin-top: 10px;
    font-size: 15px;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    color: #f0f6f9;
}

    .card {
        min-height: 170px;
        padding: 36px;
        margin: 1px;
    }
    .idk {

    padding: 0 0px;
}

    .products-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    color: black;
    font-size: 25px;
    font-family: 'futura_ltbook' !important;
    margin: 0px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
}


.heading {
    font-size: 21px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    color: #e09230;


}

.name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}
.text {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
}

.star {
    display: inline-block;
    width: 16px;
    height: 20px;
    background-size: contain;

}

.reviews-container {
    max-width: 699px;
    margin: 0 auto;
    text-align: center;
}

.footer-services h3, .footer-contact h3 {
    font-size: 17px;
}

.product-name{
    font-size: 15px;
}

.products-showcase{
    padding: 2px 0px;
}



}

@media (max-width: 425px) {

.logo img {
    width: 112px;
    height: auto;
}

.about-header h1{

    font-size: 36px;

}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 0px 48px;
    color: #fff;
    position: relative;
    background: white;
    z-index: 1;
}

 .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #3c8f58;
        max-height: 0;
        overflow: hidden;
    }

    .nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 12px;
    padding: 8px 41px;
    display: block;
}

    #search-input {
    padding: 1px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
  font-size: 10px;
}

.products-showcase{
    padding: 2px 0px;
}


#search-btn {
   padding: 0px 5px;
        border: none;
        background-color: #ffffff;
        color: #fff;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        height: 17px;
}

    .card {
        min-height: 170px;
        padding: 18px;
        margin: 7px;
    }

        .cards-grid {
        grid-template-columns: 1fr;
        display: flex;
        gap: 12px;
        flex-direction: column;
        
    }
.hero-slider-content h1 {
    color: #fff;
    font-size: 19px;


}

.hero-slider-content p {
    color: #fff;
    font-size: 15px;

}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 8px 28px;
    color: white;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid white;
    

}

.products-title h2::after {
    content: '';
    position: absolute;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;

}

.hero-prev-btn {
    left: 20px;
    font-size: medium;
}

.hero-next-btn{
    font-size: medium;
}

.products-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    color: black;
    font-size: 28px;

}

.heading{
    font-size: 21px;
}

.reviews-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.text{

    font-size: 12px;
}
.product-name{
    font-size: 15px;
}


.footer-services h3{

    font-size: 17px;


}


}


@media (max-width: 1024px) {



    .nav-links a {
                padding: 0px 8px;

        margin-left: -6px;
        color: black;
    }

    .for-cc{
            margin: 0px
    }

    .products-showcase {

        padding: 4px 0px;
    }

}


@media (max-width: 375px) {

    .about-header h1{
        font-size: 26px;
    }

    .about-left h2{
        font-size: 17px;
    }

    .about-left p {
    font-size: 12px;

    }

    .about-content{
        padding: 2px;
    }

    .about-right img{
        width: 83%;
        height: auto;
    }
}













