.hero {
  position: relative;
  height: 90vh;
  background: url('hero-eyewear.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  padding: 60px;
  color: #1a1a1a;
}

/* White fade overlay (IMPORTANT) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 60%, rgba(255,255,255,0.0));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* Rating */
.rating {
  color: #2d6cdf;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Heading */
.hero h1 {
  font-size: 70px;
  font-weight: 500;
  line-height: 1.1;
}

.hero h1 span {
  color: #2d6cdf;
}

/* Description */
.desc {
  margin: 20px 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.primary {
  background: #2d6cdf;
  color: #fff;
}

.primary:hover {
  background: #1f4fb5;
}

.secondary {
  border: 1px solid #2d6cdf;
  color: #2d6cdf;
}

.secondary:hover {
  background: #2d6cdf;
  color: #fff;
}

/* Stats */
.stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.stats h3 {
  color: #2d6cdf;
  font-size: 22px;
}

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

.about {
  padding: 80px 60px;
  background: #f8f9fb;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.about-image {
  position: relative;
  flex: 1;
  height: 420px; /* FIXED HEIGHT (important) */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* THIS is the key */
  border-radius: 20px;
}
/* FLOATING CARD */
.floating-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.floating-card h3 {
  color: #2d6cdf;
  font-size: 24px;
}

.floating-card p {
  font-size: 11px;
  color: #777;
}

/* RIGHT CONTENT */
.about-content {
  flex: 1;
}

.subtitle {
  color: #2d6cdf;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #2d6cdf;
}

.desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 14px;
}

/* FEATURES GRID */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.feature {
  border-left: 2px solid #2d6cdf;
  padding-left: 12px;
}

.feature h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.feature p {
  font-size: 12px;
  color: #777;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 80px; /* more spacing like UI */
}

.about-image {
  flex: 0 0 520px; /* FIXED WIDTH */
  height: 380px;
}
.collections {
  padding: 100px 60px;
  background: #f6f7f9;
  text-align: center;
}

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

/* Subtitle */
.subtitle {
  color: #2d6cdf;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* Title */
.title {
  font-size: 52px;
  font-weight: 500;
  margin-bottom: 60px;
}

.title span {
  color: #2d6cdf;
  font-style: italic;
}

/* Cards layout */
.cards {
  display: flex;
  gap: 30px;
}

/* Card */
.card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* Image */
.card img {
  width: 100%;
  height: 230px; /* EXACT height */
  object-fit: cover;
}

/* Content */
.card-content {
  padding: 22px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-content span {
  font-size: 12px;
  color: #2d6cdf;
  letter-spacing: 1px;
}

.testimonials {
  padding: 100px 60px;
  background: #f6f7f9;
  text-align: center;
}

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

/* Subtitle */
.subtitle {
  color: #2d6cdf;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* Title */
.title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 60px;
}

.title span {
  color: #2d6cdf;
  font-style: italic;
}

/* Cards layout */
.testimonial-cards {
  display: flex;
  gap: 30px;
}

/* Card */
.t-card {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* Stars */
.stars {
  color: #2d6cdf;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Review */
.review {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Name */
.t-card h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Verified */
.t-card span {
  font-size: 11px;
  color: #2d6cdf;
  letter-spacing: 1px;
}

.contact {
  padding: 100px 60px;
  background: #f6f7f9;
  text-align: center;
}

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

/* Subtitle */
.subtitle {
  color: #2d6cdf;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* Title */
.title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 60px;
}

.title span {
  color: #2d6cdf;
  font-style: italic;
}

/* Cards layout */
.contact-cards {
  display: flex;
  gap: 30px;
}

/* Card */
.c-card {
  flex: 1;
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.c-card:hover {
  transform: translateY(-6px);
}

/* Icon box */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #eef3ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  color: #2d6cdf;
  font-size: 20px;
}

/* Title */
.c-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Text */
.c-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.cta {
  padding: 80px 60px;
  background: #f6f7f9;
}

.cta-box {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, #2d4db5, #3c78e8);
  padding: 70px 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Heading */
.cta-box h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Text */
.cta-box p {
  font-size: 14px;
  color: #e0e6ff;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #2d4db5;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
}
.footer {
  background: #f1f3f7;
  padding: 60px 60px;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Logo */
.footer-logo h2 {
  font-size: 20px;
  color: #2d6cdf;
  font-weight: 500;
}

/* Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 12px;
  color: #2d6cdf;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Links */
.footer-col a {
  text-decoration: none;
  color: #555;
  font-size: 13px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #2d6cdf;
}

/* Text */
.footer-col p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}


.socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

/* ICON BOX */
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6cdf;
  font-size: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.socials a:hover {
  transform: translateY(-4px);
}

/* BRAND COLORS ON HOVER */
.socials a:nth-child(1):hover {
  background: #E1306C;
  color: #fff;
}

.socials a:nth-child(2):hover {
  background: #1877F2;
  color: #fff;
}

.socials a:nth-child(3):hover {
  background: #2d6cdf;
  color: #fff;
}

.socials a:nth-child(4):hover {
  background: #25D366;
  color: #fff;
}

.socials a {
  backdrop-filter: blur(10px);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* ICON FIX */
.whatsapp-float i {
  font-size: 30px;
  color: white;
  line-height: 1;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-right {
    display: none; /* hide icons on mobile */
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .overlay {
    width: 100%;
    background: rgba(255,255,255,0.85);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-image {
    width: 100%;
    height: 250px;
  }

  /* COLLECTIONS */
  .cards {
    flex-direction: column;
  }

  /* TESTIMONIAL */
  .testimonial-cards {
    flex-direction: column;
  }

  /* CONTACT */
  .contact-cards {
    flex-direction: column;
  }

  /* CTA */
  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }
}
img {
  max-width: 100%;
  height: auto;
}
/* FIX HERO FOR MOBILE */
@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 60px 20px;
    background-position: center;   /* important */
    background-size: cover;
  }

  .overlay {
    width: 100%; /* remove half overlay */
    background: rgba(255,255,255,0.9);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .desc {
    font-size: 14px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }
}
.overlay {
  width: 100%;
}
.hero {
  background-position: right center;
}

/* ================= BLACK + GOLD THEME OVERRIDES ================= */
:root {
  --bg-main: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #171717;
  --text-main: #f5f0e1;
  --text-muted: #b8b1a0;
  --accent: #d4af37;
  --accent-dark: #b8922a;
  --border: #2a2a2a;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
}

.about,
.collections,
.testimonials,
.contact,
.cta,
.footer {
  background: var(--bg-alt);
}

.hero {
  color: var(--text-main);
}

.overlay {
  background: linear-gradient(to right, rgba(10, 10, 10, 0.92) 60%, rgba(10, 10, 10, 0));
}

.rating,
.hero h1 span,
.stats h3,
.floating-card h3,
.subtitle,
.about-content h2 span,
.title span,
.stars,
.t-card span,
.icon i,
.footer-logo h2,
.footer-col h4 {
  color: var(--accent);
}

.desc,
.stats p,
.floating-card p,
.feature p,
.card-content p,
.review,
.c-card p,
.cta-box p,
.footer-col p,
.footer-col a {
  color: var(--text-muted);
}

.primary {
  background: var(--accent);
  color: #111111;
}

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.secondary:hover {
  background: var(--accent);
  color: #111111;
}

.floating-card,
.card,
.t-card,
.c-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.feature {
  border-left: 2px solid var(--accent);
}

.icon {
  background: #1f1a0e;
}

.cta-box {
  background: linear-gradient(135deg, #1a1a1a, #2a220f);
  border: 1px solid var(--border);
}

.footer {
  border-top: 1px solid var(--border);
}

.socials a {
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid var(--border);
}

.footer-col a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .overlay {
    background: rgba(10, 10, 10, 0.9);
  }
}