* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container holding submenu panels */
.submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.3s ease;
  z-index: 1056; /* above offcanvas */
  padding: 1rem;
  display: none;
}

/* Show the submenu panel */
.submenu-panel.show {
  display: block;
  left: 0;
}

.back-btn {
  font-weight: bold;
  margin-bottom: 1rem;
}

#slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  /* optional: hide scrollbar or extra items */
}
.testimonial-chip {
  flex: 0 0 auto;
  padding: 10px 20px;
  margin: 5px;
  background: #f0f0f0;
  border-radius: 5px;
  white-space: nowrap;
  transition: transform 0.5s ease-in-out;
}
/* optional: container to hide overflow so sliding works */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.sliders {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  border: 1px solid #ccc;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  scroll-behavior: smooth; /* smooth experience */
}

.sliders::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.testimonial-chip {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 20px;
  background-color: #f1f1f1;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 16px;
  flex: 0 0 auto;
}

.testimonial-chip a {
  text-decoration: none;
  color: inherit;
}
.chip-container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 10px;
  padding: 15px;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.chip-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: transform 0.2s;
}

.chip:hover {
  transform: scale(1.05);
}

/* Optional: Add smooth color transitions */
.chip a {
  text-decoration: none;
      color: #000000;
}
.breaking {
  background-color: red;
  height: 50px;
  width: 100%;
  /* border-radius: 10px; */
  margin-top: 20px;
  padding: 3px;
  color: white;
}

.mid-header {
  margin-bottom: 10px;
  background: #111;
  color: #fff;
  padding: 1rem;
  text-align: center;
  width: 70%;
  border-radius: 5px;
}

.gadget-para {
  display: flex;
  gap: 20px;
}

/* LEFT COLUMN */
.left {
  flex: 3;
}

/* Featured Section */
.featured {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.featured-item {
  position: relative;
  flex: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.featured-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.featured-item .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #00c853;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.featured-item h2 {
  padding: 10px;
  font-size: 16px;
}

.meta {
  color: #777;
  font-size: 13px;
  padding: 0 10px 10px;
}

/* Article Grid */
.articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.articles article {
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.articles article:hover {
  background: #eaf3ff;
}

.articles h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.articles p {
  font-size: 12px;
  color: #888;
}

.dont-miss {
  background: #000;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
}

/* RIGHT SIDEBAR */
/* .right {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  height: fit-content;
} */




.section-title {
  background: #007bff;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}

.recipe {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.recipe h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.recipe .stars {
  color: gold;
  font-size: 14px;
}

.recipe p {
  font-size: 12px;
  color: #777;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .sliders {
    flex-direction: row;
  }
  .featured {
    flex-direction: column;
  }

  .articles {
    grid-template-columns: 1fr;
  }
}

.image-1{
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  margin-top: 10px;
}
.para-lorem{
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.grid-image{
  display: grid;
  grid-template-columns: 2fr 1fr;
}

  
.newsletter {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
}
.newsletter h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.newsletter button {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  margin-left: 10px;
  cursor: pointer;
}
.newsletter button:hover {
  background-color: #555;
}




@media (max-width: 900px) {

.newsletter {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;

}
.newsletter h2 {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 20px;
}
.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 10px;
}
.newsletter button {
  padding: 5px 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 10px;
  margin-left: 10px;
  cursor: pointer;
}
.newsletter button:hover {
  background-color: #555;
}

}

@media (max-width: 900px) {
.social-icon{
  font-size: 12px;
}
}


.social-bar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}
.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: white;
  border-radius: 5px;
}
.facebook {
  background-color: #3b5998;
  height: 40px;
}
.twitter {
  background-color: #1da1f2;
  height: 40px;
}
.youtube {
  background-color: #ff0000;
  height: 40px;
  margin-bottom: 10px;
}

.info-icon{
  display: flex;
  gap: 20px;
}
.bar .info {
  font-size: 15px;
}
.bar p {
  margin-top: 15px;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.gadget-para {
  display: flex;
  gap: 20px;
  padding: 0 15px;
}

/* LEFT SIDE ARTICLES */
.left {
  flex: 3;
}

.news-item {
  background: #fff;
  padding: 15px 20px;
  border-bottom: 1px dashed #ccc;
}

.news-item h2 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #111;
    font-weight: 600;
}

.news-item p {
  font-size: 13px;
  color: #777;
}

/* RIGHT SIDEBAR */
.right {
  flex: 1.2;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  height: fit-content;
}

.section-title {
  background: #000;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.latest-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.latest-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.latest-item .tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
}

.latest-item .info {
  margin-top: 8px;
}

.latest-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #222;
    font-weight: 700;
}

