:root {
  --dark: #141e29;
  --secondary: #394e6e;
  --accent: #f2b705;
  --bg-color: #e4efff;
  --text-light: #ffffff;
  --text-dark: #141e29;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Dekko", cursive;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #000;
  background: #e4efff;
}

::-webkit-scrollbar {
  display: block;
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

/* ===== STICKY HEADER STYLES ===== */
.desktop-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 4px 24px;
  border-radius: 40px;
  margin: 16px auto;
  max-width: 1200px;
  height: 80px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  overflow: hidden;
}

.desktop-navbar.scrolled {
  top: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.desktop-navbar.hide {
  top: -100px;
}

.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease, opacity 0.3s ease;
  /* Top bar height remains as originally set - no changes to padding */
}

.mobile-header.hide {
  top: -100px;
}

.offer-bar {
  background: var(--dark);
  overflow: hidden;
  white-space: nowrap;
  height: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: top 0.3s ease;
}

.offer-bar.hide {
  top: -40px;
}

.main-content-wrapper {
  width: 100%;
  min-height: 100vh;
  padding-top: 140px;
}

/* ===== SCROLL INDICATOR STYLES ===== */
.scroll-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--dark);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--dark);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

.arrow-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrow-scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
  transform: rotate(45deg);
  animation: arrowPulse 2s infinite;
}

.arrow-scroll span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-scroll span:nth-child(3) {
  animation-delay: 0.4s;
}

.scroll-text {
  font-size: 12px;
  color: var(--dark);
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 1px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

@keyframes arrowPulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 4px;
    transform: translateX(-50%) scale(0.5);
  }

  .mouse {
    width: 18px;
    height: 30px;
    border-width: 1.5px;
    margin-bottom: 6px;
  }

  .wheel {
    width: 3px;
    height: 6px;
    top: 6px;
  }

  .arrow-scroll {
    gap: 3px;
  }

  .arrow-scroll span {
    width: 6px;
    height: 6px;
    border-width: 1.5px;
  }

  .scroll-text {
    font-size: 9px;
    margin-top: 3px;
    letter-spacing: 0.5px;
  }
}

/* ===== HOMEPAGE STYLES ===== */
.homepage-container {
  background-color: var(--bg-color);
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
  
  .homepage-container {
    background-image: url('mob.png');
    background-size: cover;
    background-position: center 40%;
  }
  
  .main-content-wrapper {
    padding-top: 80px;
  }
  
  .offer-bar {
    display: none;
  }
}

/* Offer Bar Marquee */
.offer-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

.offer-group {
  display: flex;
  gap: 60px;
  padding-right: 60px;
}

.offer-group span {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Dekko", cursive;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.offer-bar:hover .offer-marquee {
  animation-play-state: paused;
}

.logo-desktop {
  display: block;
}

.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 20%;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  text-decoration: none;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  font-family: "Dekko", cursive;
}

.nav-center a:hover {
  color: var(--secondary);
}

.cart-icon {
  width: 42px;
  height: 42px;
  border: 1.8px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s;
}

.cart-icon:hover {
  background: var(--dark);
  color: var(--text-light);
}

.mobile-logo {
  display: flex;
  align-items: center;
}

.mobile-logo .logo-img {
  height: 60px;
  transition: all 0.3s ease;
}

.bigger-logo .logo-img {
  height: 50px;
  transform: scale(1.2);
  transform-origin: center;
}

.advanced-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 50px;
  height: 50px;
  padding: 0;
  transition: all 0.3s;
}

.advanced-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.advanced-menu-icon span {
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s;
}

.advanced-menu-btn.active .advanced-menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.advanced-menu-btn.active .advanced-menu-icon span:nth-child(2) {
  opacity: 0;
}

.advanced-menu-btn.active .advanced-menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.advanced-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 100px;
  right: 20px;
  width: 200px;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border: 1px solid rgba(57, 78, 110, 0.1);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.advanced-mobile-menu.active {
  display: flex;
}

.advanced-mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid rgba(57, 78, 110, 0.1);
  font-family: "Dekko", cursive;
  text-align: left;
  transition: all 0.3s;
  position: relative;
}

.advanced-mobile-menu a:hover {
  color: var(--secondary);
  padding-left: 10px;
}

.advanced-mobile-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

.advanced-mobile-menu a:hover::before {
  width: 100%;
}

.advanced-mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
  color: var(--dark);
  font-family: "Dekko", cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.mobile-cart:hover {
  color: var(--secondary);
  padding-left: 10px;
}

.products-icon-btn {
  display: none;
}

.main-content {
  width: 100%;
  height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  align-items: center;
}

.hero-left {
  flex: 1;
  padding: 20px;
  color: var(--dark);
  text-align: left;
}

.hero-heading-wrapper {
  position: relative;
  display: inline-block;
}

.hero-heading-wrapper h1 {
  position: relative;
  z-index: 2;
  font-size: 120px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--dark);
  text-align: left;
  font-family: "Bagel Fat One", system-ui;
  font-weight: 400;
}

.heading-bg-img {
  position: absolute;
  z-index: 1;
  width: 250px;
  height: auto;
  pointer-events: none;
}

@media (min-width: 1025px) {
  .heading-bg-img {
    left: -250px;
    top: 50px;
  }
}

@media (max-width: 1024px) {
  .heading-bg-img {
    display: none;
  }
  
  .hero-heading-wrapper h1 {
    font-size: 50px;
  }
  
  .main-content {
    height: calc(100vh - 80px);
  }
}

.hero-left .small {
  font-size: 24px;
  vertical-align: middle;
  color: var(--dark);
  font-family: "Bagel Fat One", system-ui;
}

