body {
  min-height: 100vh;
  font-weight: 500;

  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

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

/* Flexibond-Style Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 1;
}

/* Zoom In Animation */
.hero-slide.zoom-in {
  transform: scale(1.15);
}

.hero-slide.zoom-in.active {
  animation: zoomInSlide 9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes zoomInSlide {
  0% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1.1);
  }
}

/* Zoom Out Animation - Opposite of Zoom In */
.hero-slide.zoom-out {
  transform: scale(0.85);
}

.hero-slide.zoom-out.active {
  animation: zoomOutSlide 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes zoomOutSlide {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.5);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-text.active {
  opacity: 1;
  visibility: visible;
  animation: heroContentFadeIn 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes heroContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  50% {
    opacity: 0.7;
    transform: translateY(10px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-main-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
  margin-bottom: 10px;
}

.title-line.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}



.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #667eea;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 4;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-arrow {
  font-size: 1.2rem;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  }
}

@keyframes cardPulse {
  0% {
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.15),
      0 0 30px rgba(102, 126, 234, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  50% {
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.15),
      0 0 40px rgba(102, 126, 234, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  100% {
    box-shadow:
      0 30px 60px rgba(0, 0, 0, 0.15),
      0 0 30px rgba(102, 126, 234, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}


.btn.btn-primary {
  font-size: 1.3rem;
  border-radius: 50px;

  background: linear-gradient(90deg, #f43f5e 0%, #2563eb 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}



.btn.btn-primary:hover {
  background: linear-gradient(90deg, #2563eb 0%, #f43f5e 100%);

  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
}


/* Enhanced Section Styling */
.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 40px 0;
  color: #2d3748;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #3a0ca3, #7209b7);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.25rem;
  max-width: 800px;
  font-weight: 800;
  margin: 0 auto 60px;
  color: #383e49;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}

/* Base state (hidden) */
.fade-observe {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 2s ease, transform 1.2s ease;
}

/* When in view */
.fade-observe.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-observe1 {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 2s ease, transform 1.2s ease;
}

/* When in view */
.fade-observe1.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Best Sellers Section */
.best-sellers {
  padding: 100px 0 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}

.best-sellers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.product-card {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-25px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(102, 126, 234, 0.6);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: cardPulse 2s ease-in-out infinite;
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  margin-top: 2%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 25px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.product-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #6a1b9a, #283593); /* Purple to indigo */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-content p {
  color: #39404d;
  line-height: 1.7;
  font-weight: 600;
  font-size: 1.1rem;
  /* Aligns text on both sides */
  text-justify: inter-word;
  /* Distributes spaces between words, not letters */
  hyphens: auto;
}

/* Enhanced Core Benefits Section */
.core-benefits {
  padding: 100px 0;
  background: #6A89A7;
  position: relative;
  overflow: hidden;
}

.core-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.core-benefits .section-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: #fff;
}


.b-carousel-track {
  display: flex;
  gap: 30px;
  /* space between items */
  scroll-behavior: smooth;
  transition: transform 0.6s ease-in-out;
}

.benefit-carousel-item {
  flex: 0 0 calc(25% - 30px);
  /* 25% minus half of the gap (for 30px gap) */
  box-sizing: border-box;
  padding: 50px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-carousel-item:hover::before {
  transform: scaleX(1);
}

.benefit-carousel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #4765e7;
  transition: all 0.3s ease;
}

.benefit-carousel-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  color: #6d3f9a;
}

.benefit-carousel-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
}

.benefit-carousel-item p {
  font-size: 0.95rem;
  color: #637698;
  line-height: 1.6;
  font-weight: 600;
  text-justify: inter-word;
  hyphens: auto;
}


/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .b-carousel-track {
    gap: 15px;
  }

  .benefit-carousel-item {
    flex: 0 0 calc(33.33% - 15px);
    /* 2 items */
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .b-carousel-track {
    gap: 10px;
  }

  .benefit-carousel-item {
    flex: 0 0 calc(50% - 10px);
    /* 2 items */
    padding: 30px 20px;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }

  .benefit-carousel-item h3 {
    font-size: 1rem;
  }

  .benefit-carousel-item p {
    font-size: 0.9rem;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {

  .b-carousel-track {
    gap: 0px;
  }

  .benefit-carousel-item {
    flex: 0 0 100%;
    /* 1 item per row */
    padding: 25px 15px;
  }

  .benefit-icon {
    font-size: 2rem;
  }

  .benefit-carousel-item h3 {
    font-size: 0.95rem;
  }

  .benefit-carousel-item p {
    font-size: 0.85rem;
  }
}

/* Enhanced Explore Products Section */
.explore-products {
  padding: 100px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}

.explore-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.carousel-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-item {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding: 0 10px;
  text-align: center;
}

.carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item h4 {
  margin: 10px 0 5px;
  font-size: 1rem;
}

.carousel-item p {
  font-size: 0.85rem;
  color: #555;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.explore-cta {
  margin-top: 60px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #6A0DAD, #FF69B4, #FF4500);
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Enhanced Elevate Interior Section */
.elevate-interior {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 100px 0;
  flex-wrap: wrap;
  background: rgb(35, 87, 130);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.elevate-interior::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.elevate-interior .text-section {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 300px;
  font-size: 1.2rem;
  line-height: 1.8;
  padding-left: 60px;
  box-sizing: border-box;
  z-index: 2;
  color: #fff;
}

.text-section h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  line-height: 1.2;
}

.text-section p {
  font-size: 1.2rem;
  color: #f0f8ff;
  line-height: 1.8;
  margin-right: 50px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);

}

.elevate-interior .circle-container {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.circle-container {
  position: relative;
  width: 320px;
  height: 320px;
}

.circle-container img {
  position: absolute;
  width: 180px;
  height: auto;
  border-radius: 25px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
  transform: scale(0.9);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  filter: brightness(0.9) contrast(1.1);
}

.circle-container img.active {
  width: 500px;
  opacity: 1;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.img4 {
  top: 10%;
  left: 70%;
  transform: translateX(-50%);
}

.img2 {
  top: 50%;
  left: 70%;
  transform: translateY(-50%);
}

.img3 {
  bottom: 10%;
  left: 60%;
  transform: translateX(-50%);
}

.img1 {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}


.testimonial-slider {
  display: flex;
  max-width: 1100px;
  margin: 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-wrap: wrap;
}

.image-side {
  width: 50%;
  height: 450px;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
}

.content-side {
  width: 50%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #8a5fff;
  object-fit: cover;
  margin-bottom: 18px;
}

.username {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.typing-container {
  position: relative;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  max-width: 480px;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.cursor {
  display: inline-block;
  width: 2px;
  background: #444;
  animation: blink 0.8s steps(2, start) infinite;
  vertical-align: bottom;
  margin-left: 2px;
  height: 1.1em;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.arrow-buttons {
  position: absolute;
  bottom: 20px;
  width: 60%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #6f00ff, #c400ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(111, 0, 255, 0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}

.arrow-btn:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #ff0099, #9f00ff);
  box-shadow: 0 12px 24px rgba(255, 0, 153, 0.4);
}

#imageDisplay:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px 8px rgba(20, 116, 250, 0.3);
  /* Glow on all sides */
  border: 5px solid rgba(12, 42, 207, 0.5);

  background-blend-mode: screen;
  backdrop-filter: brightness(1.05);
}

/* ==================== MOBILE (phones) ==================== */
@media (max-width: 820px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .section-description {
    font-size: 1rem;
    max-width: 90%;
    margin-bottom: 40px;
  }

  .hero-main-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero-content {
    top: 25%;
    padding: 0 15px;
  }



  .hero-scroll-indicator {
    right: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    margin: 0 auto;
  }

  .core-benefits .benefits-grid {
    flex-direction: column;
    gap: 20px;
  }

  .benefit-item {
    max-width: 100%;
    padding: 30px 20px;
  }

  .explore-products {
    padding: 60px 15px;
  }

  .carousel-item {
    flex: 0 0 50%;
  }

  .elevate-interior {
    flex-direction: column;
  }

  .elevate-interior .text-section,
  .elevate-interior .circle-container {
    max-width: 100%;
    flex: 1 1 100%;
    justify-content: first baseline;
    margin-bottom: 30px;
    padding-top: 170px;
    padding-left: 25px;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .image-side,
  .content-side {
    width: 100%;
    height: auto;
  }


}

/* ==================== TABLET ==================== */
@media (min-width: 821px) and (max-width: 1024px) {

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 35px;
  }

  .section-description {
    font-size: 1.1rem;
    max-width: 80%;
    margin-bottom: 50px;
  }

  .hero-main-title {
    font-size: 3rem;
    margin-bottom: 25px;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 80%;
  }

  .hero-content {
    top: 18%;
    padding: 0 20px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .core-benefits .benefits-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .benefit-item {
    max-width: 45%;
  }

  .explore-products {
    padding: 80px 30px;
  }

  .carousel-item {
    flex: 0 0 50%;
  }

  .elevate-interior {
    flex-direction: column;
  }

  .elevate-interior .text-section,
  .elevate-interior .circle-container {
    max-width: 100%;
    flex: 1 1 100%;
    margin-top: 100px;
    padding-top: 170px;
  }


  .testimonial-slider {
    flex-direction: row;
  }

  .image-side,
  .content-side {
    width: 50%;
  }
}

/* ==================== LAPTOP / DESKTOP ==================== */
@media (min-width: 1025px) {

  .hero-main-title {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.3rem;
    max-width: 700px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .core-benefits .benefits-grid {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .benefit-item {
    max-width: 300px;
  }

  .carousel-item {
    flex: 0 0 25%;
  }

  .elevate-interior {
    flex-direction: row;
    padding: 100px 60px;
  }

  .elevate-interior .text-section,
  .elevate-interior .circle-container {
    max-width: 50%;
  }
}





  /* Modal Overlay */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Modal Box */
  .modal-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    animation: scaleUp 0.3s ease-in-out;
  }

  /* Heading */
  .form-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
  }

  .form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
  }

  .close-btn:hover {
    color: #000;
  }

  /* Form Styles */
  .form-group {
    text-align: left;
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 5px;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .form-group input:focus {
    border-color: #0077cc;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.4);
  }

  /* Button */
  .s-btn {
    background: linear-gradient(135deg, #0077cc, #005fa3);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
  }

  .s-btn:hover {
    background: linear-gradient(135deg, #005fa3, #004a82);
  }

  /* Animation */
  @keyframes scaleUp {
    from {
      transform: scale(0.8);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }
