/* ==============================
   GLOBAL RESET
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #1f2937;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

  .highlight {
      color: #166d8a;
      font-weight: 600;
    }

/* =======================
   NAVBAR
======================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 25px 8%; /* taller navbar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 90px;
  width: auto;
  transform: scale(3.0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(3.1);
}

/* ================= NAV ================= */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link,
.dropdown-toggle {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Underline animation */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}
/* Keep underline for active page link */
.nav-link.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}


/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  padding: 15px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
  padding-left: 30px;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= LOGIN ================= */
.login-btn {
  padding: 10px 22px;
  border-radius: 25px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;

  /* 🔥 pulse animation */
  animation: pulseGlow 2.0s infinite;
}

/* hover overrides animation slightly */
.login-btn:hover {
  background: #1e4fd8;
  transform: translateY(-2px);
  animation: none;
}

/* ================= PULSE ANIMATION ================= */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Animate hamburger into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 120px 30px;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}


/* ==============================
   HERO SECTION
================================= */

.hero-slider {
  padding: 180px 8% 90px;
}

/* CONTAINER */
.hero-slider .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;

  max-width: 1250px;
  margin: 0 auto;
}

/* ================= IMAGE SLIDER ================= */

.hero-slider-images {
  position: relative;

  flex: 1;
  width: 100%;

  min-height: 500px;

  overflow: hidden;
  border-radius: 24px;

  box-shadow:
    0 25px 60px rgba(37,99,235,0.14);
}

/* IMAGES */
.hero-slider-images img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition: opacity 0.45s ease-in-out;
}

.hero-slider-images img.active {
  opacity: 1;
}

/* ================= CONTENT ================= */

.hero-content {
  flex: 1;
}

/* TITLE */
.hero-content h1.hero-title {
  font-size: 3rem;
  line-height: 1.2;

  margin-bottom: 24px;

  color: #1f2937;

  font-family: "Montserrat", sans-serif;

  display: flex;
  flex-direction: column;

  gap: 8px;
}

/* headline lines */
.hero-content h1.hero-title span {
  display: block;
  position: relative;
}

/* bullet effect */
.hero-content h1.hero-title span::before {
  content: "•";

  margin-right: 12px;

  color: #1f2937;
  font-weight: 700;
}

/* TEXT */
.hero-content p {
  font-size: 1.08rem;
  line-height: 1.9;

  color: #4b5563;

  margin-bottom: 34px;

  font-family: "Inter", sans-serif;
}

/* BUTTON */
.btn-primary {
  display: inline-block;

  padding: 14px 28px;

  border-radius: 12px;

  background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  font-family: "Inter", sans-serif;

  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(37,99,235,0.30);
}

/* =================================
   LARGE TABLET
================================= */

@media (max-width: 1024px) {

  .hero-slider {
    padding: 200px 6% 80px;
  }

  .hero-slider .hero-container {
    gap: 45px;
  }

  .hero-slider-images {
    min-height: 420px;
  }

  .hero-content h1.hero-title {
    font-size: 2.4rem;
  }

}

/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

  .hero-slider {
    padding: 210px 6% 75px;
    margin-top: 80px;
  }

  .hero-slider .hero-container {
    flex-direction: column;

    text-align: center;

    gap: 35px;
  }

  .hero-slider-images {
    width: 100%;

    min-height: 360px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1.hero-title {
    font-size: 2rem;

    align-items: center;
  }

}

/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {

  .hero-slider {
    padding: 220px 5% 65px;
  }

  .hero-slider-images {
    min-height: 300px;

    border-radius: 18px;
  }

  .hero-content h1.hero-title {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .btn-primary {
    width: 100%;

    text-align: center;
  }

}

/* =================================
   SMALL PHONES
================================= */

@media (max-width: 480px) {

  .hero-slider {
    padding: 230px 5% 55px;
     margin-top: 80px;
  }

  .hero-slider-images {
    min-height: 240px;

    border-radius: 16px;
  }

  .hero-content h1.hero-title {
    font-size: 1.45rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .btn-primary {
    padding: 13px 18px;

    font-size: 13px;
  }

}


/* ==============================




  
/* =================================
   GLOBAL SECTION STYLING
================================= */

section {
  padding: 80px 8%;
}

/* headings */
section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;

  text-align: center;
  font-family: "Montserrat", sans-serif;
  position: relative;
  color: #001f3f;
}

section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2563eb;

  display: block;
  margin: 12px auto 0;

  border-radius: 3px;
}

/* paragraphs (GLOBAL SAFE BASE STYLE) */
section p {
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Inter", sans-serif;
  color: #4b5563;
  
}

/* =================================
   ABOUT / COLLECTIONS SECTION
================================= */

.collections {
  padding: 120px 6%;

  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5faff 55%,
    #eaf3ff 100%
  );

  position: relative;
  overflow: hidden;
}

/* SOFT GLOW */
.collections::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 420px;
  height: 420px;

  background: radial-gradient(
    circle,
    rgba(37,99,235,0.14),
    transparent 70%
  );

  filter: blur(12px);

  z-index: 0;
}

/* ================= CONTENT ================= */

.collections h2 {
  position: relative;
  z-index: 1;

  text-align: center;

  font-size: 2.7rem;
  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 45px;

  font-family: "Montserrat", sans-serif;
}

/* ACCENT LINE */
.collections h2::after {
  content: "";

  display: block;

  width: 85px;
  height: 4px;

  margin: 16px auto 0;

  border-radius: 10px;

  background: #2563eb;
}

/* TEXT WRAPPER */
.collections .about-text {
  max-width: 920px;

  margin: 0 auto;

  position: relative;
  z-index: 1;
}

/* PARAGRAPHS */
.collections .about-text p {
  margin-bottom: 24px;

  padding-left: 16px;

  border-left: 3px solid rgba(37,99,235,0.14);

  text-align: left;

  font-size: 1.05rem;
  line-height: 1.9;

  color: #334155;

  transition: all 0.3s ease;

  font-family: "Inter", sans-serif;
}

/* HOVER */
.collections .about-text p:hover {
  padding-left: 20px;

  border-left-color: #2563eb;

  background: rgba(37,99,235,0.03);
}

/* HIGHLIGHT */
.highlight {
  color: #2563eb;
  font-weight: 600;
}

/* STRONG */
.collections strong {
  color: #0f172a;
  font-weight: 700;
}

/* =================================
   LARGE TABLET
================================= */

@media (max-width: 1024px) {

  .collections {
    padding: 100px 6%;
  }

  .collections h2 {
    font-size: 2.3rem;
  }

  .collections .about-text {
    max-width: 850px;
  }

  .collections .about-text p {
    font-size: 1rem;
    line-height: 1.85;
  }

}

/* =================================
   TABLET
================================= */

@media (max-width: 768px) {

  .collections {
    padding: 85px 5%;
  }

  .collections::before {
    width: 280px;
    height: 280px;

    top: -80px;
    right: -80px;
  }

  .collections h2 {
    font-size: 1.9rem;

    margin-bottom: 35px;
  }

  .collections h2::after {
    width: 70px;
  }

  .collections .about-text p {
    font-size: 0.96rem;

    line-height: 1.8;

    padding-left: 14px;

    margin-bottom: 20px;
  }

}

/* =================================
   MOBILE
================================= */

@media (max-width: 480px) {

  .collections {
    padding: 70px 5%;
  }

  .collections h2 {
    font-size: 1.55rem;

    line-height: 1.3;

    margin-bottom: 28px;
  }

  .collections h2::after {
    width: 58px;
    height: 3px;

    margin-top: 12px;
  }

  .collections .about-text p {
    font-size: 0.9rem;

    line-height: 1.75;

    padding-left: 12px;

    margin-bottom: 18px;
  }

  .collections .about-text p:hover {
    padding-left: 14px;
  }

}






.mission-vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 8%;
}

/* Left image */
.mission-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mission-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
}

/* Right side text stack */
.text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Headings */
.mission-vision h2 {
  font-size: 30px;
  color: #1e40af;
  margin-bottom: 15px;
}

/* Paragraphs */
.mission-vision p {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
    text-align: center;
  }

  .mission-image {
    order: -1;
  }

  .text-side {
    text-align: center;
  }
}
/* ==============================
   FEATURES
================================= */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  width: 320px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border-top: 4px solid #2563eb;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

/* ==============================
   PORTFOLIO DETAIL
================================= */
.portfolio-detail {
    padding: 80px 8%;
    background-color: #f8fafc;
}

.portfolio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.portfolio-text {
    flex: 1;
    min-width: 280px;
}

.portfolio-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
}

.portfolio-image {
    flex: 1;
    min-width: 280px;
   
}

.portfolio-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    object-fit: cover;
}

/* ==============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
    .portfolio-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .portfolio-text p {
        text-align: left;
    }

    .portfolio-image img {
        max-width: 90%;
        margin: 20px auto 0;
    }
}




/* ==============================
   FINAL CTA (UPGRADED)
================================= */

.final-cta {
  background: linear-gradient(
    135deg,
    #2563eb 0%,
    #1d4ed8 40%,
    #1e3a8a 100%
  );
  color: white;
  text-align: center;
  padding: 110px 6%;
  border-radius: 24px;
  margin: 80px auto;
  max-width: 1200px;
  box-shadow: 0 25px 60px rgba(30, 64, 175, 0.35);
  position: relative;
  overflow: hidden;
}

/* SOFT GLOW BACKGROUND EFFECT */
.final-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  filter: blur(10px);
}

.final-cta::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  filter: blur(12px);
}

.final-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* ==============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {
  .final-cta {
    padding: 90px 5%;
    border-radius: 18px;
    margin: 60px 5%;
  }

  .final-cta h2 {
    font-size: 2.1rem;
  }

  .final-cta p {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .final-cta {
    padding: 70px 5%;
  }

  .final-cta h2 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .final-cta p {
    font-size: 0.95rem;
  }
}

/* ==============================
   FOOTER
================================= */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 80px 8% 30px 8%;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-branding img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.footer-small {
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
}

/* Social Links */
.footer-socials a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 25px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.footer-legal a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* =============================
   FOOTER RESPONSIVE
============================= */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer {
    padding: 70px 6% 30px 6%;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-tagline {
    margin: 0 auto 20px auto;
  }

  .footer-column a {
    transform: none;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-socials a {
    margin: 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 60px 5% 25px 5%;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }
}

/* ==============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

}

@media (max-width: 768px) {



  section {
    padding: 60px 6%;
  }

  .hero {
    padding: 110px 6% 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
}

/* ================================
   DIRECTION VARIATIONS
================================ */

/* From left */
.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

/* From right */
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.reveal-zoom{
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}


/* ================================
   STAGGER EFFECT (Apple feel)
================================ */

.reveal:nth-child(1){ transition-delay: 0.1s; }
.reveal:nth-child(2){ transition-delay: 0.2s; }
.reveal:nth-child(3){ transition-delay: 0.3s; }
.reveal:nth-child(4){ transition-delay: 0.4s; }
.reveal:nth-child(5){ transition-delay: 0.5s; }





/* ================================
   PERFORMANCE OPTIMIZATION
================================ */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
  will-change: transform, opacity;
}


/* ================================
   OPTIONAL: DISABLE ON SMALL DEVICES
================================ */

@media (max-width: 600px){
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom{
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(135deg, #39FF14, #00FF85);
  color: white;

  font-size: 26px;
  width: 90px;
  height: 90px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;

  transition: all 0.3s ease;

  /* 🔥 Glow effect */
  animation: pulse 2s infinite;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* 🔥 PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}
