/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= ROOT COLORS ================= */
:root {
  --primary-pink: #e91e63;
  --light-pink: #fff0f5;
  --soft-pink: #f8bbd0;
  --gloss-pink: #ff6fa5;
  --text-dark: #333;
}

/* ================= BODY ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fff0f5, #fff);
  color: var(--text-dark);
}

/* ================= HEADER (GLASS + GLOSS) ================= */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 240, 245, 0.7); /* pink glass */
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 182, 193, 0.3);

  /* glossy shadow */
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= NAV ================= */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  border-radius: 10px;
}

.logo span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-pink);

  /* subtle gloss glow */
  text-shadow: 0 2px 6px rgba(233,30,99,0.2);
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;

  position: relative;
  transition: 0.3s ease;
}

/* Gloss underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--primary-pink), var(--gloss-pink));
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hover */
.nav-links a:hover {
  color: var(--primary-pink);
}

/* Active */
.nav-links a.active {
  color: var(--primary-pink);
  font-weight: 600;
}

/* ================= CTA BUTTON (GLOSSY) ================= */
.nav-cta {
  background: linear-gradient(135deg, var(--primary-pink), var(--gloss-pink));
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 25px;

  box-shadow: 0 6px 18px rgba(233,30,99,0.35);

  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233,30,99,0.5);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--primary-pink);
  border-radius: 2px;
  transition: 0.3s;
}

/* Animate hamburger */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;

    flex-direction: column;
    width: 240px;
    padding: 20px;

    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(12px);

    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(233,30,99,0.15);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .nav-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
  }

  /* MOBILE CTA FIX */
  .nav-cta {
    background: none;
    color: var(--primary-pink) !important;

    border: 1px solid var(--primary-pink);
    border-radius: 10px;

    text-align: center;
    margin-top: 10px;
  }

  .nav-cta:hover {
    background: var(--primary-pink);
    color: #fff !important;
  }

  .hamburger {
    display: flex;
  }
}


/* ================= TABLET FIX ================= */
@media (max-width: 1024px) {

  .nav-container {
    padding: 0 15px;
  }

  /* Reduce spacing */
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  /* Fix CTA */
  .nav-cta {
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 20px;
  }

  /* Prevent overflow */
  .logo span {
    font-size: 1rem;
  }
}


























/* ================= HERO ================= */
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* ================= SLIDES ================= */
.hero-slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Each slide */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  opacity: 0;
}

.slide-1 {
  background-image: url("../img/hero.jpeg");
  animation: slideFade 12s infinite;
}

.slide-2 {
  background-image: url("../img/hero1.jpeg");
  animation: slideFade 12s infinite;
  animation-delay: 4s;
}



/* ================= ANIMATION ================= */
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ================= OVERLAY ================= */
.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255, 240, 245, 0.6),
    rgba(255, 255, 255, 0.4)
  );

  backdrop-filter: none;
  z-index: 2;
}

/* ================= CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 3;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* Title */
.hero-content h1 {
  font-size: 3rem;
  color: #e91e63;
  margin-bottom: 15px;
}

/* Text */
.hero-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

/* Button */
.hero-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #e91e63, #ff6fa5);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(233,30,99,0.3);
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
}
















/* ================= ABOUT ================= */
.about-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #fff0f5, #ffffff);
}

/* Container */
.about-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ================= IMAGE ================= */
.about-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 320px;

  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(233,30,99,0.15);

  transition: 0.3s;
}

.about-image img:hover {
  transform: translateY(-8px);
}

/* ================= TEXT ================= */
.about-text {
  flex: 1;
  min-width: 300px;
}

/* Tag */
.about-tag {
  display: inline-block;
  background: #f8bbd0;
  color: #e91e63;

  padding: 6px 14px;
  border-radius: 20px;

  font-size: 0.8rem;
  margin-bottom: 15px;
}

/* Heading */
.about-text h2 {
  font-size: 2.4rem;
  color: #e91e63;
  margin-bottom: 20px;
}

/* Paragraph */
.about-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 10px;

  padding: 10px 24px;
  background: linear-gradient(135deg, #e91e63, #ff6fa5);
  color: #fff;
  text-decoration: none;

  border-radius: 25px;

  box-shadow: 0 8px 20px rgba(233,30,99,0.3);
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(233,30,99,0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image img {
    max-width: 250px;
  }
}
















/* ================= SERVICES ================= */
.services-section {
  padding: 100px 5%;
  background: #fff;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: #f8bbd0;
  color: #e91e63;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #e91e63;
}

/* ================= GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;

  box-shadow: 0 15px 40px rgba(233,30,99,0.08);
  transition: 0.4s ease;

  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(233,30,99,0.2);
}

/* Image */
.service-img {
  height: 250px;
  background-size: cover;
  background-position: center;

  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

/* Content */
.service-content {
  padding: 25px;
  text-align: left;
}

.service-content h3 {
  font-size: 1.4rem;
  color: #e91e63;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}





















/* ================= CLIENTS ================= */
.clients-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #fff0f5, #ffffff);
}

/* Subtext */
.section-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-top: 10px;
}

/* ================= GRID ================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ================= CARD ================= */
.client-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);

  border-radius: 18px;
  padding: 40px 25px;

  text-align: center;

  box-shadow: 0 12px 35px rgba(233,30,99,0.08);
  transition: 0.3s ease;
}

/* Hover */
.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(233,30,99,0.2);
}

/* Icon */
.client-icon {
  font-size: 2.5rem;
  color: #e91e63;
  margin-bottom: 20px;
}

/* Title */
.client-card h3 {
  font-size: 1.3rem;
  color: #e91e63;
  margin-bottom: 10px;
}

/* Text */
.client-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}















/* ================= CONTACT ================= */
.contact-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #fff0f5, #ffffff);
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

/* ================= MAP ================= */
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(233,30,99,0.1);
}

/* ================= INFO ================= */
.contact-info h3 {
  font-size: 1.8rem;
  color: #e91e63;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* DETAILS */
.contact-details {
  margin: 20px 0;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-details i {
  color: #e91e63;
}

/* ================= BUTTONS ================= */
.contact-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* Primary */
.contact-btn {
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

/* Call */
.contact-btn.primary {
  background: linear-gradient(135deg, #e91e63, #ff6fa5);
  color: #fff;

  box-shadow: 0 8px 20px rgba(233,30,99,0.3);
}

.contact-btn.primary:hover {
  transform: translateY(-2px);
}

/* Email */
.contact-btn.secondary {
  border: 1px solid #e91e63;
  color: #e91e63;
}

.contact-btn.secondary:hover {
  background: #e91e63;
  color: #fff;
}










/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #e91e63, #ff6fa5);
  color: #fff;
  padding-top: 60px;
}

/* Container */
.footer-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

/* Brand */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Links */
.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  opacity: 0.9;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Contact */
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h4 {
  margin-bottom: 10px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-contact i {
  margin-right: 8px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.1);
  font-size: 0.85rem;
}








