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

body {
font-family: Inter, Arial, sans-serif;
}

/* smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Header */
header {
width: 100%;
background: #ffffff;
border-bottom: 1px solid #e5e5e5;
}

.nav-container {
max-width: 1200px;
margin: auto;
padding: 1rem;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
}

/* Logo */
.logo img {
height: 40px;
}

/* Navigation */
nav ul {
display: flex;
align-items: center;
gap: 2rem;
list-style: none;
}

nav a {
text-decoration: none;
color: #111;
font-weight: 500;
font-size: 0.95rem;
}

/* Dropdown */
.dropdown {
position: relative;
}

.dropdown-menu {
position: absolute;
top: 90%;
left: 0;
background: #fff;
min-width: 160px;
border-radius: 6px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
display: none;
}

.dropdown-menu li {
padding: 0.7rem 1rem;
}

.dropdown-menu li a {
font-size: 0.9rem;
color: #333;
}

/* Desktop dropdown hover */
.dropdown:hover .dropdown-menu {
display: block;
background-color: white;
z-index: 10;
}

/* Hamburger */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 6px;
}

.hamburger span {
width: 25px;
height: 3px;
background: #111;
transition: all 0.3s ease;
}

/* Hamburger active (X) */
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translateY(-8px);
}

   
    /* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

/* Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 600px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

.hero-btn {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: #0dccca;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #0bb3b1;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
}

.hero-arrow.left {
  left: 20px;
}

.hero-arrow.right {
  right: 20px;
}

/* About Section */
.about {
  padding: 5rem 1.5rem;
  background: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Text */
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #1f0d26;
}

.about-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-top: 1.5rem;
}

/* Image */
.about-image img {
  width: 100%;
  border-radius: 10%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



/* Designer Section */
.designer {
  padding: 5rem 1.5rem;
  background: #f9f9f9;
}

.designer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Text */
.designer-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #1f0d26;
}

.designer-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.designer-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-top: 1.5rem;
}

/* Image */
.designer-image img {
  width: 100%;
  border-radius: 10%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


/* Designer Button */
.designer-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: #0dccca;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.designer-btn:hover {
  background: #0bb3b1;
  transform: translateY(-2px);
}



/* Children Wears Section */
.children {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.children-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Text */
.children-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #1f0d26;
}

.children-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.children-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-top: 1.5rem;
}

/* Image */
.children-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Children Button */
.children-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: #0dccca;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.children-btn:hover {
  background: #0bb3b1;
  transform: translateY(-2px);
}

/* Children Carousel */
.children-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  order: 2; /* moves image to the right */
}

.children-text {
  order: 1; /* moves text to the left */
}


/* Slides */
.children-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  /* border-radius: 100%; */
}

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

/* Arrows */
.children-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.children-arrow.left {
  left: 15px;
}

.children-arrow.right {
  right: 15px;
}

/* Adult Wears Section */
.adult {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.adult-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* text left, image right */
  gap: 3rem;
  align-items: center;
}

/* Text */
.adult-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #1f0d26;
}

.adult-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.adult-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-top: 1.5rem;
}

/* Button */
.adult-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: #0dccca;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.adult-btn:hover {
  background: #0bb3b1;
  transform: translateY(-2px);
}

/* Carousel */
.adult-image {
  position: relative;
  width: 100%;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  order: 1; /* moves image to the left */
}

.adult-text {
  order: 2; /* moves text to the right */
}

.adult-slide {
  /* position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out; */
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 100%;
}

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

/* Arrows */
.adult-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.adult-arrow.left {
  left: 15px;
}

.adult-arrow.right {
  right: 15px;
}


/* Custom Wears Section */
.custom {
  padding: 5rem 1.5rem;
  background: #f9f9f9;
}

.custom-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* image left, text right */
  gap: 3rem;
  align-items: center;
}

/* Text */
.custom-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: #1f0d26;
}

.custom-text h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.custom-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-top: 1.5rem;
}

/* Button */
.custom-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: #0dccca;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.custom-btn:hover {
  background: #0bb3b1;
  transform: translateY(-2px);
}

