/* =========================
   GLOBAL RESET
========================= */

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  width: 100%;
  overflow: hidden;
}

/* Your existing reset continues below */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
  padding-top: 70px; /* navbar height */
}

/* ================= GLOBAL LINK HOVER EFFECT ================= */

a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}


/* =========================
   NAVBAR
========================= */
/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  margin-right: 100px;
  cursor: pointer;
}

/* NAV LINKS DEFAULT */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    margin-left: 255px;
}
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    width: 220px;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: 0.3s;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  .quote-btn {
    display: none; /* optional hide on mobile */
  }
 

  .nav-container { position: relative; }  /* Needed for dropdown positioning */
.nav-links { right: 0; }                /* Prevent left overflow */
}



.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-container {
  height: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.nav-logo {
  margin-left: 30px;
  height: 62px;
  width: auto;
  object-fit: contain;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-left: auto;
  position: relative; /* IMPORTANT */
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #190951;
  font-size: 15px;
  transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6a1b9a, #e45c7a);
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: #e45c7a;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button */
.quote-btn {
  margin-left: 25px;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg, #ff6978, #350068);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

 .quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: all 0.6s ease;
}

.quote-btn:hover::before {
  left: 100%;
}
@media (max-width: 768px) {
  .quote-btn {
    display: none;
  }
}



/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 30px;
  }

  .nav-logo {
    margin-left: 0;
    height: 55px;
  }

  .nav-links {
    gap: 25px;
  }
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

/* =========================
   MOBILE DROPDOWN
========================= */
@media (max-width: 768px) {

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-left: 255px;

  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 18px;
    border-bottom: 1px solid #eee;
    color: #111;
    font-weight: 600;
  }

  .nav-links.show {
    display: flex;
  }
}




/* =========================
   HERO SECTION
========================= */
.hero-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  min-height: 100vh;
  background: linear-gradient(180deg, #f0627f, #8e2f6f);
  position: relative;
  overflow:hidden;
}

.creative-text {
  position: absolute;
bottom: -70px;
  left: 65%;
  transform: translateX(-50%);
  font-weight: 900;
  letter-spacing: -6px;
  color: rgb(255, 255, 255);
  font-size: clamp(60px, 14vw, 240px);
  white-space: nowrap;
  pointer-events: none;

  z-index: 5; /* 🔥 HIGHER THAN MODEL */
}




/* ----- LEFT CONTENT ----- */
.hero-left {
   padding-top: 150px;
  flex: 1;
  color: #fff;
}


.hero-left h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-left p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-btn {
  padding: 14px 36px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}
.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  background: linear-gradient(135deg, #ff6a95, #a83a83);
}



/* ----- RIGHT IMAGE AREA ----- */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;

  padding-top: 60px;   /* 👈 pushes model + circle downward */
}



/* BACKGROUND CIRCLE */
.hero-circle {
  position: absolute;
  width: clamp(300px, 50vw, 580px);
  aspect-ratio: 1/1;
  background: #ff7a8f;
  border-radius: 50%;
  bottom: -15%; 
  right: 10%;
  z-index: 2; /* FIXED: added colon */
}



/* HERO IMAGE */
.hero-model {
  position: relative;
  width: clamp(200px, 35vw, 470px);
  height: auto;
  z-index: 3;
  transform: translateY(104px);
}



/* =========================
   RESPONSIVE HERO
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-box {
    flex-direction: column;
    justify-content: center;
    padding: 0 4%;
    min-height: 80vh;
  }

  .hero-left {
    padding-top: 100px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: clamp(28px, 6vw, 56px);
  }

  .hero-left p {
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .hero-right {
    padding-top: 40px;
  }

  .hero-circle {
    width: clamp(250px, 40vw, 450px);
    bottom: -20%;
    right: 5%;
  }

  .hero-model {
    width: clamp(180px, 30vw, 400px);
    transform: translateY(80px);
  }

  .creative-text {
    left: 50%;
    font-size: clamp(50px, 12vw, 200px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-box {
    flex-direction: column-reverse;
    padding: 0 3%;
    min-height: 70vh;
  }

  .hero-left {
    padding-top: 60px;
  }

  .hero-left h1 {
    font-size: clamp(24px, 7vw, 42px);
  }

  .hero-left p {
    font-size: clamp(12px, 3vw, 15px);
    max-width: 100%;
  }

  .hero-btn {
    font-size: 13px;
    padding: 12px 28px;
  }

  .hero-right {
    padding-top: 20px;
  }

  .hero-model {
    width: clamp(150px, 40vw, 300px);
    transform: translateY(60px);
    margin-bottom: 40px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-box {
    min-height: 60vh;
    padding: 0 2%;
  }

  .hero-left h1 {
    font-size: clamp(20px, 8vw, 32px);
  }

  .hero-left p {
    font-size: 13px;
  }

  .hero-btn {
    padding: 10px 24px;
  }

  .hero-model {
    width: clamp(120px, 50vw, 250px);
    transform: translateY(40px);
  }

  .hero-circle {
    width: clamp(150px, 50vw, 250px);
    bottom: -30%;
    right: 0;
  }
  .creative-text {
  font-size: 5px;
  position: absolute;
  bottom: auto;
  left: 50%;
  margin-top: 235px;
  transform: translateX(-50%);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
}


/* =========================
   WHATSAPP BUTTON (OPTIONAL)
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(45deg, #350068, #ff6978);
  color: #fff;

  padding: 12px 18px;
  border-radius: 40px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;

  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* ICON */
