

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
   font-family: 'Times New Roman', serif;
   scroll-behavior: smooth;
}

/* Utility Classes */
h1{
  font-size: 2rem !important;
}

h5{
  font-size: 1.2rem !important;
}

.container-fluid {
  padding: 0 70px !important;
}

.page-width {
  padding: 0 40px;
}
.mr-b {
  margin-bottom: 10px;
}
.pd-bl {
  padding-block: 25px;
  border: none;
}

.my-btn{
  padding: 10px 20px;
  border: none;
}
.colortext{
    color: #43c553;
}

 /* Default: Desktop view */
.desktop-view-banner {
  display: block!important;
}

.mobile-view-banner {
  display: none!important;
}

/* Header Section */

.Head-section {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.second-nav {
  position: sticky;
  top: 61px;
  /* z-index: 1000;  */
  background: #fff;
}

.mynavbar {
  /* background-color: #43c553; */
  background-color: white;
}
.navbar {
  padding: 0 !important;
}
.header,
.navbar {
  position: relative;
  z-index: 1000;
}
.logo img {
  max-height: 60px;
  display: block;
}
.Search-bar {
  
  /* width: 100%;
  max-width: 650px; */
  border: 1px solid gray;
  border-radius: 50px;
  overflow: hidden;
}

.Search-bar form {
  display: flex;
  align-items: center;
}

.Search-bar:focus-within {
  border-color: forestgreen;
}

.Search-bar input[type="text"] {
  width: 100%;
  height: 40px;
  font-size: 15px;
  padding-left: 15px;
  border: none;
  background-color: #f0f0f0;
}

.Search-bar input[type="text"]:focus {
  outline: none;
}

.search-icon {
  padding: 8px 16px;
  border: none;
  background-color: #f0f0f0;
}

.search-icon i {
  font-size: 20px;
}

.search-icon i:hover {
  cursor: pointer;
  color: green;
}


.quote-button button {
  /* border: 1px solid rgb(26, 26, 123); */
  border: none;
  padding: 6px 10px;
  /* border-radius: 20px; */
  color: white;
  background-color: #0505b9;
  font-size: 12px;
}

.hearder-list li a {
  color: rgb(7, 7, 7);
  font-size: 15px;
}

.hearder-list li a:hover {
  color: #ed1c24;
}

.quote-button button {
  border: none;
  padding: 6px 14px;
  color: white;
  background-color: #ed1c24;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;

  /* Always swinging */
  animation: swing 1.2s ease-in-out infinite;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(-6deg);
  }
  75% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Mobile header icons */
.hearder-mobile {
  padding: 10px 15px;
  background-color: white;
}

.hearder-mobile i {
  font-size: 24px;
  color: #0a0909;
  background-color: #e8e7e7;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.mobile-logo img {
  transform: scale(1.7);
}

/* Side Panel Styling */
#side-panel {
  position: fixed;
  top: 0;
  right: -350px; /* Hide initially */
  width: 350px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.5s ease;
  z-index: 1050;
  padding: 20px 30px;
  overflow-y: auto;
}

#side-panel.active {
  right: 0;
}

.side-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.side-panel-header i {
  cursor: pointer;
  font-size: 24px;
}

.side-panel-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-panel-menu li {
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(191, 194, 196);
}

.side-panel-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  display: block;
  transition: color 0.3s;
}

.side-panel-menu a:hover {
  color: #43c553; /* green highlight */
}

/* Overlay Styling */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1040;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* nav bar style */
.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  border-top: 1px solid gray;
  margin-bottom: 0px;
  /* padding-left: 20px; */
  /* margin-left: 5px; */
  gap: 10px;
}

.nav-list ul{
  padding-left: 0 !important;
}
.nav-list li {
  padding: 6px 15px;
  position: relative;
}
.nav-list li a {
  text-decoration: none;
  font-size: 15px;
  color: #000;
  display: block;
  
  font-weight: 500;
}

.nav-list span i {
  font-size: 0.7em;
  margin-left: 5px;
}



/* ========== NAVIGATION DROPDOWN FIX - NAYI CODE ADD KAREIN ========== */

/* Navigation dropdown hover functionality - FIXED */
.navbar-part .nav-list > li.dropdown {
  position: relative;
}

.navbar-part .nav-list > li.dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-part .dropdown-menu {
  position: absolute;
  top: 90%;
  left: 0;
  z-index: 1000;
  display: none; /* Hidden by default */
  float: left;
  min-width: 220px; /* Reduced from 240px */
  padding: 5px 0; /* Reduced from 8px 0 */
  margin: 2px 0 0;
  font-size: 13px; /* Reduced from 14px */
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 300px;
  overflow-y: auto;
}

.navbar-part .dropdown-menu li {
  position: relative;
}

.navbar-part .dropdown-menu a {
  display: block;
  padding: 5px 15px; /* Reduced from 8px 20px */
  clear: both;
  font-weight: 400;
  line-height: 1.3; /* Reduced from 1.42857143 */
  color: #333;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.navbar-part .dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #007bff;
}

/* Nav list items ki padding kam */
.nav-list li {
  padding: 4px 10px; /* Reduced from 6px 15px */
  position: relative;
}

/* Ensure the second nav has proper z-index */
.second-nav {
  z-index: 999;
}





.dropdown-menu li a {
  display: block;
  padding: 5px;
  color: #737272;
  line-height: 1;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f0f0f0;
}



/* Body section */
.banner-part {
  position: relative; /* arrows ke liye relative parent */
}
.container-body img {
  width: 100%;
  max-height: 470px !important;
  object-fit: cover;
  position: relative;
  display: block; /* better image rendering */
  object-fit: cover;
}

.arrows {
  position: absolute;
  bottom: -18px; /* thoda upar se spacing */
  right: 70px; /* right se spacing */
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  z-index: 10; /* upar rahe */
}

.arrows span i {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  font-size: 23px;
  border-radius: 50%;
  cursor: pointer;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.arrows span i:hover {
  background-color: #f0f0f0;
  transform: scale(1.1); /* size 20% bada hoga */
}

/* Product category section */
.product-category {
  margin-bottom: 30px;
  padding: 35px 0;
}
 .category-item {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      display: block;
      text-align: center;
      
    }

  /* Cube Swiper box with self class */
    .self {
      width: 200px;
      height: 200px;
      margin: auto;
    }

    .self img {
      width: 100%;
      height: auto;
      /* margin-bottom: 8px; */
    }
.swiper-cube .swiper-cube-shadow:before{
  background: none!important;
}
    .self .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 12px;
      padding: 10px;
  outline: none;
    }


   .category-item p {
    margin-top: 18px;
    font-weight: 500;
    color: #333;
    font-size: 21px;
  }


/* About section */
.about-sec {
  background-color: rgb(220, 220, 220);
}
.about-text {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.about-text span {
  color: red;
}
.about-text h3 {
  font-size: 35px;
  padding: 10px 0px;
  line-height: 35px;
}

 .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;     /* space between text & arrow */
  padding: 10px 20px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  border: none;
  color: #000;
  font-weight: 600;
  text-decoration: none;   /* underline hatana */
  transition: all 0.3s ease;
}

.about-btn i {
  transition: transform 0.3s ease;
}

.about-btn:hover {
  cursor: pointer;
  background-color: white;
  box-shadow: 0 3px 8px #b4b4b4;
}

.about-btn:hover span {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.about-btn:hover i {
  transform: translateX(10px); /* arrow slide karega */
}

.main-img-box {
  position: relative;
}

.box-img {
  position: relative; /* So images stay inside */
  display: inline-block;
  transition: border 0.3s ease;
}

.box-img img {
  height: auto;
  vertical-align: middle;
}

/* Image 1 (left one) */
.image1 {
  margin-left: 50px;
  width: 50%;
  border-radius: 25px;
}

/* Image 2 (right one) */
.image2 {
  width: 50%;
  border-radius: 25px;
  position: absolute;
  top: 25%;
  left: 45%;
}

.image1:hover,
.image2:hover {
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  transition: border 0.4s, box-shadow 0.4s;
}
.image1:hover,
.image2:hover {
  border: 2px solid transparent;
  animation: borderGlow 1.5s infinite alternate;
  border-radius: 4px;
}

@keyframes borderGlow {
  from {
    border-color: transparent;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0);
  }
  to {
    border-color: #00ff15;
    box-shadow: 0 6px 15px #6bfa91, 0 0 25px #7ffa8c;
  }
}