.features {
  display: flex;
  gap: 20px;
  margin-top: -20px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
}

.feature-item img {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

/* ===== CONTINUOUS PAGE STYLES ===== */
.continuous-page {
  background: #ffffff;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
  position: relative;
}

.continuous-hero {
  max-width: 1400px;
  margin: 40px auto 30px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 40px;
  align-items: start;
  padding: 0 40px;
  position: relative;
  height: calc(100vh - 200px);
  min-height: 600px;
  max-height: 800px;
}

.box-image {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.box-image img {
  width: 250%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  z-index: 10;
  position: relative;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
  transform: translateY(-20px);
}

.badge {
  position: absolute;
  width: 130px;
  height: 130px;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge img {
  width: 200%;
  height: 200%;
  object-fit: contain;
}

.badge-1 {
  left: -50px;
  top: 20%;
  transform: rotate(-55deg);
}

.badge-2 {
  right: -40px;
  top: 55%;
}

.badge-3 {
  width: 120px;
  height: 120px;
  left: -40px;
  bottom: 80px;
}

.testimonial-card {
  background: #394e6e;
  color: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  position: relative;
  width: 150%;
  height: 40%;
  z-index: 5;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 250px;
  box-shadow: 0 15px 30px #141e2933;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
  margin-left: -70px;
}

.quote-icon {
  font-size: 90px;
  line-height: 1;
  margin-bottom: -30px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Bagel Fat One", system-ui;
}

.testimonial-card p {
  font-size: 25px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Dekko", cursive;
}

.continuous-content {
  padding-left: 70px;
  z-index: 5;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  margin-top: 200px;
}

.continuous-heading {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Bagel Fat One", system-ui;
  color: var(--dark);
}

.continuous-heading span {
  color: #394e6e;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.product-list {
  list-style: none;
  margin-bottom: 35px;
  width: 100%;
}

.product-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dotted #ccc;
  padding: 14px 0;
  font-size: 22px;
  font-weight: 500;
  font-family: "Dekko", cursive;
}

.product-list li span:first-child {
  color: #333;
}

.product-list li span:last-child {
  color: #394e6e;
  font-weight: bold;
}

.order-button {
  background: var(--dark);
  color: var(--text-light);
  border: none;
  padding: 18px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  font-family: "Dekko", cursive;
}

.order-button:hover {
  background: #394e6e;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.order-button span {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.order-button:hover span {
  transform: translate(5px, -5px);
}

.continuous-features {
  max-width: 1200px;
  margin: 20px auto 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.feature-item-continuous {
  text-align: center;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease;
}

.feature-item-continuous:hover {
  transform: translateY(-5px);
}

.feature-item-continuous img {
  width: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-item-continuous:hover img {
  transform: scale(1.1);
}

.feature-item-continuous p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  font-family: "Dekko", cursive;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-page {
  padding: 100px 20px;
  background: #e4efff;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 46px;
  color: #394e6e;
  margin-bottom: 15px;
  font-family: "Bagel Fat One", system-ui;
  font-weight: 400;
}

.testimonials-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-family: "Dekko", cursive;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1800px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-33.33%));
  }
}

.testimonial-item {
  min-width: 400px;
  height: 300px;
  background: white;
  border-radius: 20px;
  padding: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px #141e2933;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
  font-family: "Dekko", cursive;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: #f2b705;
  position: absolute;
  left: -10px;
  top: -20px;
  font-family: "Bagel Fat One", system-ui;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f2b705;
}

.author-info h4 {
  font-size: 18px;
  color: #394e6e;
  margin-bottom: 5px;
  font-family: "Dekko", cursive;
  font-weight: 600;
}

.author-info p {
  font-size: 14px;
  color: #666;
  font-family: "Dekko", cursive;
}

.testimonials-container::before,
.testimonials-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-container::before {
  left: 0;
  background: linear-gradient(to right, #e4efff 0%, transparent 100%);
}

.testimonials-container::after {
  right: 0;
  background: linear-gradient(to left, #e4efff 0%, transparent 100%);
}

.testimonials-container:hover .testimonials-track {
  animation-play-state: paused;
}

/* ===== FIRST PAGE STYLES ===== */
#first-page {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.white-bg-third {
  background: #ffffff;
}

.top-content {
  text-align: center;
  padding: 40px 20px;
}

.small-text {
  display: inline-block;
  padding: 10px 18px;
  background: #f3efe9;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: "Dekko", cursive;
}

.main-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 120px;
  font-family: "Bagel Fat One", system-ui;
  color: #141e29;
}

.main-heading span {
  color: #394e6e;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-text {
  position: absolute;
  top: -20px;
  left: 10px;
  color: #e4efff;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  font-family: "Dekko", cursive;
}

.main-image {
  width: 135%;
  max-width: 2000px;
  display: block;
  margin: 0 auto;
  margin-top: -350px;
  position: relative;
  z-index: 1;
  margin-left: -250px;
}

.mobile-image {
  display: none;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.stickers {
  position: absolute;
  width: 200px;
  z-index: 3;
}

.sticker-1 {
  top: 60%;
  left: 250px;
  transform: translateY(-50%);
}

.sticker-2 {
  top: 10%;
  right: 350px;
}

.order-btn {
  position: absolute;
  bottom: 1880px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Dekko", cursive;
  font-weight: 600;
}

.order-btn:hover {
  background: #394e6e;
}

/* ===== SECOND PAGE STYLES ===== */
#second-page {
  width: 100%;
  min-height: 100vh;
  color: #394e6e;
  padding: 40px 20px 0;
}

.white-bg-fourth {
  background: #ffffff;
}