.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* TEXT */
.whatsapp-float span {
  white-space: nowrap;
}

/* WHO WE ARE */
.who-we-are {
  padding: 150px 150px;
  background: #fff;
  margin-top: -10px;
  margin-bottom: -174px;
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT IMAGE AREA */
.who-images {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.who-images::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  z-index: -1;
}



.phones-combined {
  width: 700px;
  max-width: 100%;
  height: auto;
  background: transparent;
  border-radius: 0;
  transform: translateY(-25px);
}



.phone-back {
  left: 20px;
  top: 80px;
  transform: rotate(-12deg);
}


.phone-front {
  left: 160px;
  transform: rotate(6deg);
}


/* RIGHT CONTENT */
.who-content {
  width: 55%;
}

.who-content h5 {
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}


.who-content h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
}


.who-content p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 19px;
  max-width: 520px;
  color: #777;
}

/* SKILLS */
.skill {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 22px;
}

.skill-title {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.bar {
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, #ff6978,#350068 );
  border-radius: 20px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 1024px) {
  .who-container {
    flex-direction: column;
    text-align:center;
  }

  .who-images, .who-content {
    width: 100%;
  }

  .phones-combined {
    width: 85%;
    margin: 0 auto 30px;
  }
}


.services-section {
  background-color: rgb(172, 205, 214);
  padding: 90px 6% 100px;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 70px;
  color: #222;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 30px 40px;
  text-align: center;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}


.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 28px;
}


.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  font-size: 15.5px;
  color: #7a7a7a;
  line-height: 1.6;
  padding: 0 5px;
}


@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


.video-hero {
  position: relative;
  min-height: 70vh;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* VIDEO BACKGROUND — FULLY RESPONSIVE */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 makes it fill screen properly */
  transform: translate(-50%, -50%);
  z-index: 0;
}



/* DARK OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* CONTENT */
.video-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 850px;
  padding: 0 20px;
  z-index: 2;
}



/* HEADING */
.video-content h1 {
  font-size: clamp(28px, 4.5vw, 52px);
}

.video-content p {
  font-size: clamp(14px, 2vw, 18px);
}


@media (max-width: 1024px) {
  .video-hero {
    height: 65vh;
  }
}



/* 📱 MOBILE – reduce video section width */
@media (max-width: 768px) {
  .video-hero {
    width: 85%;
    margin: 0 auto;      /* center it */
    border-radius: 16px; /* optional: modern card look */
    overflow: hidden;
  }
}


@media (max-width: 480px) {
  .video-hero {
    height: 50vh;
      width: 85%;
  }
}

@media (max-width: 768px) {
  .video-overlay {
    background: rgba(0, 0, 0, 0.6); /* darker overlay for mobile */
  }

  .video-content h1 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .video-content p {
    font-size: 14px;
  }
}





