html {
  scroll-behavior: smooth;
}

body{
    font-family: "Poppins";
    overflow-x: hidden;
    background: #f5f5f5;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .container{
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  } 
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
   }
  
   a{
      text-decoration: none;
   }
  
   li{
      list-style: none;
   }
  .col-2{
    width: calc(50% - 10px);
    margin-right: 10px;
  }
  
  .col-3{
    width: calc(33.33% - 20px);
    margin-right: 20px;
  }
  
  .col-4{
    width: calc(25% - 10px);
    margin-right: 10px;
  }
  
  .col-5{
    width: calc(20% - 10px);
    margin-right: 10px;
  }
  /*----------------top-header--------------*/
   .top-header{
      background-color: #f39c12c2;
      padding-top: 10px;
      padding-bottom: 10px;
  }
  
  .top-header .top-left a{
      color: #000;
      margin-right: 10px;
      font-size: 14px;
  }
  .top-left{
      width: 50%; 
     display: flex;
    justify-content: flex-start;
  }
   
  .top-right{
      width: 50%; 
     display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .top-header .top-right a{
      color: #000;
      margin-right: 10px;
      font-size: 14px;
  }
  .top-header .top-right a:hover{
    color: rgb(11, 76, 225);
  }
  .top-header .top-right p{
      color: #ababab;
      margin-right: 10px;
      font-size: 14px;
  }
  .top-header .top-right button{
   background-color: #0093e6;
   border: transparent;
   padding: 5px;
  }
  .top-header .top-right button a{
    color: #fff;
    margin-right: 0px;
  }
  .main-nav .main-ul li button {
    background-color: #0093e6;
    border: transparent;
    padding: 2px;
    border-radius: 8px;
  }
/*----------------------main-header------------------- */
  .main-header {
    width: 100%;
      position: absolute;
      top: 50px;
      z-index: 9999;
      padding: 10px 0;
    }
    
    .fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #f39c12; 
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 9999;
      transition: all 0.3s ease;
    }

    .nav-bar {
      display: flex;
      align-items: center;
    }
    .logo-container{
      z-index: 999;
    }
    
    .main-nav{
      width: 62%;
    }
    
    .nav-bar .logo-container {
      display: flex;
      justify-content: center;
    }
    
    .logo {
      border-radius: 50%;
      width: 80px;
      height: 80px;
      z-index: 999;
      box-shadow: rgb(241 222 222 / 67%) 0px 3px 8px;
      background-color: #fff;
    }
    
    .main-nav .main-ul{
      list-style-type: none;
      display: flex;
      margin: 0;
      padding: 0;
    }
    
    .main-nav ul li {
      position: relative;
      margin: 0 15px;
    }
    
    .main-nav ul li a {
      display: flex;
      align-items: center;
      color: #fff;
      text-decoration: none;
      padding: 10px;
      font-size: 14px;
      text-transform: uppercase;
    }
    .main-nav ul li a i{
      color: #fff;
      margin-left: 5px;
      font-size: 13px;
    }
    
    .main-nav ul li a:hover {
      border-radius: 5px;
      background-color: #f39c12c2;
  }
  
  .main-nav ul li a::after {
      content: ''; 
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #f39c12; 
      transform: scaleX(0); 
      transform-origin: bottom right;
      transition: transform 0.3s ease; 
  }
  
  .main-nav ul li a:hover::after {
      transform: scaleX(1); 
      transform-origin: bottom left; /
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    min-width: 160px;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
 
  .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  
  .dropdown-menu li {
    list-style: none;
    text-align: left;
  }
  
  .dropdown-menu li a {
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
  }
  
  .main-nav .dropdown .dropdown-menu li a{
    margin-bottom: 5px;
  }
  /* ---------dropdown- submenu----Hide submenus initially------ */
.dropdown-submenu .submenu {
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #333;
  min-width: 180px;
  padding: 10px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

/* Show submenu on hover */
.dropdown-submenu:hover .submenu {
  visibility: visible !important;
  opacity: 1 !important;
  display: block;
}

/* Submenu links style */
.dropdown-submenu .submenu li a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-submenu .submenu li a:hover {
  background-color: #f39c12c2;
}
 
  /*------menu-toggle-----*/
  .menu-toggle{
    display: none;
  }

/*--------banner-video----------------*/

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6); /* slightly darken video for better text visibility */
}
.hero-section::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 59%); 
  z-index: 1; 
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-content .btn {
  background-color: #f3912c;
  color: white;
  padding: 12px 30px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.hero-content .btn:hover {
  background-color: #000;
} 
 
  /* -------------products------------- */
   .product-category-section {
    padding: 50px 30px;
    background: #f5f5f5;
    text-align: center;
  }
  
  .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .section-title span {
    color: #f39c12c2;
  }
  
  .product-slider {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-item {
    width: 80% !important;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    margin: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
  }
  
  .product-item:hover {
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  }
  
  .product-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .product-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
  }
  /*------produvt-range----------------*/

  .products-section {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  .slick-prev:before, 
  .slick-next:before {
  color: #f3912c; 
}
  .product-card {
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f1f1f1;
  }
  
  .product-name {
    background-color: #f39c12c2;
    color: #000;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: bold;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
   .product-name a{
    color: #000;
   }
  /* -----------------download ----------brochure-----#795548------#4f362d- */
  .brochure-section {
    background-color: #0093e6;
    padding: 30px 0;
  }
  
  .brochure-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  
  .brochure-logo img {
    max-width: 150px;
    height: auto;
  }
  
  .brochure-text {
    flex: 1;
    padding: 0 20px;
    color: #fff;
    text-align: left;
  }
  
  .brochure-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .brochure-text p {
    font-size: 16px;
  }
  
  .brochure-button .download-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .brochure-button .download-btn:hover {
    background: #fff;
    color: #f9733b;
  }

/*------------------------footer---------*/

.footer {
  background-color: #f39c12c2;
  padding: 50px 8%; 
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: rgb(241 222 222 / 67%) 0px 3px 8px;
  background-color: #fff;
}

.footer-logo p {
  margin: 10px 0;
  color: #bbb;
}

.footer-contact {
  margin-top: 15px;
}

.footer-contact div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #000;
}

.footer-contact i {
  color: #000;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  margin: 0 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
  margin-left: 40px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #0a3965;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
  color: #777;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #0a3965;
}

.social-icons {
  display: flex;
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #0a3965;
}
/* -----------counter--section---------- */

.counter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.counter-box {
  background: #fff;
  padding: 40px 20px;
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
}

.counter-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0px;
}

.counter-number {
  font-size: 36px;
  color:#f39c12c2;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.counter-box p {
  font-size: 18px;
  color: #555;
}
.counter-number::after {
  content: "+";
  margin-left: 2px;
  font-size: 28px;
  color: #f39c12c2;
}
/* ---------testimonial------------------------ */

 .testimonial h2{
  margin-top: 0px;
  text-align: center;
 }
  .testimonial iframe{
  width: 100%;
  height: 350px;
  border-radius: 30px;
 } 

/* --------------products page ---------------------- */
/* .banner-main{
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
}
.banner-main img{
  width: 100%;
}
.banner-main::before{
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 49%); 
  z-index: 1; 
} */
/* .comman-banner{
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; 
  height: 60vh;
}

.comman-banner:before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
}


.content-comm{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.content-comm h2{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
.content-comm h1{
  margin-top: 10px;
  font-size: 35px;
  color: #fff;
}
.content-comm p{
  font-size: 20px;
  color: #fff;
  text-align: center;
} */
.comman-banner {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 1;
}

.content-comm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.content-comm h2 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-comm h1 {
  font-size: 35px;
  color: #fff;
  margin-top: 10px;
}

.content-comm p {
  font-size: 20px;
  color: #fff;
}

/* -------------about page----------------- */
.product-section {
  padding: 40px 20px;
  background: #fff;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.product-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: contain;
}

.product-details {
  flex: 1;
}

.product-details h2 {
  font-size: 32px;
  color: #f39c12;
  margin-bottom: 10px;
  margin-top: 0px;
}

.price {
  font-size: 28px;
  color: #f58634;
  margin: 10px 0;
}

.price span {
  font-size: 18px;
  color: #666;
}

.description {
  margin-top: 15px;
  font-size: 16px;
  color: #444;
}

.quantity-add-cart {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid #23408e;
  border-radius: 30px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  padding: 10px 16px;
  font-size: 20px;
  color: #23408e;
  cursor: pointer;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 18px;
}

.add-to-cart-btn {
  background: #23408e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.add-to-cart-btn a{
  color: #fff;
}
.action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.download-brochure, .buy-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.download-brochure {
  background-color: #f39c12;
  color: #fff;
}

.buy-whatsapp {
  background: #25d366;
  color: #fff;
}

/* Icon styling if you have icons */
.icon-download::before {
  content: "⬇️";
}

/* ----havemore product page------------ */
.have-more .col-3{
  display: flex;
  align-items: center;
  justify-self: center;
}

.have-more{
  padding-bottom: 50px;
}
.have-more h2{
  text-align: center;
  font-size: 30px;
  color: #f39c12;
}
.have-more p{

  text-align: center;
  font-size: 30px;
  color: #333;
  font-weight: 500;
}

.have-more .content-add a {
  color: #333;
  text-decoration: none;
  margin-top: 20px;
  margin-left: 10px;
}

.have-more .content-add p{
  font-size: 16px;
  font-weight: normal;
  margin-top: 5px;
  text-align: justify;
  margin-left: 10px;
  margin-bottom: 0px;
}

/* -------specification------------------ */

.specifications-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}
.specifications-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}
.specifications-section h2 span {
  color: #f39c12;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table th, .specs-table td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  color: #000;
}
.specs-table th {
  background-color: #1d3e67;
  color: white;
  width: 30%;
  font-weight: 600;
}
.specs-table td {
   background-color: #f39c12c2;
}
/*--------faq--*/
.faq-section {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.faq-section h2 {
  font-size: 32px;
  color: #22002b;
  margin-bottom: 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  font-size: 18px;
  color: #690030;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question::after {
  content: "▼";
  float: right;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px;
  font-size: 16px;
  color: #333;
  border-top: 1px solid #eee;
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question:hover {
  background-color: #f9f9f9;
}
/* ----------popup-- Popup Overlay ---*/
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    /* Popup Content */
    .popup-box {
      background: #fff;
      padding: 30px 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 450px;
      text-align: center;
      position: relative;
      animation: fadeIn 0.4s ease;
    }

    /* Close Button */
    .popup-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #555;
    }

    /* Title */
    .popup-box h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #000;
    }

    /* Subtitle */
    .popup-box p {
      font-size: 16px;
      color: #555;
      margin-bottom: 20px;
    }

    /* Input */
    .popup-box input[type="tel"] {
      width: 92%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }
    .popup-box input[type="text"] {
      width: 92%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    /* Claim Button */
    .popup-box button.popup-button {
      width: 100%;
      padding: 12px 15px;
      background: #f4a701;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .popup-box button.popup-button:hover {
      background: #003ca3;
    }

    /* No Thanks Link */
    .popup-box .no-thanks {
      display: block;
      margin-top: 15px;
      font-size: 14px;
      color: #0050d5;
      text-decoration: underline;
      cursor: pointer;
    }

    /* Small Text */
    .popup-box small {
      display: block;
      margin-top: 15px;
      font-size: 12px;
      color: #777;
    }

    /* Fade animation */
    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.9);}
      to {opacity: 1; transform: scale(1);}
    }