.desktop-category {
  display: flex;
  justify-content: center;
  gap: 95px;
  padding: 20px;
  flex-wrap: wrap;
}

.category {
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  color: #999;
  transition: all 0.3s;
  padding: 10px;
  min-width: 100px;
  font-family: "Dekko", cursive;
}

.category img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  display: block;
  margin: 0 auto 6px;
  transition: transform 0.3s;
}

.category span {
  font-size: 14px;
  display: block;
  white-space: nowrap;
  font-family: "Dekko", cursive;
}

.category.active {
  color: #141e29;
  font-weight: bold;
  transform: translateY(-5px);
}

.category:hover {
  color: #394e6e;
}

.category:hover img {
  transform: scale(1.1);
}

.mobile-category-container {
  display: none;
}

.content {
  display: block;
}

.desktop-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  min-height: calc(100vh - 200px);
  gap: 60px;
}

.image-content {
  flex: 1;
  position: relative;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content:hover {
  transform: translateY(-5px);
}

.category-image {
  max-width: 100%;
  height: 700px;
  max-height: 700px;
  object-fit: contain;
  margin-left: 220px;
  transition: opacity 0.3s ease;
}

.category-image.active {
  display: block !important;
  opacity: 1;
  z-index: 2;
}

.category-image:not(.active) {
  display: none !important;
  opacity: 0;
  z-index: 1;
}

.text-content {
  flex: 1;
  max-width: 45%;
  text-align: left;
}

.category-heading {
  transition: opacity 0.3s ease;
}

.category-heading.active {
  display: block !important;
  opacity: 1;
}

.category-heading:not(.active) {
  display: none !important;
  opacity: 0;
}

.collection-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #141e29;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: -40px;
  font-family: "Dekko", cursive;
}

#second-page h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #394e6e;
  font-weight: 700;
  text-align: left;
  margin-left: -40px;
  font-family: "Bagel Fat One", system-ui;
}

.explore {
  text-decoration: none;
  color: #141e29;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 20px;
  text-align: left;
  margin-left: -40px;
  font-family: "Dekko", cursive;
}

.explore:hover {
  color: #e4efff;
}

.mobile-layout {
  display: none;
}

.exploree {
  text-decoration: none;
  color: #141e29;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 20px;
  text-align: left;
  margin-left: -40px;
  font-family: "Dekko", cursive;
}

.exploree:hover {
  color: #e4efff;
}

.mobile-layout {
  display: none;
}

/* ===== NEW HERO SECTION ===== */
.hero-wrapper {
  display: flex;
  gap: 40px;
  padding: 80px;
  max-width: 100%;
  background: #e4efff;
  justify-content: center;
  align-items: center;
}

.hero-item {
  position: relative;
  width: 50%;
  overflow: visible;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-item.hero-left {
  margin-left: 170px;
}

.hero-item.hero-right {
  margin-left: -90px;
}

.hero-img {
  width: 1000px;
  height: 1000px;
  max-width: 1000px;
  max-height: 1000px;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
}

.hero-content {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  padding: 40px;
  max-width: 90%;
  z-index: 2;
}

.hero-content.left {
  left: 30px;
  color: #141e29;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
  margin-top: -20px;
}

.hero-content.right {
  left: 245px;
  color: #fff;
  margin-top: -60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.hero-main-heading {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 26px;
  font-family: "Bagel Fat One", system-ui;
  font-weight: 400;
}

.hero-content.left .hero-main-heading {
  color: #000;
}

.hero-content.right .hero-main-heading {
  color: #fff;
}

.hero-main-heading span {
  color: #394e6e;
  display: inline;
}

.hero-content .small-text {
  background: transparent;
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0;
  margin-left: -400px;
  color: #fff;
  font-family: "Dekko", cursive;
}

.small-text2 {
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: underline;
  display: inline-block;
  font-weight: bold;
  margin-left: 5px;
  font-family: "Dekko", cursive;
}

.small-text22 {
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: underline;
  display: inline-block;
  font-weight: bold;
  margin-left: 5px;
  font-family: "Dekko", cursive;
}

.hero-content .btn {
  padding: 14px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 34px;
  font-size: 15px;
  display: inline-block;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Dekko", cursive;
}

.hero-content .btn:hover {
  background: #394e6e;
}

/* ===== FOOTER SECTION ===== */
.footer {
  background: #141e29;
  color: #fff;
  padding: 60px 20px 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.footer-logo {
  height: 220px;
  transform: scale(0.7);   /* ⬅️ visually smaller */
  transform-origin: center;
  margin: -60px auto 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-left h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Bagel Fat One", system-ui;
  color: #394e6e;
  margin-top: -50px;
}

.footer-left h2 span {
  color: #e4efff;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #394e6e;
  font-weight: 600;
  font-family: "Dekko", cursive;
}

.footer-links a {
  display: block;
  color: #e4efff;
  text-decoration: none;
  margin: 10px 0;
  transition: color 0.3s;
  font-size: 15px;
  font-family: "Dekko", cursive;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #394e6e;
  margin-top: 40px;
  font-family: "Dekko", cursive;
}

.abdul-link {
  color: #e4efff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.abdul-link:hover {
  color: #394e6e;
  text-decoration: underline;
}

/* ===== CONTACT MODAL STYLES ===== */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 30px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--dark);
}

.modal-content h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: "Bagel Fat One", system-ui;
}

.modal-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  font-family: "Dekko", cursive;
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  font-family: "Dekko", cursive;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-option i {
  font-size: 30px;
}

.call-option {
  background: #28a745;
}

.whatsapp-option {
  background: #25D366;
}