/* STATS BAR */
/* STATS BAR – DESKTOP */
.stats-bar {
  position: relative;
  margin: -120px auto 0;   /* 🔥 pulls it up over video */
  background: #ffffff;
  width: 85%;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 30px;
  z-index: 5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.stat h2 {
  font-size: 44px;
  font-weight: bold;
  color: #5a189a;
  margin-bottom: 5px;
}

.stat span {
  font-size: 13px;
  color: #000000;
  letter-spacing: 1px;
}

.divider {
  width: 1px;
  height: 45px;
  background: #ddd;
}



/* WHY CHOOSE */
.why-choose {
  padding: 100px 6%;
  background: #fff;
}

@media (max-width: 1024px) {
  .why-container {
    flex-direction: column;
  }

  .why-image,
  .why-content {
    width: 100%;
    padding: 0;
  }
}


.why-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT IMAGE */
.why-image {
  padding-top: 120px;
  width: 50%;
}

.why-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* RIGHT CONTENT */
.why-content {
  padding-top: 120px;
  padding-left: 60px;
  width: 50%;
}

.why-content h6 {
  color: #6a1b9a;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.why-content h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-content p {
  color: #666;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* POINTS */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ICON CIRCLE - EXACT D-STAG */
.icon-circle1 {
  width: 65px;
  height: 65px;
  background: #470f6f; /* D-STAG Purple */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* ICON INSIDE */
.icon-circle1 i {
  color: #ffffff;
  font-size: 22px;
}

.why-point h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 18px;
  color: #666;
  margin: 0;
}


/* =========================
   WHY POINT – RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {

  .icon-circle1 {
    width: 55px;
    height: 55px;
  }

  .icon-circle1 i {
    font-size: 20px;
  }

  .why-point h4 {
    font-size: 18px;
  }

  .why-point p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .why-point { 
    text-align:justify;
    align-items: center;
    gap: 12px;
  }
  .why-content h2 {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.why-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 35px;
}
    .why-point p {
        font-size: 12px;
        max-width: 90%;
        margin: -0px auto;
    }

  .icon-circle1 {
    width: 50px;
    height: 50px;
  }

  .icon-circle1 i {
    font-size: 18px;
  }

  .why-point h4 {
    text-align:justify;
    font-size: 14px;
  }

  .why-point p {
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto;
  }
}


/* =====================
   TRUSTED LOGOS (DESKTOP)
===================== */
.trusted-section {
  padding: 80px 6% 90px;
  background: #fff;
  text-align: center;
}

.trusted-section h2 {
  font-size: 26px;
  font-weight: 500;
  color: #111;
  line-height: 1.5;
  margin-bottom: 60px;
}

.trusted-section h2 strong {
  font-weight: 850;
}

/* LOGOS */
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.trusted-logos img {
  max-height: 112px;
  width: auto;
  opacity: 0.85;
  transition: 0.3s ease;
}

.trusted-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* =====================
   TABLET (Only first 3)
===================== */
@media (max-width: 1024px) {
  .trusted-logos {
    gap: 35px;
  }

  .trusted-logos img:nth-child(n+4) {
    display: none;
  }

  .trusted-logos img {
    height: 65px;
  }
}


/* =====================
   MOBILE (1 by 1)
===================== */
@media (max-width: 768px) {
  .trusted-logos {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .trusted-logos img:nth-child(n+4) {
    display: none;
  }

  .trusted-logos img {
    height: 60px;
  }
}


/* ================= HOW WE DO SECTION ================= */
.how-we-do {
  padding: 100px 6%;
  background: linear-gradient(180deg, #ff6978 0%, #350068 100%);
  text-align: center;
  color: #fff;
}

/* Section Tag */
.section-tag {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Heading */
.how-we-do h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0 60px;
  line-height: 1.25;
}

/* ================= GRID ================= */
.services1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service1-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.service1-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Icon Circle */


/* Icon Image */
.service1-card img {
  align-items: center;
  margin-left: 160px;
  width: 65px;
  margin-bottom: 15px;
}

/* Title */
.service1-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

/* Description */
.service1-card p {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .services1-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .services1-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-we-do h2 {
    font-size: 30px;
  }

  .service1-card {
    padding: 25px;
  }

  .service1-card img {
    width: 45px;
  }

  .service1-card h3 {
    font-size: 16px;
  }

  .service1-card p {
    font-size: 14px;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
  }
}
/* HOVER EFFECT */
.service1-card {
  transition: all 0.4s ease;
}

.service1-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service1-card:hover::before {
  opacity: 1;
}

/* Keep content above gradient */
.service1-card * {
  position: relative;
  z-index: 1;
}

/* Lift effect */
.service1-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(255, 59, 59, 0.4);
}

/* Text color change */
.service1-card:hover h3,
.service1-card:hover p {

}

/* Icon circle animation */
.service1-card:hover .icon-circle {
  background: #fff;
  transform: scale(1.1);
}

/* Icon image animation */
.service1-card img {
  transition: transform 0.4s ease;
}

.service1-card:hover img {
  transform: rotate(8deg) scale(1.1);
}
@media (max-width: 1024px) {
  .service1-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(255, 59, 59, 0.3);
  }
}
@media (max-width: 600px) {

  /* Disable heavy hover animation */
  .service1-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Tap effect */
  .service1-card:active {
    transform: scale(0.97);
  }

  /* Remove gradient overlay on mobile */
  .service1-card::before {
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
    display: none;
  }

  /* Smaller icon animation */
  .service1-card:hover img {
    transform: none;
  }
}



/* ================= WHY CHOOSE US CARDS ================= */

/* WHY CHOOSE US */
.why-choose-section {
  padding: 100px 6%;
  text-align: center;
  background: #ffffff;
  position: relative;
  z-index: 5;
}

/* SMALL TAG */
.section-tag {
  color: #6a1b9a;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

/* MAIN HEADING */
.why-choose-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #111;
}

/* GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px 30px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: none; /* ❌ No shadow initially */
}

/* SHADOW ONLY ON HOVER */
.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15); /* ✅ Shadow on hover */
}
@media (max-width: 600px) {
  .why-card:hover {
    transform: translateY(-6px); /* Smaller lift on mobile */
    box-shadow: 0 15px 30px rgba(0,0,0,0.12); /* Softer shadow */
  }
}