/* ----------key features----------- */
.product-video iframe{
  width: 100%;
  height: 50vh;
  border-radius: 30px;
}
.product-video h2{
  text-align: center;
}
.modern-features {
  padding: 30px 20px;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #f39c12c2;
  margin-bottom: 10px;
  margin-top: 10px;
}
.features-wrapper {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 20px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.feature-number {
  font-size: 28px;
  font-weight: 700;
  color: #f39c12c2;
  margin-right: 25px;
  flex-shrink: 0;
}
.feature-content h3 {
  font-size: 22px;
  margin: 0px;
  color: #000;
}
.feature-content p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin: 0px;
}
/* --------- */
.enquiry-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}
.enquiry-box {
  background-color: #f39c12;
  color: #000;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
}
.enquiry-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.enquiry-phone {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.enquiry-box p {
  margin-bottom: 20px;
  text-align: center;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 94%;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
}
.enquiry-form textarea {
  min-height: 120px;
  resize: vertical;
  border-radius: 20px;
}
.enquiry-btn {
  background-color: #243e73;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 25px;
}
.enquiry-btn:hover {
  background-color: #243e73;
}
/* --------form-contact--------- */
.form-reg .col-2 img{
  width: 100%;
  padding-top: 40px;
}

.form-reg iframe{
  width: 100%;
  height: 50vh;
}
/* --------read more hide button--------- */
.read-more-btn {
  background-color: #f39c12;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.read-more-btn:hover {
  background-color: #e69500;
}
.button-wrapper {
  text-align: center;
  margin-top: 15px;
}
.content-wrapper h2{
  text-align: center;
}
/* ---------about us ---------- */
.description h2{
  font-size: 30px;
  text-align: center;
   color: #f39c12;
}
.description p{
  text-align: justify;
}
.vision h2{
  font-size: 30px;
  text-align: center;
  color: #f39c12;
}
.vision .col-2 img{
  width: 100%;
  border-radius: 30px;
}
/* --------contact-about-us -----------------*/
 
.contact-section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.contact-container {
  display: flex;
  align-items: center;
  background-color: #f39c12c2;
  color: #000;
  padding: 20px 40px;
  border-radius: 10px;
}

/* Contact Info */
.contact-info-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}

