/* =========================
   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: 0px; /* navbar height */
  
}

/* ================= GLOBAL LINK HOVER EFFECT ================= */

a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}


/* =========================
   NAVBAR – FULL RESPONSIVE (ALL SIZES)
========================= */

.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;
  justify-content: space-between; /* ✅ keeps logo left, menu/hamburger right */
}

.nav-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
}

/* DESKTOP LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #190951;
  font-size: 15px;
}

/* Underline hover */
.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%;
}

/* CTA Button */
.quote-btn {
  margin-left: 25px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(45deg, #ff6978, #350068);
  color: #fff;
  font-weight: 700;
  display: inline-block;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: 16px;
  line-height: 1;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

  .navbar {
    height: 125px;
    
  }
body {
    padding-top:-150px;
  }
  .hamburger {
    font-size: 65px;
    display: block;
  }

  .nav-container {
    padding: 0 120px;
  }

  .nav-logo {
    height: 95px;
  }

  /* Hide normal horizontal layout */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 105px;
    right: 0;
    width: 260px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 20px;
  }

  .nav-links.show {
    display: flex;
    font-size:0px;
  }

  /* 🔥 Move FREE QUOTE into dropdown */
 .quote-btn {
  width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 6px;
}
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .navbar {
    height: 85px;
  }

  .nav-container {
    padding: 0 25px;
  }

  .nav-logo {
    height: 60px;
  }

  .hamburger {
    display: block;
    font-size: 38px;          /* 🔥 Large mobile hamburger */
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;                /* match navbar height */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;          /* 🔥 Bigger mobile links */
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .quote-btn {
    width: 85%;
    margin: 20px auto;
    text-align: center;
    padding: 16px 0;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .nav-logo {
    height: 55px;
  }

  .hamburger {
    font-size: 34px;
  }

  .nav-links a {
    font-size: 18px;
  }
}

/* =========================
   HERO SECTION
========================= */
.hero-box {

   border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  min-height: 60vh;
  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 */
}

.creative-text{
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  transition: all 1.2s ease;
  /* add these inside .creative-text */
.will-change: transform;
transition: none; /* important: don't fight scroll JS */
}

.creative-text.show{
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}


/* ----- 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(500px, 65vw, 700px);
  aspect-ratio: 1/1;
  background: #ff7a8f;
  border-radius: 50%;
  bottom: -10%; 
  right: 2%;
  z-index: 2; /* FIXED: added colon */
}



/* HERO IMAGE */
.hero-model {
  position: relative;
  width: clamp(200px, 55vw, 570px);
  height: auto;
  z-index: 3;
  transform: translateY(104px);
}



/* =========================
   HERO – STABLE RESPONSIVE FIX
========================= */


/* Tablet & below */
@media (max-width: 1024px) {
  /* WHATSAPP BUTTON */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
  .hero-box {
    flex-direction: column;             /* ✅ text first, image below */
    text-align: center;
    padding: -19px 6% 650px;
    min-height: 100vh;  
     min-height: 380px;        /* ✅ reduced */
    margin-top: 130px;               /* ✅ fills screen like screenshot */
  }

  .hero-left {
    padding-top: 0;
    max-width: 720px;
    margin: 016px auto;
  }

  .hero-left h1 {
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-left p {
    font-size: 40px;
    max-width: 38ch;
    margin: 0 auto 22px;
    line-height: 1.6;
  }
    .hero-btn {
        font-size: 44px;
        padding: 18px 16px;
    }

  .hero-right {
    width: 100%;
   
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 380px;        /* ✅ reduced */
    margin-top: -30px;              /* ✅ space for circle + model */
  }

  /* Circle perfectly centered */
  .hero-circle {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(107vw, 960px);
    bottom: -2%;
  }

  /* Model centered on circle */
  .hero-model {
    width: min(80vw, 732px);
    transform: translateY(0);
    margin-bottom: 0px;
  }

  /* Big Creative text at bottom (partially cut) */
  .creative-text {
    left: 50%;
    bottom: px;                     /* ✅ pushes it down like screenshot */
    transform: translateX(-50%);
    font-size: clamp(74px, 22vw, 170px);
    letter-spacing: -4px;
    z-index: 4;
    top: 1480px;
  }
}

/* =========================
   HERO – OTHER BREAKPOINTS
   (ADD BELOW your 1024px block)
========================= */

/* Mobile */
@media (max-width: 768px) {
  .hero-box{
    padding: 90px 5% 520px;   /* reduce if too much */
  }

  .hero-left h1{
    font-size: clamp(28px, 8vw, 52px);
  }

  .hero-left p{
    font-size: clamp(16px, 4vw, 22px);
  }

  .hero-btn{
    font-size: clamp(16px, 4vw, 22px);
    padding: 14px 28px;
  }

  .hero-right{
    min-height: 340px;
    margin-top: -20px;
  }

  .hero-circle{
    width: min(110vw, 700px);
    bottom: -4%;
  }

  .hero-model{
    width: min(85vw, 520px);
  }

  .creative-text{
    font-size: clamp(70px, 26vw, 170px);
    top: auto;          /* stop fixed top on mobile */
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-box{
    padding: 85px 5% 460px;
  }

  .hero-left h1{
    font-size: clamp(24px, 9vw, 40px);
  }

  .hero-left p{
    font-size: clamp(14px, 4.2vw, 18px);
    max-width: 34ch;
  }

  .hero-btn{
    font-size: 16px;
    padding: 12px 24px;
  }

  .hero-right{
    min-height: 300px;
    margin-top: -15px;
  }

  .hero-circle{
    width: 120vw;
    bottom: -8%;
  }

  .hero-model{
    width: 88vw;
  }

  .creative-text{
    font-size: clamp(64px, 30vw, 160px);
    top: auto;
    bottom: -60px;
  }
}

/* Large Desktop (Optional) */
@media (min-width: 1200px) {
  .hero-left h1{
    font-size: 72px;
  }
  .hero-left p{
    font-size: 16px;
  }
  .hero-model{
    width: clamp(320px, 40vw, 600px);
  }
}

/* =========================
   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: clamp(50px, 6vw, 10px) 6%;
  background: #fff;
  margin: 0;
  margin-bottom:-50px;
}

.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(0);;
}



.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;
   text-align:center;
}

.bar {
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, #ff6978,#350068 );
  border-radius: 20px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
 width: 0%;
  transition: width 2s ease;
  border-radius: 20px;
}


/* =========================
   WHO WE ARE – MOBILE LIKE SCREENSHOT (RESPONSIVE ONLY)
   Desktop code unchanged
========================= */

/* Tablet + Mobile */
@media (max-width: 1024px) {
  .who-container{
    flex-direction: column;     /* stack */
    align-items: stretch;
    gap: 40px;
  }
  .who-content h2 {
    font-size: 75px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.who-content p {
    margin-top: 28px;
    margin-bottom: 20px;
    font-size: 45px;
    max-width: 100% !important;
    width: 100%;;
    color: #777;
    text-align:left;
     line-height: 1.5; 
}
.who-content h5 {
    color: #5a189a;
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

  .skill{
    font-size: 14px;  /* your desktop is 30px; reduce for mobile */
   
     margin-bottom: 65px;
  }

  .skill-title{
    font-size: 40px;
    text-align: left;
  }

  .bar{
    height: 25px;
    gap: 15px; /* thicker like screenshot */
  }

  /* ✅ image at bottom inside card */
  .who-images{
    justify-content: center;
  }

  .who-images,
  .who-content{
    width: 100%;
  }
  .phones-combined {
    width: 856px;
    max-width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    transform: translateY(0);
}

  /* ✅ content first, image last */
  .who-content{ order: 1; }
  .who-images{ order: 2; }

  /* remove negative spacing on responsive */
  .who-we-are{
    margin-bottom: 0;
  }
}

/* Mobile card style like screenshot */
@media (max-width: 768px) {

  /* light page bg (optional but matches screenshot feel) */
  .who-we-are{
    padding: 40px 4%;
    background: #f3f6fb;
    margin-bottom: 0;
  }

  /* ✅ make the section look like a centered card */
  .who-container{
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    gap: 26px;
  }

  /* ✅ text alignment like screenshot */
  .who-content{
    text-align: left;
  }

  .who-content h5{
    font-size: 14px;
    margin-bottom: 12px;
  }

  .who-content h2{
    font-size: 72px;
    line-height: 1.2;
  }

  .who-content p{
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

  .skill{
    font-size: 14px;  /* your desktop is 30px; reduce for mobile */
    margin-bottom: 16px;
  }

  .skill-title{
    font-size: 12px;
    text-align: left;
  }

  .bar{
    height: 8px; /* thicker like screenshot */
  }

  /* ✅ image at bottom inside card */
  .who-images{
    justify-content: center;
  }

  .phones-combined{
    width: 100%;
    max-width: 320px;
    margin: 8px auto 0;
  }
}

/* Small mobile */
@media (max-width: 480px){
  .who-container{
    max-width: 360px;
    padding: 24px 18px;
  }

  .phones-combined{
    max-width: 280px;
  }

  .who-content h2{
    font-size: 26px;
  }
}


.services-section {
  border-top-left-radius: 70px;
border-top-right-radius: 70px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
  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;
}

/* =========================================
   SERVICES SECTION – RESPONSIVE
   (Desktop code untouched)
========================================= */


/* ---------- UNDER 1200px ---------- */
@media (max-width: 1200px){

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

}


/* ---------- UNDER 1024px ---------- */
@media (max-width: 1024px){

  .services-section{
    padding: 80px 5% 90px;
  }

  .section-title{
    font-size: 52px;
    margin-bottom: 55px;
  }

  .services-grid{
    grid-template-columns: repeat(1, 1fr);   /* ✅ compulsory */
    gap: 30px;

  }
  .service-card h3 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #111;
}
.service-card p {
    font-size: 30px;
    color: #7a7a7a;
    line-height: 1.6;
    padding: 0 5px;
}
   .service-card{
    padding: 50px 50px 32px;
    border-radius: 20px;
   }
  .service-card img{
    height: 500px;
  }

}


/* ---------- UNDER 768px ---------- */
@media (max-width: 768px){

  .services-section{
    padding: 65px 5% 75px;
  }

  .section-title{
    font-size: 28px;
    margin-bottom: 45px;
  }

  .services-grid{
    grid-template-columns: repeat(1, 1fr);   /* ✅ compulsory */
    gap: 25px;
  }

  .service-card{
    padding: 24px 24px 32px;
    border-radius: 20px;
  }

  .service-card img{
    height: 200px;
    border-radius: 12px;
  }

  .service-card h3{
    font-size: 16px;
  }

  .service-card p{
    font-size: 14px;
  }

}


/* ---------- UNDER 480px ---------- */
@media (max-width: 480px){

  .services-section{
    padding: 55px 4% 65px;
  }

  .section-title{
    font-size: 24px;
    letter-spacing: 1px;
  }

  .services-grid{
    grid-template-columns: repeat(1, 1fr);   /* ✅ compulsory */
    gap: 22px;
  }

  .service-card{
    padding: 20px 16px 28px;
  }

  .service-card img{
    height: 180px;
  }

  .service-card p{
    line-height: 1.7;
  }

}



.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);
}
/* 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;
}

/* =========================================
   VIDEO HERO + STATS BAR – RESPONSIVE ONLY
   (Desktop code unchanged)
========================================= */

/* ---------- Under 1024px ---------- */
@media (max-width: 1024px){

  .video-hero{
    min-height: 65vh;
    height: 75vh;
  }

  .stats-bar{
    width: 92%;
    margin: -90px auto 0;   /* less overlap */
    padding: 38px 24px;
    border-radius: 14px;
    gap: 18px;
  }
 .video-content h1 {
    font-size: clamp(40px, 10vw, 90px);
}
  .video-content p {
    font-size: clamp(33px, 20vw, -51px);
    }

  .stat h2{
    font-size: 48px;
  }

  .divider{
    height: 40px;
  }
}

/* ---------- Under 768px ---------- */
@media (max-width: 768px){

  .video-hero{
    min-height: 60vh;
    height: 70vh;
  }

  .video-content{
    max-width: 92%;
    padding: 0 16px;
  }

  /* ✅ stack stats nicely */
  .stats-bar{
    width: 92%;
    margin: -70px auto 0;
    padding: 28px 18px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

  .stat{
    width: 45%;
    text-align: center;
  }

  /* hide vertical dividers when wrapping */
  .divider{
    display: none;
  }

  .stat h2{
    font-size: 34px;
  }

  .stat span{
    font-size: 12px;
  }
}

/* ---------- Under 480px ---------- */
@media (max-width: 480px){

  .video-hero{
    min-height: 55vh;
    height: 62vh;
  }

  .stats-bar{
    width: 94%;
    margin: -55px auto 0;
    padding: 22px 16px;
    border-radius: 12px;
  }

  .stat{
    width: 100%;          /* one-by-one */
  }

  .stat h2{
    font-size: 32px;
  }

  .stat span{
    font-size: 12px;
    letter-spacing: 0.8px;
  }
}

/* WHY CHOOSE */
.why-choose {
  padding: 100px 6%;
  background: #fff;
}


.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 CHOOSE – RESPONSIVE ONLY
   Desktop untouched
========================================= */

/* ---------- Under 1024px ---------- */
@media (max-width: 1024px){

  .why-container{
    flex-direction: column;
    gap: 40px;
  }
  .why-content h6 {
    color: #6a1b9a;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 41px;
}
.why-content h2 {
    font-size: 60px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.why-content p {
    color: #666;
    font-size: 30px;
    line-height: 1.7;
    margin-bottom: 35px;
}
.why-point h4 {
    font-size: 30px;
    margin-bottom: 10px;
}
  .why-image,
  .why-content{
    width: 100%;
  }

     .why-image img {
        width: 100%;
        height: auto;
        border-radius: 60px;
        padding-left: 10px;
    }

  .why-content{
    text-align: left;
        padding-left: 0px;
  }
.icon-circle1 {
    width: 120px;
    height: 120px;
    background: #470f6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle1 i {
    color: #ffffff;
    font-size: 55px;
}
}

/* ---------- Under 768px ---------- */
@media (max-width: 768px){

  .why-choose{
    padding: 60px 5%;
  }

  .why-content h6{
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .why-content h2{
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .why-content p{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .why-points{
    gap: 20px;
  }

  .why-point{
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .icon-circle1{
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-point h4{
    font-size: 15px;
    margin-bottom: 6px;
  }

  .why-point p{
    font-size: 13px;
    margin: 0;
  }

}

/* ---------- Under 480px ---------- */
@media (max-width: 480px){

  .why-choose{
    padding: 50px 4%;
  }

  .why-content h2{
    font-size: 24px;
  }

  .icon-circle1{
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

}


/* =====================
   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);
}

/* =========================================
   TRUSTED SECTION – RESPONSIVE ONLY
   Desktop unchanged
========================================= */

/* Under 1024px */
@media (max-width: 1024px){

  .trusted-section{
    padding: 84px 6%;
    text-align: center;
  }

      .trusted-section h2 {
        font-size: 51px;
        line-height: 1.35;
        margin-bottom: 35px;
    }

  .trusted-logos{
    grid-template-columns: repeat(2, 1fr);  /* give more space */
    gap: 0px;
  }

  .trusted-logos img{
    width: 100%;
    max-width: 290px;   /* now it will grow properly */
  }
}

/* Under 768px */
@media (max-width: 768px){

  .trusted-section{
    padding: 60px 5%;
  }

  .trusted-section h2{
    font-size: 24px;
    margin-bottom: 28px;
  }

  .trusted-logos{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .trusted-logos img{
    max-width: 140px;
  }
}

/* Under 480px */
@media (max-width: 480px){

  .trusted-section{
    padding: 50px 4%;
  }

  .trusted-section h2{
    font-size: 20px;
    line-height: 1.4;
  }

  .trusted-logos{
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }

  .trusted-logos img{
    max-width: 130px;
  }
}
/* ================= 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 {
  display: block;
  margin: 0 auto 18px;   /* ✅ perfectly centered */
  width: 65px;
}
/* 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;
}

/* 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);
}

/* =========================================
   HOW WE DO – RESPONSIVE
   Desktop unchanged
========================================= */

/* -------- Under 1200px -------- */
@media (max-width: 1200px){

  .services1-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

/* -------- Under 1024px -------- */
@media (max-width: 1024px){

  .how-we-do{
    padding: 80px 6%;
  }

  .how-we-do h2{
    font-size: 54px;
    margin-bottom: 50px;
  }
.service1-card img {
    display: block;
    margin: 0 auto 18px;
    width: 153px;
}
.service1-card h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
}
.service1-card p {
    font-size: 30px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.section-tag {
  margin-right: 500px;
  text-align: left;
  font-size: 30px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}
  .services1-grid{
    grid-template-columns: repeat(1, 1fr);  /* like previous section */
    gap: 28px;
  }

  .service1-card{
    padding: 30px 22px;
  }

}

/* -------- Under 768px -------- */
@media (max-width: 768px){

  .how-we-do{
    padding: 65px 5%;
  }

  .how-we-do h2{
    font-size: 28px;
  }

  .service1-card h3{
    font-size: 18px;
  }

  .service1-card p{
    font-size: 16px;
  }

}

/* -------- Under 480px -------- */
@media (max-width: 480px){

  .how-we-do{
    padding: 55px 4%;
  }

  .how-we-do h2{
    font-size: 24px;
  }

  .service1-card{
    padding: 24px 18px;
  }

}

/* ================= 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 */
}


/* ICON */
/* ICON (FIXED CENTER) */
.why-icon img,
.why-icon1 img{
  width: 50px;
  display: block;
  margin: 0 auto 18px;   /* ✅ centers perfectly */
  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;
}


/* =========================================
   WHY CHOOSE US CARDS – RESPONSIVE ONLY
   (Desktop unchanged)
========================================= */

/* Under 1400px (optional: 3 columns) */
@media (max-width: 1400px){
  .why-cards{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Under 1200px: 2 columns */
@media (max-width: 1200px){
  .why-choose-section{
    padding: 90px 6%;
  }

      .why-choose-section h2 {
        font-size: 46px;
        font-weight: 700;
        margin-bottom: 69px;
    }
.why-card h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}
  .why-cards{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .why-card p {
    font-size: 37px;
    line-height: 1.6;
    color: #666;
}

  .why-card{
    padding: 38px 24px;
  }
}

/* Under 1024px: 1 column + perfect centered icons */
@media (max-width: 1024px){
  .why-choose-section{
    padding: 80px 6%;
  }
.why-card p {
    font-size: 37px;
    line-height: 1.6;
    color: #666;
}
  .why-choose-section h2{
    font-size: 32px;
    margin-bottom: 50px;
  }

  .why-cards{
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }


  .why-card{
    padding: 34px 22px;
  }

  /* ✅ icon alignment fix */
  .why-icon img,
  .why-icon1 img{
    display: block;
    margin: 0 auto 16px !important; /* overrides your margin-left */
    width: 100px !important;
  }
}
 .why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.15);
  }

  .why-card:hover .why-icon img,
  .why-card:hover .why-icon1 img {
    transform: scale(1.15);
  }

/* Under 768px */
@media (max-width: 768px){
  .why-choose-section{
    padding: 65px 5%;
  }

  .why-choose-section h2{
    font-size: 28px;
    margin-bottom: 42px;
  }

  .why-card h3{
    font-size: 16px;
  }

  .why-card p{
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Under 480px */
@media (max-width: 480px){
  .why-choose-section{
    padding: 55px 4%;
  }

  .why-choose-section h2{
    font-size: 24px;
    margin-bottom: 36px;
  }

  .why-card{
    padding: 28px 18px;
  }

  .why-icon img,
  .why-icon1 img{
    width: 44px !important;
  }
}

/* =========================
   LET’S TALK SECTION
========================= */

.lets-talk-section{
  position: relative;
  height: 580px;
  overflow: hidden;
}

/* Background */
.lets-talk-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lets-talk-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.lets-talk-section::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Content layer */
.lets-talk-overlay{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;   /* text bottom aligned */
  justify-content: center;
  padding-bottom: 40px;
}

/* Text */
.lets-talk-text{
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: 6px;
  color: #ffffff;
  text-transform: uppercase;

  transform: translateY(80px);
  opacity: 0;
  animation: slideUp 1.2s ease-out forwards;
}

/* Slide animation */
@keyframes slideUp{
  to{
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover effect (desktop only) */
@media (hover: hover) and (pointer: fine){
  .lets-talk-section:hover .lets-talk-text{
    letter-spacing: 10px;
    transform: translateY(-8px);
    transition: all 0.4s ease;
  }
}

/* Tap effect (mobile) */
@media (hover: none) and (pointer: coarse){
  .lets-talk-section:active .lets-talk-text{
    letter-spacing: 9px;
    transform: translateY(-6px);
    transition: all 0.3s ease;
  }
}

/* =========================
   RESPONSIVE
========================= */

/* Under 1024px */
@media (max-width: 1024px){
  .lets-talk-section{ height: 480px; }
  .lets-talk-overlay{ padding-bottom: 28px; }
}

/* Under 768px */
@media (max-width: 768px){
  .lets-talk-section{ height: 380px; }
  .lets-talk-overlay{ padding-bottom: 22px; }
}

/* Under 480px */
@media (max-width: 480px){
  .lets-talk-section{ height: 320px; }
  .lets-talk-overlay{ padding-bottom: 18px; }
}
.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 */
}

/* =========================================
   NEED MORE HELP – RESPONSIVE ONLY
   (Desktop unchanged)
========================================= */

/* Under 1200px: 2 cards per row */
@media (max-width: 1200px){
  .need-help{
    padding: 90px 6%;
  }

  .help-cards{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

/* Under 1024px: 1 by 1 */
@media (max-width: 1024px){
  .need-help{
    padding: 80px 6%;
  }

  .main-title{
    font-weight: 600;
    margin: 12px 0 45px;
  }

  .help-cards{
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
  }

  .help-card{
    padding: 100px 26px;
  }

  .help-card h3{
    font-size: 40px;
  }

  .help-card p{
    font-size: 30px;
    line-height: 1.7;
  }
  .contact-link {
    font-size: 30px;
    text-decoration: none;
    margin-bottom: 50px;
    margin-top: 10px;
    font-weight: 600;
    color: #7b3eb3;
}

  /* long address wrap nicely */
  .location{
    font-size: 30px;
    display: block;
    word-break: break-word;
    line-height: 1.6;
  }
/* Bigger Social Icons (Correct Version) */
.social-iconsb{
  display: flex;          /* 🔥 important */
  align-items: center;
  justify-content: center;
  gap: 54px;              /* spacing between icons */
}

.social-iconsb a{
  width: 70px !important;
  height: 70px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-iconsb img{
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
}
}

/* Under 768px: tighter + icons fit */
@media (max-width: 768px){
  .need-help{
    padding: 65px 5%;
  }

  .main-title{
    font-size: 28px;
    margin-bottom: 38px;
  }

  .help-card{
    padding: 30px 20px;
    border-radius: 14px;
  }

  .contact-link{
    display: inline-block;
    line-height: 1.6;
  }

  /* Your HTML uses .social-iconsb, but keep both safe */
  .social-icons,
  .social-iconsb{
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .social-icons a,
  .social-iconsb a{
    width: 44px;
    height: 44px;
  }

  .social-icons img,
  .social-iconsb img{
    width: 20px;
    height: 20px;
  }
}

/* Under 480px: small mobile */
@media (max-width: 480px){
  .need-help{
    padding: 55px 4%;
  }

  .sub-title{
    font-size: 13px;
  }

  .main-title{
    font-size: 24px;
  }

  .help-card{
    padding: 26px 16px;
  }

  .help-card h3{
    font-size: 18px;
  }

  .social-icons a,
  .social-iconsb a{
    width: 42px;
    height: 42px;
  }
}

.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-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;
}

/* 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;
}



  /* Optional: hide text, show icon only */
  .whatsapp-float span {
    display:inline-block;
  }

.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);
}
/* =========================================
   FOOTER – RESPONSIVE ONLY
   Desktop unchanged
========================================= */

/* ---------- Under 1200px ---------- */
@media (max-width: 1200px){

  .footer-container{
    grid-template-columns: 1.5fr 1fr 1fr; /* reduce 4 → 3 */
  }

}

/* ---------- Under 1024px ---------- */
@media (max-width: 1024px){

  .footer{
    padding: 70px 30px 30px;
  }
  .footer-logo {
    width: 252px;
    margin-bottom: 20px;
}

  .footer-container{
    grid-template-columns: repeat(2, 1fr);  /* 2 columns */
    gap: 30px;
  }

  /* Remove negative margin issue */
  .social-icons{
    margin-left: 0 !important;
    justify-content: flex-start;
  }

  .footer-col h4{
    margin-top: 20px;
  }

}

/* ---------- Under 768px ---------- */
@media (max-width: 768px){

  .footer{
    padding: 60px 20px 25px;
    border-radius: 50px 50px 0 0;
  }

  .footer-container{
    grid-template-columns: 1fr;  /* 1 column */
    text-align: center;
  }

  .footer-brand p{
    font-size: 16px;
  }

  .footer-col h4{
    font-size: 20px;
    margin-top: 30px;
  }

  .footer-col ul li{
    font-size: 16px;
  }

  /* Center icons properly */
  .social-icons{
    margin-left: 0 !important;
    justify-content: center;
  }

  .social-iconsb{
    margin-left: 0 !important;
    justify-content: center;
  }

  .footer-logo{
    margin: 0 auto 20px;
  }

}

/* ---------- Under 480px ---------- */
@media (max-width: 480px){

  .footer{
    padding: 50px 16px 20px;
    border-radius: 35px 35px 0 0;
  }

  .footer-brand p{
    font-size: 14px;
  }

  .footer-col ul li{
    font-size: 14px;
  }

  .footer-bottom{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links{
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

}