@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}


/* ICON */
.why-icon img {
  width: 50px;
  margin-left: 110px;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}
.why-icon1 img {
   margin-left: 110px;
  width: 50px;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}

/* ICON ZOOM */
.why-card:hover .why-icon img {
  transform: scale(1.15);
}

/* CARD TITLE */
.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* CARD TEXT */
.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-choose-section h2 {
    font-size: 32px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-section h2 {
    font-size: 28px;
  }

  .why-card {
    padding: 25px 20px;
  }

  .why-card h3 {
    font-size: 15px;
  }

  .why-card p {
    font-size: 13px;
  }

  .why-icon img {
    margin-left: 140px;
    width: 40px;
    margin-bottom: 12px;
  }
}
 .why-icon1 img {
    margin-left: 140px;
    width: 40px;
    margin-bottom: 12px;
  }
/* SECTION */
.lets-talk-section {
  position: relative;
  height: 580px;
  overflow: hidden;
}

/* Background image container */
.lets-talk-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lets-talk-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.lets-talk-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Text layer */
.lets-talk-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lets-talk-text {
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 4px;
}



/* OVERLAY */
.lets-talk-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}

/* TEXT */
.lets-talk-text {
  margin-bottom: -83px;
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: 6px;
  color: #ffffff;
  text-transform: uppercase;

  /* SLIDE EFFECT */
  transform: translateY(80px);
  opacity: 0;
  animation: slideUp 1.2s ease-out forwards;
}
/* ================= LETS TALK TEXT RESPONSIVE ================= */
@media (max-width: 768px) {

  .lets-talk-text {
    margin-bottom: 0 !important;      /* remove negative push */
    font-size: clamp(55px, 10vw, 64px);
    letter-spacing: 2px;
    text-align: center;
    padding: 0 15px;                   /* prevents side cut */
    line-height: 1.1;
  }

  .lets-talk-overlay {
    align-items:;               /* center text vertically */
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .lets-talk-text {
    font-size: clamp(26px, 9vw, 48px);
    letter-spacing: 1px;
  }
}

/* KEYFRAMES */
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* HOVER MICRO INTERACTION */
.lets-talk-section:hover .lets-talk-text {
  letter-spacing: 10px;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

.need-help {
  padding: 100px 8%;
  text-align: center;
  background: #fff;
}

.sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #6a1b9a;
  letter-spacing: 1px;
}

.main-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 15px 0 60px;
  color: #111;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.help-card {
  background: #fff;
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* ✅ STATIC SHADOW */
}

.help-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.help-card p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.contact-link{
  text-decoration: none;
  margin-bottom: 50px;
  margin-top: 10px;
  font-weight: 600;
  color: #7b3eb3; /* ✅ violet */
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap; /* 🔥 keeps all icons in one line */
}