.contact-info-2 p {
  font-size: 16px;
}

.contact-info-2 a {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

/* Circle 'or' */
.circle {
  width: 50px;
  height: 50px;
  background-color: white;
  color: #f3912c;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
/* ----------contact-form------------ */
.contact-form{
  max-width: 700px;
  background-color: #f39c12c2;
  margin: 0 auto;
  padding-bottom: 40px;
  border-radius: 30px;
  margin-bottom: 40px;
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  padding-top: 20px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-form input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 95%;
  font-size: 16px;
  background: #f6f6f6;
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.contact-form .checkbox input {
  width: auto;
  margin-right: 10px;
}
.contact-form textarea {
  height: 100px;
  margin-top: 10px;
}
/* ---------------whatsapp--------- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 20px;
  /* background-color: #25d366; */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px #999;
  z-index: 1000;
  animation: shake 3s infinite;
}

.whatsapp-float img {
  margin-top: 5px;
  width: 50px;
  height: 50px;
}

/* Shake Animation */
@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}


/* --------------------chatbot----------*/

#chatbot-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: linear-gradient(135deg, #f39c12, #f3912c);
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}
#chatbot-btn:hover {
  transform: scale(1.1);
}

/* Chatbot Container */
#chatbot-container {
  position: fixed;
  bottom: 150px;
  right: 60px;
  width: 420px;
  max-height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
  flex: 1;
}