/* ===== FADE IN ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop */
@media (min-width: 1025px) {
  .desktop-navbar {
    display: flex;
  }
  
  .mobile-header {
    display: none;
  }
  
  .offer-bar {
    display: flex;
  }
  
  .white-bg-third,
  .white-bg-fourth {
    background: #ffffff;
  }
}

/* Small laptop hero spacing fix */
@media screen and (min-width: 1025px) and (max-width: 1440px) and (max-height: 900px) {
  .homepage-container .hero {
    align-items: flex-start;
    padding-top: 24px;
  }

  .homepage-container .hero-left {
    padding-top: 56px;
  }

  .homepage-container .hero-heading-wrapper h1 {
    margin-top: 16px;
  }
}

/* Short-height laptop hero spacing fix (includes 1522x714 and similar) */
@media screen and (min-width: 1025px) and (max-height: 760px) {
  .homepage-container .hero {
    align-items: flex-start;
    padding-top: 0;
  }

  .homepage-container .hero-left {
    padding-top: 40px;
  }

  .homepage-container .hero-heading-wrapper h1 {
    font-size: 108px;
    margin-top: -2px;
  }
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .desktop-navbar {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
  
  .offer-bar {
    display: none;
  }
  
  .main-content-wrapper {
    padding-top: 80px;
  }
  
  .hero {
    padding-top: 0;
    align-items: flex-start;
  }
  
  .hero-left {
    padding-top: 60px;
  }
  
  .hero-heading-wrapper h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .hero-left .small {
    font-size: 18px;
  }
  
  .features {
    margin-top: 30px;
    gap: 15px;
    justify-content: center;
    margin-left: -350px;
  }
  
  .feature-item img {
    width: 110px;
    height: 110px;
  }
  
  .reduced-size-first {
    min-height: 50vh !important;
  }
  
  .reduced-size-first .main-content {
    height: 50vh !important;
  }
  
  .continuous-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
    height: auto;
    min-height: auto;
    max-height: none;
    margin: 30px auto 40px;
    padding: 0 20px;
  }
  
  .box-image {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 3;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .box-image img {
    max-width: 500px;
    width: 160%;
    transform: translateY(0);
    position: relative;
    z-index: 3;
    top: 140px;
  }
  
  .testimonial-card {
    grid-column: 1;
    grid-row: 1;
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    top: -110px;
    transform: translateY(-30px);
    padding: 25px 20px;
    opacity: 0.95;
    align-self: center;
    height: auto;
    left: 1%;
    transform: translateX(-50%) translateY(-30px);
  }
  
  .testimonial-card p {
    font-size: 16px;
  }
  
  .quote-icon {
    font-size: 70px;
    margin-bottom: -20px;
  }
  
  .continuous-content {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
    text-align: center;
    margin-top: 80px;
  }
  
  .continuous-heading {
    font-size: 28px;
  }
  
  .product-list li {
    font-size: 18px;
    padding: 12px 0;
  }
  
  .order-button {
    padding: 16px 28px;
    font-size: 18px;
  }
  
  .badge {
    width: 80px;
    height: 80px;
    z-index: 4;
  }
  
  .badge-1 {
    left: 30%;
    top: 20%;
  }
  
  .badge-2 {
    right: 35%;
    top: 50%;
  }
  
  .badge-3 {
    left: 30%;
    transform: translateX(-50%);
    bottom: 10%;
    top: auto;
  }
  
  .continuous-features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 40px 30px;
    margin: 30px auto 50px;
    grid-column: 1;
  }
  
  .feature-item-continuous img {
    width: 60px;
  }
  
  .white-bg-third {
    background: #ffffff;
  }
  
  .reduced-size-third {
    min-height: 50vh !important;
  }
  
  .main-heading {
    font-size: 30px;
    margin-top: 100px;
  }
  
  .brand-text {
    top: 350px;
    margin-left: 20px;
    font-size: 13px;
  }
  
  .main-image {
    max-width: 1000px;
    margin-top: -260px;
    margin-left: -20px;
  }
  
  .stickers {
    width: 120px;
  }
  
  .sticker-1 {
    left: 220px;
    top: 180px;
  }
  
  .sticker-2 {
    right: 300px;
    top: 10px;
  }
  
  .order-btn {
    bottom: 50px;
    padding: 12px 24px;
    margin-bottom: 45px;
  }
  
  .brand-text {
    top: -20px;
    left: 100px;
    font-size: 12px;
  }
  
  .white-bg-fourth {
    background: #ffffff;
  }
  
  .reduced-size-fourth {
    transform: scale(0.98);
    transform-origin: top center;
  }
  
  #second-page {
    padding: 30px 20px 0;
  }
  
  .desktop-category {
    display: none;
  }
  
  .mobile-category-container {
    display: block;
    margin-bottom: 30px;
  }
  
  .mobile-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  
  .category-viewport {
    width: 250px;
    overflow: hidden;
    margin: 0 10px;
  }
  
  .mobile-category-bar {
    display: flex;
    max-width: 100%;
    width: 100%;
    gap: 7px;
    transition: transform 0.6s ease;
  }
  
  .mobile-category {
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    color: #999;
    transition: all 0.3s;
    min-width: 100px;
    opacity: 0.5;
    padding: 5px;
    font-family: "Dekko", cursive;
  }
  
  .mobile-category.active {
    color: #394e6e;
    font-weight: bold;
    opacity: 1;
    transform: scale(1.05);
  }
  
  .mobile-category img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: block;
    margin: 0 auto 4px;
  }
  
  .mobile-category span {
    font-size: 13px;
    display: block;
    white-space: nowrap;
  }
  
  .nav-arrow {
    background: #394e6e;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
  }
  
  .nav-arrow:hover {
    background: #141e29;
  }
  
  .category-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .indicator.active {
    background: #394e6e;
  }
  
  .desktop-layout {
    display: none;
  }
  
  .mobile-layout {
    display: flex;
    flex-direction: column;
    padding: 30px 40px;
    text-align: left;
    gap: 40px;
  }
  
  .mobile-text-content {
    text-align: left;
  }
  
  .mobile-category-image {
    max-width: 100%;
    height: 900px;
    display: block;
    max-height: 900px;
    object-fit: contain;
    margin-top: -200px;
  }
  
  #second-page h1 {
    font-size: 48px;
    text-align: left;
    margin-left: 90px;
  }
  
  .collection-title {
    text-align: left;
    margin-left: 90px;
  }
  
  .explore {
    text-align: left;
    margin-left: 90px;
  }

  .exploree {
    text-align: left;
    margin-left: 90px;
  }
  
  .reduced-size-fifth {
    transform: scale(0.98);
    transform-origin: top center;
  }
  
  .hero-wrapper {
    flex-direction: column;
    padding: 40px;
    gap: 60px;
    background: #e4efff;
  }
  
  .hero-item {
    width: 100%;
    height: 500px;
    margin: 0 !important;
    right: 0 !important;
    left: 0 !important;
  }
  
  .hero-img {
    width: auto;
    height: auto;
    max-width: 1000px;
    max-height: 1000px;
    transform: scale(1);
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
    max-width: 90%;
    text-align: left;
    background: none !important;
    margin-top: 0 !important;
    z-index: 2;
  }
  
  .hero-content.left {
    left: 80px;
    right: auto;
    color: #000;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    top: 60%;
  }
  
  .hero-content.right {
    left: 280px;
    right: auto;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    top: 23%;
  }
  
  .hero-main-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .hero-content .small-text {
    font-size: 20px;
    margin-left: -380px;
  }
  
  .small-text2 {
    margin-left: 20px;
    margin-top: 0;
    font-size: 20px;
  }

  .small-text22 {
    margin-left: 20px;
    margin-top: 0;
    font-size: 20px;
  }
  
  .hero-content .btn {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
    width: auto;
  }
  
  .smaller-testimonials {
    transform: scale(0.95);
    transform-origin: top center;
    padding: 70px 20px;
  }
  
  .testimonial-item {
    min-width: 300px;
    height: 280px;
    padding: 25px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-header {
    height: 90px;
    min-height: 90px;
    padding: 0 15px;
    box-sizing: border-box;
    overflow: visible;
  }

  .products-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1.8px solid #394e6e;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    background: #394e6e;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
  }

  .products-icon-btn i {
    font-size: 16px;
  }

  .mobile-logo {
    flex-shrink: 0;
    margin-left: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .mobile-logo .logo-img {
    height: 122px;
    width: auto;
    max-height: none;
    flex-shrink: 0;
    object-fit: contain;
  }

  .bigger-logo .logo-img {
    height: 138px;
    width: auto;
    transform: none;
    max-height: none;
    flex-shrink: 0;
    object-fit: contain;
  }

  .advanced-menu-btn {
    width: 42px;
    height: 42px;
    border: 1.8px solid #394e6e;
    border-radius: 50%;
    background: #394e6e;
    color: #ffffff;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
  }

  .advanced-menu-icon {
    width: 24px;
    gap: 5px;
  }

  .advanced-menu-icon span {
    height: 2.5px;
    background: #ffffff;
  }

  .advanced-mobile-menu {
    top: 80px;
    right: 15px;
    width: 180px;
  }

  /* Homepage hero: same alignment style as mobile, but slightly bigger */
  .homepage-container .hero {
    align-items: flex-start;
    padding-top: 0;
  }

  .homepage-container .hero-left {
    padding-top: 72px;
  }

  .homepage-container .hero-heading-wrapper h1 {
    font-size: 46px;
    margin-bottom: 18px;
    line-height: 1.15;
  }

  .homepage-container .hero-left .small {
    font-size: 17px;
  }

  .homepage-container .features {
    margin-top: 12px;
    gap: 12px;
    margin-left: auto;
    justify-content: flex-start;
  }

  .homepage-container .feature-item img {
    width: 100px;
    height: 100px;
  }

  /* Keep tablet hero alignment consistent with Surface Duo style */
  .hero-wrapper {
    padding: 20px 26px;
    gap: 10px;
    background: #e4efff;
  }

  .hero-item {
    height: 280px;
    width: 100%;
    margin: 0 !important;
  }

  .hero-img {
    width: 185%;
    height: auto;
    max-width: 780px;
    transform: scale(1);
    margin-top: -95px;
  }

  .hero-content {
    position: absolute;
    padding: 4px;
    max-width: 95%;
    text-align: left;
    transform: scale(0.78);
  }

  .hero-content.left {
    top: 70% !important;
    left: -5px !important;
    right: auto !important;
    transform: translateY(-100%) scale(0.78);
    max-width: none;
    white-space: nowrap;
    color: #000;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
  }

  .hero-content.right {
    top: 8% !important;
    left: 35px !important;
    right: auto !important;
    transform: translateY(-80%) scale(0.78);
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  }

  .hero-main-heading {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-content .small-text {
    font-size: 15px;
    margin-left: -380px;
    margin-bottom: -40px;
  }

  .small-text2,
  .small-text22 {
    font-size: 15px;
    margin-top: -40px;
    margin-left: -5px;
    display: inline-block;
  }

  .hero-content .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: auto;
  }

  .hero-content.left .btn {
    padding: 12px 26px;
    font-size: 15px;
    border-radius: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-header {
    height: 90px;
    min-height: 90px;
    padding: 0 15px;
    box-sizing: border-box;
    overflow: visible;
  }

  .products-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1.8px solid #394e6e;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    background: #394e6e;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
  }

  .products-icon-btn i {
    font-size: 16px;
  }
  
  .mobile-logo {
    flex-shrink: 0;
    margin-left: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .mobile-logo .logo-img {
    height: 122px;
    width: auto;
    max-height: none;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  .bigger-logo .logo-img {
    height: 138px;
    width: auto;
    transform: none;
    max-height: none;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  .advanced-menu-btn {
    width: 42px;
    height: 42px;
    border: 1.8px solid #394e6e;
    border-radius: 50%;
    background: #394e6e;
    color: #ffffff;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
  }

  .advanced-menu-icon {
    width: 24px;
    gap: 5px;
  }
  
  .advanced-menu-icon span {
    height: 2.5px;
    background: #ffffff;
  }
  
  .advanced-mobile-menu {
    top: 80px;
    right: 15px;
    width: 180px;
  }
  
  .hero-heading-wrapper h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .hero-left .small {
    font-size: 16px;
  }
  
  .features {
    margin-top: 5px;
    gap: 10px;
    margin-left: auto;
  }
  
  .feature-item img {
    width: 90px;
    height: 90px;
  }
  
  .reduced-size-first {
    min-height: 60vh !important;
  }
  
  .reduced-size-first .main-content {
    height: 50vh !important;
  }
  
  .continuous-hero {
    padding: 0 20px;
    min-height: 800px;
  }
  
  .testimonial-card {
    width: 75%;
    max-width: 380px;
    transform: translateX(-275px);
    margin-top: -60px;
  }
  
  .box-image img {
    max-width: 550px;
    width: 150%;
  }
  
  .continuous-content {
    margin-top: 100px;
  }
  
  .continuous-heading {
    font-size: 32px;
  }
  
  .badge {
    width: 70px;
    height: 70px;
  }
  
  .badge-1 {
    left: 8%;
    top: 22%;
  }
  
  .badge-2 {
    right: 14%;
    top: 52%;
  }
  
  .badge-3 {
    left: 10%;
    transform: translateX(-50%);
    bottom: 8%;
  }
  
  .continuous-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-item-continuous img {
    width: 40px;
  }
  
  .white-bg-third {
    background: #ffffff;
  }
  
  .reduced-size-third {
    min-height: 50vh !important;
  }
  
  .main-image {
    display: none;
  }
  
  .mobile-image {
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
  }
  
  .small-text {
    padding: 8px 16px;
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .main-heading {
    font-size: 24px;
    margin-top: 70px;
    line-height: 1.3;
  }
  
  .brand-text {
    top: -40px;
    left: 20px;
    font-size: 7px;
  }
  
  .stickers {
    width: 60px;
  }
  
  .sticker-1 {
    left: 20%;
    top: 38%;
  }
  
  .sticker-2 {
    right: 25%;
    top: -10px;
  }
  
  .order-btn {
    bottom: 25px;
    padding: 9px 18px;
    font-size: 13px;
    min-width: 190px;
    margin-bottom: -5px;
  }
  
  .btn-text {
    font-size: 13px;
  }
  
  .white-bg-fourth {
    background: #ffffff;
  }
  
  .reduced-size-fourth {
    transform: scale(0.95);
    transform-origin: top center;
  }
  
  #second-page {
    padding: 20px 15px 0;
    min-height: 90vh;
  }
  
  .desktop-category {
    display: none;
  }
  
  .mobile-category-container {
    display: block;
    margin-bottom: 25px;
  }
  
  .mobile-nav-wrapper {
    gap: 5px;
  }
  
  .category-viewport {
    width: 170px;
  }
  
  .mobile-category {
    min-width: 80px;
  }
  
  .mobile-category img {
    width: 22px;
    height: 22px;
  }
  
  .mobile-category span {
    font-size: 11px;
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .desktop-layout {
    display: none;
  }
  
  .mobile-layout {
    display: flex;
    flex-direction: column;
    padding: 20px 15px 30px;
    gap: 30px;
  }
  
  .mobile-category-image {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    margin-top: -90px;
  }
  
  #second-page h1 {
    font-size: 36px;
    margin-left: 20px;
  }
  
  .collection-title {
    margin-left: 20px;
  }
  
  .explore {
    margin-left: 20px;
  }
  
  .exploree {
    margin-left: 20px;
  }
  .reduced-size-fifth {
    transform: scale(0.95);
    transform-origin: top center;
  }
  
  .hero-wrapper {
    padding: 10px 20px;
    gap: 0px;
    background: #e4efff;
  }
  
  .hero-item {
    height: 200px;
    width: 100%;
    margin: 0 !important;
  }
  
  .hero-img {
    width: 200%;
    height: auto;
    max-width: 600px;
    transform: scale(1);
    margin-top: -110px;
  }
  
  .hero-content {
  position: absolute;
  padding: 2px;
  max-width: 95%;
  text-align: left;
  transform: scale(0.6);
}

/* 🔥 LEFT → MUCH more up + left */
.hero-content.left {
  top: 18% !important;
  right: 120px !important;
  transform: translateY(-100%) scale(0.6);

  max-width: none;          /* remove restriction */
  white-space: nowrap;      /* ⬅️ keeps text in ONE LINE */

  color: #000;
  text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
}

/* 🔥 RIGHT → MUCH more up */
.hero-content.right {
  top: 0%;                  /* top of container */
  left: 40px !important;               /* slight left */
  transform: translateY(-80%) scale(0.6);
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
  
  .hero-main-heading {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .hero-content .small-text {
    font-size: 12px;
    margin-left: -200px;
    margin-bottom: -50px;
  }
  
  .small-text2 {
    margin-left: -5px;
    margin-top: -60px;
    font-size: 12px;
    display: inline-block;
  }

  .small-text22 {
    margin-left: -5px;
    margin-top: -60px;
    font-size: 12px;
    display: inline-block;
  }
  
  .hero-content .btn {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
    width: auto;
  }

  .hero-content.left .btn {
    padding: 12px 26px;
    font-size: 15px;
    border-radius: 36px;
  }
  
  @media screen and (min-width: 391px) and (max-width: 430px) {
    .hero-content.left {
      top: 70% !important;
      left: -5px !important;
    }
    
    .hero-content.right {
      top: 8% !important;
      left: 35px !important;
    }

    .hero-content {
      transform: scale(0.72);
    }

    .hero-main-heading {
      font-size: 34px;
      line-height: 1.2;
    }
    
    .hero-content .small-text {
      font-size: 14px;
      margin-left: -380px;
    }

    .small-text2,
    .small-text22 {
      font-size: 14px;
      margin-top: -45px;
      margin-left: -5px;
    }

    .hero-content .btn {
      font-size: 12px;
      padding: 8px 16px;
    }
  }
  
  .smaller-testimonials {
    transform: scale(0.92);
    transform-origin: top center;
    padding: 50px 15px;
  }
  
  .testimonials-page {
    padding: 50px 15px;
  }
  
  .testimonials-header h2 {
    font-size: 32px;
  }
  
  .testimonial-item {
    min-width: 50px;
    height: 260px;
    padding: 20px;
  }
  
  .testimonials-container::before,
  .testimonials-container::after {
    width: 50px;
  }
  
  .footer {
    padding: 40px 15px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    overflow: hidden;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-left h2 {
    font-size: 28px;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
  
  .contact-options {
    flex-direction: column;
    gap: 15px;
  }
}

/* iPad Pro and Tablet Specific Fixes */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .hero-content.right {
    top: 8% !important;
    left: 35px !important;
  }
  
  .hero-content.left {
    top: 70% !important;
    left: -5px !important;
  }
  
  .hero-main-heading {
    font-size: 38px;
  }
  
  .testimonial-card {
    transform: translateX(-30%) translateY(-30px);
    left: 15%;
  }
  
  .box-image img {
    width: 140%;
    top: 120px;
  }
  
  .continuous-content {
    margin-top: 60px;
  }
  
  #second-page h1 {
    margin-left: 70px;
    font-size: 42px;
  }
  
  .collection-title {
    margin-left: 70px;
  }
  
  .explore {
    margin-left: 70px;
  }

  .exploree {
    margin-left: 70px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .hero-content.right {
    top: 8% !important;
    left: 35px !important;
  }
  
  .hero-content.left {
    top: 70% !important;
    left: -5px !important;
  }
  
  .testimonial-card {
    margin-left: -40px;
    width: 130%;
  }
  
  .box-image img {
    width: 220%;
  }
  
  .continuous-content {
    margin-top: 150px;
    padding-left: 30px;
  }
}

/* ===== LAPTOP SCREEN ADJUSTMENTS - ALL YOUR REQUESTED CHANGES ===== */
@media screen and (min-width: 1025px) and (max-width: 1920px) {
  
  /* 1. Move 4 icons a little more downer */
  .continuous-features {
    margin-top: 120px !important;
  }
  
  .feature-item-continuous {
    transform: translateY(15px);
  }
  
  /* 2. Testimonial card - move to right side little bit */
  .testimonial-card {
    margin-left: -50px !important;
    transform: translateX(15px) !important;
  }
  
  /* 3. Third page - order button little bit upper and brand-text little bit lower */
  .order-btn {
    bottom: 190px !important;
  }
  
  .brand-text {
    top: -10px !important;
  }
  
  /* 4. Fourth page - leave space between image and text */
  .desktop-layout {
    gap: 80px !important;
    padding: 60px 100px !important;
  }
  
  .image-content {
    margin-right: 40px;
  }
  
  .category-image {
    margin-left: 180px;
  }
  
  .text-content {
    padding-left: 30px;
  }
  
  /* 5. Fifth page - reduce size of both hero completely (text, image, button all) */
  .hero-wrapper {
    gap: 30px;
    padding: 60px;
  }
  
  .hero-item {
    height: 550px;
    transform: scale(0.9);
  }
  
  .hero-item.hero-left {
    margin-left: 120px;
  }
  
  .hero-item.hero-right {
    margin-left: -70px;
  }
  
  .hero-img {
    width: 800px;
    height: 800px;
  }
  
  .hero-content {
    transform: translateY(-50%) scale(0.9);
  }
  
  .hero-content.left {
    left: 20px;
    top: 65%;
    margin-top: -15px;
  }
  
  .hero-content.right {
    left: 200px;
    top: 38%;
    margin-top: -200px;
  }
  
  .hero-main-heading {
    font-size: 32px;
    margin-bottom: 18px;
  }
  
  .hero-content .small-text {
    font-size: 12px;
    margin-left: -300px;
  }
  
  .hero-content .btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* Fix for Explore Collection button on mobile - matching desktop style */
@media (max-width: 1024px) {
  .exploree {
    display: inline-block !important;
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none !important;
    color: #141e29 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: "Dekko", cursive !important;
    transition: color 0.3s !important;
    margin: 20px 0 20px 20px !important;
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  .exploree:hover {
    color: #e4efff !important;
  }
  
  .exploree:active {
    color: #e4efff !important;
  }
  
  .mobile-text-content {
    position: relative !important;
    z-index: 100 !important;
  }
  
  .mobile-category-image {
    position: relative !important;
    z-index: 1 !important;
  }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
  .exploree {
    margin-left: 20px !important;
    font-size: 15px !important;
  }
}

/* ===== LAPTOP SCREEN ADJUSTMENTS - CENTER BIG IMAGE ON THIRD PAGE ===== */
@media screen and (min-width: 1025px) and (max-width: 1920px) {
  
  /* Center the big image on third page */
  .main-image {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateX(0) !important;
    display: block !important;
    position: relative !important;
  }
  
  /* Adjust the image container to help with centering */
  .image-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .image-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  /* Keep your existing adjustments */
  .order-btn {
    bottom: 250px !important;
  }
  
  .brand-text {
    top: 20px !important;
  }
}

/* ===== LAPTOP SCREEN ADJUSTMENTS - REDUCE SPACE BELOW CATEGORY ICONS ===== */
@media screen and (min-width: 1025px) and (max-width: 1920px) {
  
  /* Reduce space below category icons on 4th page */
  .desktop-category {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
  }
  
  /* Adjust the main layout to bring content up */
  .desktop-layout {
    margin-top: -30px !important;
    padding-top: 20px !important;
  }
  
  /* Keep your existing spacing between image and text */
  .desktop-layout {
    gap: 80px !important;
    padding: 60px 100px !important;
  }
  
  .image-content {
    margin-right: 40px;
  }
  
  .category-image {
    margin-left: 180px;
  }
  
  .text-content {
    padding-left: 30px;
  }
}

/* ===== LAPTOP SCREEN ADJUSTMENTS - 5TH PAGE HERO SECTION (LAPTOP) ===== */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  
  /* Keep the reduced size for hero images */
  .hero-wrapper {
    gap: 30px;
    padding: 60px;
  }
  
  .hero-item {
    height: 550px;
    transform: scale(0.9);
  }
  
  .hero-item.hero-left {
    margin-left: 120px;
  }
  
  .hero-item.hero-right {
    margin-left: -70px;
  }
  
  .hero-img {
    width: 800px;
    height: 800px;
  }
  
  /* LAPTOP ADJUSTMENTS - Left content more left */
  .hero-content.left {
    left: -30px !important;
    top: 70% !important;
    margin-top: -15px;
  }
  
  /* LAPTOP ADJUSTMENTS - Right content position */
  .hero-content.right {
    left: 120px;
    top: 62% !important;
    margin-top: -180px;
  }
  
  /* Fine-tune the text sizes */
  .hero-main-heading {
    font-size: 32px;
    margin-bottom: 18px;
  }
  
  .hero-content .small-text {
    font-size: 12px;
    margin-left: -300px;
  }
  
  .hero-content .btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* ===== DESKTOP ADJUSTMENTS (LARGER SCREENS) ===== */
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  
  /* Keep desktop hero size larger */
  .hero-wrapper {
    gap: 40px;
    padding: 70px;
  }
  
  .hero-item {
    height: 620px;
    transform: scale(1);
  }
  
  .hero-item.hero-left {
    margin-left: 150px;
  }
  
  .hero-item.hero-right {
    margin-left: -80px;
  }
  
  .hero-img {
    width: 950px;
    height: 950px;
  }
  
  /* DESKTOP ADJUSTMENTS - Right content down */
  .hero-content.right {
    left: 240px !important;
    top: 70% !important;   /* increase this */
    margin-top: -250px;    /* reduce negative */
    text-align: center;
  }
  
  /* DESKTOP ADJUSTMENTS - Left content */
  .hero-content.left {
    left: 25px;
    top: 70% !important;
    margin-top: -15px;
  }
  
  /* Scale text for desktop */
  .hero-main-heading {
    font-size: 38px;
    margin-bottom: 22px;
  }
  
  .hero-content .small-text {
    font-size: 13px;
    margin-left: -350px;
  }
  
  .hero-content .btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ===== VERY LARGE DESKTOP SCREENS (ABOVE 1920px) ===== */
@media screen and (min-width: 1921px) {
  
  /* Original sizes for very large screens */
  .hero-wrapper {
    gap: 40px;
    padding: 80px;
  }
  
  .hero-item {
    height: 650px;
    transform: scale(1);
  }
  
  .hero-item.hero-left {
    margin-left: 170px;
  }
  
  .hero-item.hero-right {
    margin-left: -90px;
  }
  
  .hero-img {
    width: 1000px;
    height: 1000px;
  }
  
  /* Right content position */
  .hero-content.right {
    left: 245px;
    top: 55%;
    margin-top: -240px;
    text-align: center;
  }
  
  /* Left content */
  .hero-content.left {
    left: 30px;
    top: 70%;
    margin-top: -20px;
  }
  
  .hero-main-heading {
    font-size: 40px;
  }
}
@media screen and (max-width: 390px) {

  .hero-content {
    transform: scale(0.72); /* slightly bigger overall */
  }

  /* LEFT → same position */
  .hero-content.left {
    top: 70% !important;
    left: -5px !important;
  }

  /* RIGHT → same */
  .hero-content.right {
    top: 8% !important;
    left: 35px !important;
  }

  .hero-main-heading {
    font-size: 34px;   /* ⬅️ increased from 28px */
    line-height: 1.2;  /* keeps it tight */
  }

  .hero-content .small-text {
    font-size: 14px;   /* ⬅️ make subtext readable */
    margin-left: -380px; /* slightly adjusted */
  }
}