.latest-item p {
  font-size: 12px;
  color: #777;
}

.stay {
  background: #f1f1f1;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}

/* /* RESPONSIVE * */

@media (max-width: 900px) {
  .footer {
    background-color: black;
  }
}
.footer {
  background-color: black;
}

.slider-container {
  padding-top: 20px;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.slider-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 16px;
  margin-right: 10px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  width: 100%;
  color: white;
}

.category-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #ff4081;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
  display: inline-block;
}

.small-card .card-body {
  padding: 10px;
}

.small-card .category-tag {
  background-color: #007bff;
}

.card-img-overlay h5 {
  font-size: 1.25rem;
}

.card-img-overlay .meta {
      font-size: 22px !important;
  opacity: 0.8;
}

.img-cover {
  object-fit: cover;
  height: 560px;
}
.header-sec {
  display: flex;
}

@media (max-width: 900px) {
  .header-sec {
    display: inline;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.fashions {
  background-color: green;
  width: 100px;
  margin-bottom: 90px;
}
@media (max-width: 900px) {
  .fashions {
    background-color: green;
    width: 100px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .right {
    padding: 0px;
  }
  .news-item {
    padding: 15px 0px;
  }
  .card-img-overlay h5 {
  font-size: 20px;
}
.card-img-overlay .meta {
  font-size:15px;
 
}
img.logo-dvna {
    width: 135px !important;
}
h5.card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
}
.custom-carousel .carousel-item img {
    height: 260px;
}
}

.fashiones {
  background-color: green;
  width: 70px;
  margin-bottom: 90px;
  text-align: center;
}
@media (max-width: 900px) {
  .fashiones {
    background-color: green;
    width: 70px;
    margin-bottom: 10px;
    text-align: center;
  }
}

  /* sirf large screen (≥992px) ke liye fixed height */
  @media (min-width: 992px) {
    .product-img {
      height: 166px !important;
      object-fit: cover;
    }
  }

  /* mobile/tablet me auto height */
  @media (max-width: 991.98px) {
    .product-img {
      height: auto !important;
    }
  }

.category-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  color: #fff;
}

.fashion {
  background-color: #f39c12;
}
.video {
  background-color: #e74c3c;
}
.gadget {
  background-color: #27ae60;
}

.post-excerpt {
  font-size: 0.9rem;
  color: #666;
}

.video-wrapper {
  position: relative;
}

.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 15px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}

.letter {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .letter {
      display: inline;
      justify-content: center;
  }
}


li.nav-item {
    font-size: 18px !important;
    font-weight: 600 !important;
}
h5.card-title {
    font-size: 40px;
    font-weight: 700;
}
h6.card-title {
    font-size: 18px;
    font-weight: 700;
}

h1.details-ttile-heading {
    font-size: 35px;
    font-weight: 700;
}

h3.details-subheading {
    font-size: 30px;
    font-weight: 700;
}

h5.side-text-title {
    font-size: 18px;
    font-weight: 600;
}

   /* 🔍 Mobile-only Search Bar (below 768px) */
@media (max-width: 768px) {
  .mobile-search-form {
    width: 100%;
    /*margin: 0 0 15px 0;*/
    /*padding: 0 10px;*/
  }

  .mobile-search-form .search-box {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
  }

  .mobile-search-form .search-input {
    flex: 1;
    padding: 10px 12px;
    font-size: 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #333;
  }

  .mobile-search-form .search-input::placeholder {
    color: #999;
    font-size: 14px;
  }

  .mobile-search-form .search-btn {
    background: none;
    border: none;
    color: #444;
    padding: 10px 12px;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .mobile-search-form .search-btn:hover {
    color: #007bff;
  }

  /* Adjust offcanvas spacing for better layout */
  #mobileMenu .offcanvas-body {
    padding-top: 10px;
  }
  
}

/* ===== Base Style ===== */
.headermobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:430px; 
}


@media (max-width: 767px) {
  .headermobile {
    gap: 310px;
  }
}
@media (max-width: 600px) {
    .headermobile {
        gap: 285px;
    }
}
@media (max-width: 550px) {
    .headermobile {
        gap: 260px;
    }
}


@media (max-width: 500px) {
  .headermobile {
    gap:190px;
  }
}


@media (max-width: 400px) {
  .headermobile {
            gap: 140px;
  }
}


@media (max-width: 360px) {
  .headermobile {
    gap: 100px;
  }
}
@media (max-width: 320px) {
    .headermobile {
        gap: 70px;
    }
}