/* Header */
#chatbot-header {
  background: linear-gradient(135deg, #f39c12, #f3912c);
  color: #fff;
  padding: 18px;
  font-size: 20px;
  text-align: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* Messages */
#chatbot-messages {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  background-color: #f0f4f8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bot, .user {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.6;
}
.bot {
  background: #e0f2f1;
  color: #f3912c;
  align-self: flex-start;
}
.user {
  background: linear-gradient(135deg, #f39c12, #f3912c);
  color: #fff;
  align-self: flex-end;
}

/* Options */
.option-btn {
  background-color: #f39c12;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin: 6px 6px 0 0;
  transition: background-color 0.3s;
}
.option-btn:hover {
  background-color: #003ca3;
}

/* Input Section */
#input-section {
  display: flex;
  border-top: 1px solid #ddd;
  background: #fff;
}
#user-input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
  font-size: 15px;
  border-bottom-left-radius: 18px;
}
#send-btn {
  padding: 14px;
  background-color: #f39c12;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-bottom-right-radius: 18px;
  transition: background-color 0.3s;
}
#send-btn:hover {
  background-color: #0050d5;
}

/* Scrollbar */
#chatbot-messages::-webkit-scrollbar {
  width: 6px;
}
#chatbot-messages::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
/* ----------10--second--form----------------- */
.time-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.time-popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.time-popup-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.time-popup-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}
/* --------4 images in product------ */
.slider-container {
  max-width: 600px;
  margin: auto;
}