.social-icons a {
  flex-shrink: 0;
  text-decoration: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.social-icons img {
  width: 20px;
  height: 20px;
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.social-icons a:hover {
  background: linear-gradient(135deg, #70269e, #d94b7a); /* violet → pink */
  transform: translateY(-6px);
  box-shadow: 0 12px 2cqi rgba(106, 27, 154, 0.35);
}

.social-icons a:hover img {
  filter: brightness(0) invert(1); /* logo turns white */
}



@media (max-width: 900px) {
  .help-cards {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: linear-gradient(135deg, #f06277, #8e2b7b);
  color: #fff;
  padding: 80px 40px 30px;
  border-radius: 80px 80px 0 0;
  
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {

  width: 130px;
  margin-bottom: 20px;
}
/* ================= FOOTER RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;   /* 2 columns */
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 25px;
    border-radius: 50px 50px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;      /* single column */
    gap: 25px;
  }

  .footer-col h4 {
    margin-top: 10px;
    font-size: 20px;
  }

  .footer-col ul li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 15px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 8px;
    display: inline-block;
  }
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 25px;
  margin-bottom: 16px;
  margin-bottom: 31px;
  margin-top: 64px;
}

/* LISTS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 20px;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* ================= FOOTER TEXT RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-col h4 {
    font-size: 22px;
    margin-top: 30px;
  }

  .footer-brand p {
    font-size: 18px;
  }

  .footer-col ul li {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-col h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .footer-brand p {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-col ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .footer-col h4 {
    font-size: 18px;
  }

  .footer-brand p {
    font-size: 15px;
  }

  .footer-col ul li {
    font-size: 15px;
  }
}

/* SOCIAL ICONS */

.social-icons {
  margin-left: -270px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* social icon new */
.social-iconsb{
  margin-top: 20px;
  margin-left: 105px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-iconsb a {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-iconsb img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

.social-iconsb a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
/* Hover effect */
.social-icons a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.social-icons img {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}


.social-icons a:hover img {
  opacity: 1;
}

/* ================= SOCIAL ICONS RESPONSIVE ================= */
@media (max-width: 768px) {

  .social-icons {
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;        /* allows wrapping if needed */
    margin-left: 0 !important;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }

  .social-icons img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    gap: 10px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
  }

  .social-icons img {
    width: 14px;
    height: 14px;
  }
}

/* BOTTOM BAR */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* ===============================
   🔥 GLOBAL RESPONSIVE FIX
=================================*/
@media (max-width: 1024px) {

  /* NAVBAR */
  .nav-container {
    padding: 0 20px;
  }

  .nav-logo {
    margin-left: 0;
    height: 30px;
  }

  .nav-links {
    display: none; /* hide menu for now (can add hamburger later) */
  }

  /* WHO WE ARE */
  .who-we-are {
    padding: 80px 20px;
    margin: 0;
  }

  .who-container {
    flex-direction: column;
    gap: 40px;
  }

  .who-images, .who-content {
    width: 100%;
    text-align: center;
  }

  .phones-combined {
    transform: none;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* VIDEO */
  .video-hero {
    align-items: center;
    width:56vh;
  }

  /* WHY CHOOSE */
  .why-container {
    flex-direction: column;
  }

  .why-image, .why-content {
    width: 100%;
    padding: 0;
  }

  /* HOW WE DO */
  .services1-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service1-card img {
    margin: 0 auto 20px;
    display: block;
  }

  /* WHY CARDS */
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* HELP SECTION */
  .help-cards {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* 📱 SMALL MOBILE */
@media (max-width: 600px) {

  .services-grid,
  .services1-grid,
  .why-cards {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .hero-left p {
    max-width: 100%;
  }
}
/* =========================
   RESPONSIVE STATS BAR
========================= */
/* =====================================
   STATS BAR — PHONE DESIGN (2x2 GRID)
===================================== */
@media (max-width: 768px) {

  .stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;

    width: 92%;
    margin: 30px auto;
    padding: 30px 10px;

    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .stat {
    padding: 22px 10px;
    text-align: center;
  }

  .stat h2 {
    font-size: 28px;
    color: #5a189a;
    margin-bottom: 6px;
  }

  .stat span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #000;
  }

  /* Horizontal divider between rows */
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid #eee;
  }

  /* Vertical divider between columns */
  .stat:nth-child(1),
  .stat:nth-child(3) {
    border-right: 1px solid #eee;
  }

  /* Remove old divider line */
  .divider {
    display: none;
  }
}

/* Tablet & below */
@media (max-width: 1024px) {
  .stats-bar {
    margin: -80px auto 40px;
    width: 92%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    overflow: hidden;
  }

  .stat {
    padding: 30px 15px;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid #eee;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid #eee;
  }

  .stat h2 {
    font-size: 34px;
  }
}


@media (max-width: 600px) {
  .stats-bar {
    margin: -60px auto 30px;
    width: 94%;
  }

  .stat h2 {
    font-size: 28px;
  }

  .stat span {
    font-size: 12px;
  }
}

  .why-choose {
    padding: 30px 6%;
    background: rgb(255, 255, 255);
}
.trusted-section {
    padding: 50px 6% 90px;
    background: #fff;
    text-align: center;
}

@media (max-width: 768px) {

  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-model {
    position: relative;   /* 🔥 remove absolute */
    height: auto;
    width: 80%;
    max-width: 320px;
    margin-top: 20px;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 18px;
    right: 15px;
    padding: 10px 14px;
    border-radius: 35px;
    font-size: 12px;
    gap: 8px;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }

  /* Optional: hide text, show icon only */
  .whatsapp-float span {
    display: none;
  }
}

.whatsapp-float {
  bottom: calc(20px + env(safe-area-inset-bottom));
}

/* =========================
   TRUSTED LOGOS – DESKTOP
========================= */
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.trusted-logos img {
  max-height: 112px;
  width: auto;
  opacity: 0.85;
  transition: 0.3s ease;
}

.trusted-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* =========================
   TABLET (iPad)
========================= */
@media (max-width: 1024px) {
  .trusted-logos {
    gap: 40px;
  }

  /* Show only first 3 logos */
  .trusted-logos img:nth-child(n+4) {
    display: none;
  }
}

/* =========================
   ALL iPHONES (SE → PRO MAX)
========================= */
@media (max-width: 768px) {
  .trusted-logos {
    flex-direction: column;   /* one by one */
    gap: 28px;
  }

  /* Only first 3 logos */
  .trusted-logos img:nth-child(n+4) {
    display: none;
  }

  .trusted-logos img {
    height: 65px;
    width: auto;
  }
}

/* =========================
   EXTRA SMALL (iPhone SE)
========================= */
@media (max-width: 375px) {
  .trusted-logos img {
    height: 55px;
  }
}


/* ==============================
   🍏 iPHONE RESPONSIVE SYSTEM
============================== */

/* 🔹 Small iPhones (SE, Mini) */
@media (max-width: 375px) {

  body {
    font-size: 14px;
  }

  .hero-left h1 {
    font-size: 22px;
  }

  .video-hero {
    height: 48vh;
    width: 90%;
    margin: 0 auto;
    border-radius: 14px;
  }

  .stats-bar {
    width: 95%;
  }
}

/* 🔹 Standard iPhones */
@media (min-width: 376px) and (max-width: 430px) {

  .hero-left h1 {
    font-size: 24px;
  }

  .video-hero {
    height: 52vh;
    width: 92%;
    margin: 0 auto;
  }
}

/* 🔹 All Phones (general mobile fixes) */
@media (max-width: 768px) {

  /* Remove side overflow issues */
  body {
    overflow-x: hidden;
  }

  /* Make images flexible */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Reduce large spacing */
  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Fix big headings */
  h1, h2 {
    line-height: 1.2;
  }
}




/* ================= HERO MOBILE POSITION BALANCE ================= */
/* 🔥 FORCE HERO TEXT UP (MOBILE) */
/* ================= MOBILE HERO LAYOUT FIX ================= */
@media (max-width: 768px) {

  /* 1️⃣ Stop vertical centering */
  .hero-box {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;   /* 🔥 allows content to move up */
    padding-top: 20px;
  }

  /* 2️⃣ Move text section UP */
  .hero-left {
    width: 100%;
    margin-top: 0;
    padding-top: 0 !important;
  }

  /* 3️⃣ Move model section DOWN */
 .hero-right {
  width: 100%;
  margin-top: -40px;
  display: flex;
  justify-content: center;
  padding-top: 40px;
  position: relative;   /* ⭐ THIS FIXES EVERYTHING */
}

  
  .hero-circle {
    position: absolute;
    width: 95vw;          /* responsive size */
    max-width: 580px;
    aspect-ratio: 1/1;
    border-radius: 50%;

    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;            /* attaches circle to model bottom */

    right: auto;          /* remove desktop offset */
    z-index: 1;
  }
 .creative-text {
  position: absolute;
  bottom: -5px;            /* controls vertical position */
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(66px, 12vw, 75px);
  font-weight: 900;
  letter-spacing: -3px;
  color: #ffffff;
  z-index: 4;              /* ABOVE model */
  white-space: nowrap;
  pointer-events: none;
}


}