/* video section */
.video-container {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.video {
  width: 100%;
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 0 20px;
}

.video-overlay-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.video-overlay-text button {
  margin-top: 40px;
  font-size: 1.5rem;
  padding: 10px 20px;
  font-weight: bold;
  
  /* color: #000; */
  background-color: transparent;
  border: 2px solid rgb(228, 187, 81);
  /* border-radius:20%; */
  border-radius: 30px;
  box-shadow: 0 3px 6px rgb(243, 202, 98);
  cursor: pointer;
 
}
.video-overlay-text button a{
 text-decoration: none;
 color: rgb(231, 185, 68);
}

.video-overlay-text button:hover {
  color: rgb(231, 185, 68);
  background-color: white;
  box-shadow: 0 3px 12px rgb(243, 202, 98);
}

/* Discover Section */
.D-section {
  padding-block: 25px;
}
.D-row {
  padding-bottom: 25px;
}

.D-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.D-heading,
.D-h1 {
  flex: 1 1 auto;
}

.D-link {
  /* text-decoration: none; */
  font-weight: 700;
  font-size: 17px;
  color: #000;
}
.D-container {
  cursor: pointer; /* indicate hover */
  overflow: hidden;
  position: relative;
}

.D-img {
  height: 220px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.D-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.hover-img {
  opacity: 0; /* initially hide hover image */
}

.D-container:hover .hover-img {
  opacity: 1; /* show hover image on hover */
}

.D-container:hover .default-img {
  opacity: 0; /* hide default image */
}

/* Mid banner section */
.mid-banner {
  position: relative;
  width: 100%;
}

.mid-banner img {
  width: 100%;
  /* height: 450px; */
  object-fit: cover; /* image crop hoke container fill kare */
  display: block;
   transform: scale(1.1);
  animation: zoomInLoad 1.2s ease forwards; /* zoom in effect on page load */
}

.mid-overlay-btn{
position: absolute;
bottom: 30px;
left: 47%;

}
.mid-overlay-btn button{
  border: none;
  padding: 6px 15px;
}

.mid-overlay-btn a{
  text-decoration: none;
  color: #000;
}

/* Google banner part */
.google-banner {
  width: 100%;
}

.google-banner img {
  width: 100%;
  height: 450px; /* height auto rakho */
  /* object-fit: fill; crop nahi hoga */
  display: block;

/* Initial zoom scale */
 transform: scale(1.1);
  animation: zoomInLoad 1.2s ease forwards; /* zoom in effect on page load */
}

@keyframes zoomInLoad {
  from {
    transform: scale(1.2); /* slightly zoomed */
  }
  to {
    transform: scale(1);   /* final position */
  }
}
/* ================= Indoor and outdoor product collection section CSS ==========*/
.pdt-h1 {
  display: block;
  margin-bottom: 40px;
}

.pdt-img {
  height: 195px;
  padding: 9px;
  background-color: #f8f8f8;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.pdt-img:hover  {
transform: translateY(-4px);
 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
 background-color: rgb(253, 249, 249);
}
.pdt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdt-details {
  margin-top: 10px;
}

/*================ Bottom Banner swiper ================*/

.bottomSwiper{
  position: relative;
  width: 100%;
}

.slide-content{
  color: rgb(255, 255, 255);
}

.slide-content .my-btn{
   font-size: 17px;
   font-weight: 600;
}


.bottomSwiper .myslide-image{
  width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.bottomSwiper .swiper-slide-active .slide-image {
  transform: scale(1.1); /* zoom-in active slide */
}

.bottomSwiper .slide-content{
  position: absolute;
    top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


.bottomSwiper .heading,
.bottomSwiper .text,
.bottomSwiper .my-btn{
  opacity: 0;
  /* transform: translateY(20px); */
  transform: scale(0.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bottomSwiper .heading.show {
  opacity: 1;

  transform: scale(1);
}


.bottomSwiper .text.show {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

.bottomSwiper .my-btn.show {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}

/* FQA section */
.faq-section {
  background-image: url('./IMG-20250725-WA0023.jpg');
}

.faq-heading {
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #28a745; 
  color: #0505b9;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.yt-video {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically if parent has height */
  width: 100%;
}
.yt-video video {
  max-width: 100%;
  border-radius: 12px;       /* optional rounded corners */
  
}

/* Bottom-top banner part  */
.my-btm-top-bnr {
  position: relative;
  width: 100%;
  height: 470px;
  background: url("../img/banners/sunnylights.jpg") no-repeat center center;
  background-size: cover; /* image ko pura cover karega */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Optional dark overlay */
.my-btm-top-bnr::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(59, 59, 59, 0.45); /* halki shadow for readability */
  z-index: 1;
}

/* inner container */
.btm-top-container {
  position: relative;
  z-index: 2; /* overlay ke upar dikhne ke liye */
  width: 100%;
  /* max-width: 900px; */
  padding: 0 8%;
  display: flex;
  align-items: center;
  min-height: 200px;
}

/* text block */
.btm-top-banner-overlay {
  max-width: 350px;
}

.btm-top-banner-overlay h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 450;
  margin-bottom: 20px;
}

.btm-top-banner-overlay .btm-bnr-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btm-top-banner-overlay .btm-bnr-btn:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .btm-top-banner-overlay h2 {
    font-size: 24px;
     margin-bottom: 40px;
  }

  .yt-video video{
    height:250px;
  }

   .desktop-view-banner {
    display: none !important;
  }
  .mobile-view-banner {
    display: block !important;
  }

  .mid-overlay-btn {
    left: 37%;
}
.my-btm-top-bnr {
    background-image: url("../img/banners/mobile-viwe-sunnybanner2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
   
  }
}


/* offer section */
.offer-container{
   background-image: url("https://images.unsplash.com/photo-1528458909336-e7a0adfed0a5?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjB8fGJhY2tncm91bmR8ZW58MHx8MHx8fDA%3D"); /* lowercase img */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.offer-content{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  align-items: center;
}
.offer-btn {
  display: flex;
  max-width: 400px; /* adjust as needed */
  margin: 0 auto; /* center align */
  border: 1px solid #ccc;
  overflow: hidden;
  border-radius: 0; /* sharp edges like image */
  margin-top: 10px;
}

.offer-btn input[type="text"] {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.offer-btn button.mt-btn {
  background-color: #000; /* black background */
  color: #fff; /* white text */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

/* Bottom banner part */
.bottom-footer-part-1 {
  /* background-image: url("https://plus.unsplash.com/premium_photo-1706889547550-bdbd77f498f9?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTd8fGZsb29yJTIwbWFyYmxlJTIwYmFja2dyb3VuZHxlbnwwfHwwfHx8MA%3D%3D");  */
  background-image: url("./color-temperature-comparison-led-lights.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}


.bottom-banner-part-content{
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  align-items: center;
}


/* Our Client Swiper section CSS*/
.client {
  /* width: 150px;              fixed width */
  height: 140px;  
    /* background: linear-gradient(135deg, rgba(241, 80, 80, 0.9),rgba(46, 157, 34, 0.6), rgba(45, 48, 228, 0.6)); */
    background: rgb(199, 198, 198);
    padding: 20px;
    border-top-left-radius: 30px;
     align-items: center;
    border: 1px solid #c8c4c4;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
   
}
.client img{
  height: 100%;
    max-width: 150px;
      max-height: 150px;
      margin-bottom: 10px;
      object-fit: contain;
}

/* Footer Section */

.footer-part {
  padding-top: 40px;
  background-color: #f9f8f8;
}

.footer-logo img {
  width: 113px;
  object-fit: cover;
  margin-bottom: 5px;
}
.footer-desc {
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-left: 3px;
}

.footer-social li {
  list-style: none;
}
.footer-social li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
  line-height: 45px;
  transition: transform 2s, background-color 0.6s, color 0.6s;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Facebook */
.footer-social li a.icofont-facebook:hover {
  transform: rotateY(360deg);
  background-color: #1877f2;
  color: white;
}

/* LinkedIn */
.footer-social li a.icofont-linkedin:hover {
  transform: rotateY(360deg);
  background-color: #0077b5;
  color: white;
}

/* Instagram (gradient) */
.footer-social li a.icofont-instagram:hover {
  transform: rotateY(360deg);
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white;
}

.icofont-instagram a:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white; /* icon color */
}
.lineheightset li {
  margin-bottom: 5px !important;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-contact li a {
  text-decoration: none;
  color: black;
  display: inline-block; /* transform ke liye zaruri */
  transition: color 0.3s ease;
}

.footer-contact li a i {
  font-size: 15px;
  margin-right: 10px;
  color: rgb(15, 15, 107);
  /* transition: transform 0.3s ease;
  display: inline-block; transform ke liye zaruri */
}
.footer-contact li a span,
.footer-desc,
.footer-copytext,
.footer-title {
  white-space: normal; /* default wrapping */
  word-wrap: break-word; /* long words wrap */
  overflow-wrap: break-word;
}

.footer-contact li a:hover {
  color: #0f0f81;
  transform: translateX(5px); /* arrow 5px right shift */
}

.footer-title {
  margin-bottom: 20px;
  margin-left: 32px;
  letter-spacing: -0.3px;
  text-transform: capitalize;
}

.footer-bottom {
  margin-top: 30px;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color: white;
}
.footer-copytext {
  margin-bottom: 5px !important;
}

.footer-bottom a {
  text-decoration: none;
  color: #ee2929;
  font-size: bold;
}

/* Responsive media  */
@media (max-width: 767px) {
  /* utility */
  ul{
    padding-left: 1rem !important;
  }
  .container-fluid {
    padding: 0px 20px !important;
  }

  .page-width {
    padding: 0 20px;
  }
  /* hearder sectioin */
  .mynavbar {
    display: none !important;
  }
  .navbar-part {
    display: none !important;
  }

  .mobile-logo {
    margin-block: 12px;
    margin-left: 10px;
  }

  /* Body section */
 .container-body img {
    width: 100%;          /* full width of container */
    height: 300px;        /* fixed height */
    max-height: none;     /* override desktop max-height */
    object-fit: cover;    /* cover container without stretching */
  }


  /* Product section */
  /* .product-img {
    height: 200px !important;
  }

  .category-item img {
    max-width: 110px;
  
  } */
    .self {
    width: 120px;
    height: 120px;
  }
  .category-item p {
    font-size: 14px;
  }
  /* About Section */
  .row.py-4 {
    flex-direction: column;
    align-items: flex-start;
  }
  .col-lg-6.col-md-5 {
    width: 100%;
    max-width: 100%;
  }
  .main-img-box {
    display: none; /* Hide images on mobile */
  }
  .about-text h1 {
    font-size: 28px;
  }
  .about-text p {
    font-size: 16px;
  }
  .about-btn {
    margin-left: 0;
  }

  /* video section */
  .video {
    height: 350px !important; /* force override */
    max-height: none !important; /* remove max-height limit */
    object-fit: cover;
  }
  .video-overlay-text {
    width: 90%;
    max-width: 400px; /* mobile pe aur chhota */
  }
  .video-overlay-text h2 {
    font-size: 2rem; /* aur chhota */
  }
  .video-overlay-text button {
    font-size: 1rem;
    padding: 6px 12px;
    margin-top: 15px;
  }


  /* Discover section */
  .row.D-row {
    display: flex; /* ensure flex */
    flex-wrap: nowrap !important; /* don't let Bootstrap wrap */
    overflow-x: auto; /* horizontal scroll */
    scrollbar-width: none;
  }

  .row.D-row > [class*="col"] {
    flex: 0 0 auto !important; /* stop flex growth/shrink */
    width: 200px; /* card width */
    scroll-snap-align: start; /* optional: snap */
  }

  .D-img {
    /* width: 160px;         box ki fixed width */
    height: 165px; /* box ki fixed height */
  }

  .D-container:hover .hover-img {
    opacity: 1; /* show hover image */
  }

  .D-container:hover .default-img {
    opacity: 0; /* hide default image */
  }

  /* =======indoor and outdoor mediaz */
 .indoor-outdoor-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
    gap: 10px;
  }

  /* Mid banner sectoin */
  


  /* Footer section */
  .upper-footer {
    padding-inline: 30px;
  }
  .upper-footer .row {
    flex-direction: column;
    align-items: flex-start; /* Left align */
  }
  .upper-footer .col-sm-6,
  .upper-footer .col-md-3,
  .upper-footer .col-xl-3 {
    width: 100% !important; /* Full width on mobile */
    margin-bottom: 25px;
  }
  .footer-title {
    margin-left: 0; /* Remove left margin for smaller screen */
  }
  .footer-contact li a span {
    margin-left: 0px !important;
    padding-left: 0px;
  }
  .footer-contact li,
  .footer-social {
    justify-content: flex-start; /* Left align */
  }
  .footer-social {
    padding-left: 0;
    gap: 15px;
  }
  .footer-copytext {
    text-align: left !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }
  .footer-bottom p {
    margin: 5px 0;
  }
  .footer-bottom a span {
    /* word-break: break-word; */
    display: block;
   
  }
}

/* Responsive height for tablets */
@media (max-width: 992px) {
  .product-img {
    height: 300px;
  }
}

/* Tablet (between 768px and 982px) */
@media (min-width: 767px) and (max-width: 982px) {
  /* utility */
  .container-fluid {
    padding: 0px 45px !important;
  }

  /* About section */
  .about-text h1 {
    font-size: 30px;
  }
  .image1 {
    width: 90%;
  }
  .image2 {
    width: 90%;
    top: 40%;
    left: 51%;
  }

  /* Video Section */
  .video-overlay-text {
    width: 90%;
    max-width: 600px; /* width limit */
  }
  .video-overlay-text h2 {
    font-size: 2rem; /* thoda chhota */
  }
  .video-overlay-text button {
    font-size: 1.3rem;
    padding: 8px 16px;
  }
  /* Discover section*/

  /* Footer section */
  .upper-footer {
    padding-inline: 60px;
  }
  .upper-footer .row {
    justify-content: flex-start; /* Start align */
  }
  .footer-widget {
    margin-bottom: 20px;
  }
  /* Optional: reduce gap between columns */
  .upper-footer .col-md-3 {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 10px 20px;
  }
  .footer-bottom p {
    margin: 5px 0;
  }
  .footer-bottom a span {
    /* word-break: break-word; */
    display: block;
  }
}



/* Hearder search bar css for mobile */
/* Mobile Search Bar Styles - FIXED */
.mobile-search-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    z-index: 1000;
    border-top: 1px solid #ddd;
    cursor: pointer;
}

.mobile-search-bar.active {
    display: block;
    cursor: pointer;
}

.mobile-search-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#mobileSearchInput {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

#mobileSearchInput:focus {
    border-color: #43c553;
}

.mobile-search-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    padding: 8px;
    cursor: pointer;
  
}

.mobile-search-suggestions {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    background: white;
}

.mobile-search-suggestions li {
    padding: 12px 15px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    font-size: 14px;
    cursor: pointer;
}

.mobile-search-suggestions li:last-child {
    border-bottom: none;
}

.mobile-search-suggestions li:hover,
.mobile-search-suggestions li.highlighted {
    background: #007bff;
    color: white;
}

.mobile-search-suggestions .suggestion-heading {
    font-weight: bold;
    background: #f8f9fa !important;
    color: #666 !important;
    cursor: default;
}

/* Mobile header position relative for absolute positioning */
.hearder-mobile {
    position: relative;
}

/* IMPORTANT: Search icon ko hamesha show karein */
.mobile-search-icon {
    display: block !important; /* Force show */
    cursor: pointer;
}

/* Search bar active hone par bhi search icon show rahe */
.mobile-search-bar.active ~ .mobile-search-icon {
    display: block !important;
}