.main-image {
  overflow: hidden;
  border-radius: 10px;
}

.main-image img {
  width: 100%;
  height: 50vh;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.main-image:hover img {
  transform: scale(1.1);
}

.thumbnail-row {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border 0.3s;
}

.thumb.active {
  border: 2px solid #00aaff;
}
/* ----------blog-page---------------- */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 30px;
}

.blog-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content h3 {
  margin-top: 0;
}
/* --------------- */
#google_translate_element {
  position: absolute;
  top: 10px;
  right: 17%;
  z-index: 1000;
}

/* ---------------------- */

.product-add-section h2{
 text-align: center;
}
.products-flex {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.product-card-2 {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: calc(25% - 15px); 
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.product-card-2:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card-2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
  color: #000;
}
.card-body a{
  text-decoration: none;
  color: #000;
}

.product-price {
  font-size: 18px;
  color: #28a745;
  font-weight: bold;
  text-align: center;
}

.product-sale-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #888;
  margin-left: 5px;
}

.save-amount {
  font-size: 14px;
  color: red;
  margin-top: 5px;
}
.detail-img img {
  width: 100%;
}

.all-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-justify {
  text-align: justify;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.text-center {
  text-align: center;
}
.blog {
  padding: 40px 0;
}
.blog-box {
  background: #fff;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}
.blog_img {
  overflow: hidden;
}
.blog_img img {
  width: 100%;
  transition: 0.3s;
  height: 250px;
} 
.blog_img img:hover {
  transform: scale(1.2);
}
.blog_para {
  background-color: rgb(255, 255, 255);
  border-color: rgb(239, 239, 239);
}
.blog_para h3 {
  color: #000;
  font-size: 16px;
  padding: 5px;
  margin: 0;
}
.right-side-info {
  background: #fff;
  padding: 30px;
  border-top-right-radius: 10px;
 border-radius: 10px;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.single-info-box {
  border-bottom: 1px solid #25d366;
  margin-bottom: 13px;
}
.info-icon {
  margin-right: 21px;
}
.info-icon i {
  display: inline-block;
  height: 47px;
  width: 47px;
  line-height: 47px;
  text-align: center;
  background: #fff;
  border-radius: 100%;
  font-size: 22px;
  color: #25d366;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.info-content h4 {
  font-size: 18px;
  margin: 0 0 11px;
  font-weight: 700;
  color: #000;
}
.info-content p {
  color: #000;
 font-size: 16;
  line-height: 1.5;
}

.info-socail-address {
  display: flex;
  justify-content: space-between;
}
.info-socail-address ul {
  display: flex;
  flex-wrap: ;
}
.info-socail-address ul li {
  margin-left: 13px;
}
.info-socail-address ul li a i{
  height: 35px;
  width: 35px;
  background: #0093e6;
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
}

.d-flex {
  display: flex;
}