/* Carousel */
.custom-image {
  position: relative;
  width: 100%;
  min-height: 350px;
  border-radius: 16px;
  overflow: hidden;
  order: 2;
}

.custom-text {
  order: 1;
}

.custom-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

/* Arrows */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.custom-arrow.left {
  left: 15px;
}

.custom-arrow.right {
  right: 15px;
}

/* Contact Section */
.contact {
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #1f0d26;
  position: relative;
  margin-bottom: 2rem;
}

.contact h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.contact-form label span {
  color: red;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #0dccca;
  outline: none;
}

/* Payment Options */
fieldset {
  border: none;
  margin-bottom: 1.5rem;
}

legend {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.payment-option {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.payment-option input {
  margin-right: 0.6rem;
}

/* Submit Button */
.contact-btn {
  padding: 1rem 2.5rem;
  background: #0dccca;
  color: #111;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background: #0bb3b1;
  transform: translateY(-2px);
}

/* Short Videos Section */
.short-videos {
  padding: 5rem 1.5rem;
  background: #f9f9f9;
}

.short-videos-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.short-videos-container h2 {
  font-size: 2.5rem;
  color: #1f0d26;
  position: relative;
  margin-bottom: 2.5rem;
}

.short-videos-container h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #0dccca;
  display: block;
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}

/* Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Video Item */
.video-item video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  /* background: #2e1435; */
  background: black;
  color: #fff;
  padding: 4rem 1.5rem 2rem;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand h3 {
  margin-top: 0.5rem;
  color: #0dccca;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #0dccca;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #0dccca;
}

.footer-contact p {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #0dccca;
  color: #111;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.footer-social .social-icons a:hover {
  background: #0bb3b1;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* back to top */

#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: #0DCCCA;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

#backToTop:hover {
  transform: translateY(-4px);
  background-color: #0bb5b3;
}

#backToTop {
  opacity: 0;
  pointer-events: none;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}


/* Responsive */
@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* footer */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Mobile Styles */
@media (max-width: 768px) {
.hamburger {
display: flex;
}

nav {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
display: none;
flex-direction: column;
padding: 1rem 0;
border-top: 1px solid #eee;
z-index: 10;
}

nav.active {
display: flex;
}

nav ul {
flex-direction: column;
gap: 1.2rem;
text-align: center;
}

/* Mobile dropdown */
.dropdown-menu {
position: static;
box-shadow: none;
display: none;
}

.dropdown.active .dropdown-menu {
display: block;
}

/* Hero Section */
.hero-content h1 {
font-size: 2.1rem;
}

.hero {
height: 80vh;
}

/* About Section */
.about-container {
grid-template-columns: 1fr;
text-align: center;
}

.about-text h2::after {
margin-left: auto;
margin-right: auto;
}

.about-text {
order: 2;
}

.about-image {
order: 1;
}

/* Designer Section */
 .designer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .designer-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .designer-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .designer-text {
    order: 2;
  }

   .designer-btn {
    margin-left: auto;
    margin-right: auto;
  }

/* Children Wears Section */
.children-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .children-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .children-image {
    order: 1;
  }

  .children-text {
    order: 2;
  }
   .children-btn {
    margin-left: auto;
    margin-right: auto;
  }
   .children-image {
    min-height: 250px;
  }

  .children-arrow {
    font-size: 1.4rem;
  }
/* Adult Wears Section */
 .adult-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adult-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .adult-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .adult-text {
    order: 2;
  }

  .adult-arrow {
    font-size: 1.4rem;
  }
  /* Custom Wears Section */
  .custom-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .custom-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .custom-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .custom-text {
    order: 2;
  }

  .custom-arrow {
    font-size: 1.4rem;
  }
  /* Contact Section */
   .contact-container {
    padding: 0 1rem;
  }

  .payment-option {
    flex-direction: row;
    justify-content: flex-start;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
  /* videos */
  .videos-grid {
    grid-template-columns: 1fr;
  }
  /* footer */
   .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
