* { margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat',sans-serif;}
body { background:#fff; color:#111; scroll-behavior:smooth;}
a { text-decoration:none; color:inherit; }

html{
    scroll-behavior: smooth;
}

.highlight{
  color: #0b5ed7;
   font-family:'Inter',sans-serif;
   font-weight: bold;
}

/* NAVBAR */
nav { display:flex; justify-content:space-between; align-items:center; padding:20px 10%; background: rgba(255,255,255,0.95); position:sticky; top:0; z-index:100; box-shadow:0 2px 10px rgba(0,0,0,0.05);}
nav .logo { font-weight:700; font-size:1.8rem; color:var(--green);}
nav ul { display:flex; gap:30px; font-family:'Montserrat',sans-serif;}
nav ul li { list-style:none; font-weight:600; position:relative; cursor:pointer; font-family:'Montserrat',sans-serif;}
nav ul li.nav-btn::after{
  display: none;
}
/* ACTIVE LINK */
nav ul li a.active{
  color:#111;
}

/* underline stays visible */
nav ul li a.active::after{
  width: 100%;
}

/* FIX: apply underline to link instead of li */
nav ul li a{
  position: relative;
}

nav ul li a::after{
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #2563eb;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav ul li a:hover::after{
  width: 100%;
}

nav ul li a.active::after{
  width: 100%;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 12px;
  padding: 8px 0;

  display: flex;
  flex-direction: column;

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.25s ease;
   z-index: 999;
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
  transition: all 0.25s ease, visibility 0.25s;
}

/* LINKS */
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: 0.25s;
}

/* HOVER EFFECT */
.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #1f8bb4;
  padding-left: 25px; /* subtle slide effect */
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown:hover > a::after {
  width: 0;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 200;
}

/* LINES */
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: all 0.35s ease;
}

/* HOVER EFFECT (desktop only) */
.hamburger:hover span:nth-child(2) {
  width: 70%;
}

/* ACTIVE (X ANIMATION) */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
/* LOGO STYLING */
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #111;
}

.logo img{
  height: 60px;
  width: auto;
  object-fit: cover;
  transition: 0.3s;
}

/* slightly smaller on mobile */
@media (max-width: 768px){
  .logo img{
    height: 50px;
  }
}


.logo img{
  transition: 0.3s;
}

.logo:hover img{
  transform: rotate(-5deg) scale(1.05);
}




/* MOBILE NAV */
@media (max-width: 900px){

  nav{
    padding: 15px 6%;
  }

  .dropdown-menu {
  position: static;
  box-shadow: none;
  opacity: 1;
  pointer-events: all;
  transform: none;
  display: none;
  width: 100%;
}

.dropdown.active .dropdown-menu {
  display: block;
}

  /* SHOW HAMBURGER */
  .hamburger{
    display: flex;
  }

  /* HIDE DESKTOP MENU */
  nav ul{
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    
    background: white;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px 30px;
    gap: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  /* WHEN OPEN */
  nav ul.show{
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  /* NAV ITEMS */
  nav ul li{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  nav ul li:last-child{
    border-bottom: none;
  }

  /* LINKS */
  nav ul li a{
    display: block;
    width: 100%;
    font-size: 1rem;
  }

}

/*------------------------------------------------------------------------------------*/

/* HERO */
section { padding:80px 10%; }
/* HERO SPLIT LAYOUT */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
  flex-wrap: wrap; /* responsive for mobile */
  
}


/* Animated Brand Heading */
.hero-content h1{
  font-size: 3.5rem;
  font-weight: 800;
font-family:'Montserrat',sans-serif;
  background: linear-gradient(
    90deg,
    #2563eb,   
    #1f2937,   
    #1e4fd8
  );

  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: brandGradient 6s linear infinite;
}

/* Gradient animation */
@keyframes brandGradient{
  0%{background-position: 0%;}
  100%{background-position: 300%;}
}


.hero-content {
  flex: 1 1 400px;
  text-align: left;
}

.hero-content span {
  font-weight: bold;
  color: #2563eb;
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 10px 0;
  line-height: 1.2;
  font-family:'Montserrat',sans-serif;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4b5563;
  font-family: "Inter", sans-serif;
}

.hero-image {
  flex: 1 1 400px;
  
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
 box-shadow:0 15px 25px rgba(49, 203, 255, 0.5); /* added box shadow */
}

/* ================= HERO BUTTONS (RENAMED) ================= */
.hero-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* BUTTON STYLE */
.hero-buttons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 170px;
  padding: 14px 26px;

  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;

  transition: all 0.25s ease;
}

/* PRIMARY */
.btn-primary1 {
  background: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
}

.btn-primary1:hover {
  background: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
}

/* OUTLINE */
.btn-outline1 {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline1:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .hero-buttons {
    gap: 10px;
    justify-content: flex-start;
  }

  .hero-buttons a {
    min-width: 155px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 320px;
    min-width: auto;
    padding: 12px 18px;
    font-size: 0.92rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .hero-buttons a {
    font-size: 0.88rem;
    padding: 11px 14px;
  }
}

/* ================= HERO BUTTONS ================= */
.buttons {
  display: flex;
  justify-content: flex-start;   /* desktop = left */
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* ================= BUTTON STYLE ================= */
.buttons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 170px;
  padding: 14px 26px;

  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;

  transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.btn-primary {
  background-color: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
}

.btn-primary:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline:hover {
  background-color: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .buttons {
    justify-content: center !important;
    width: fit-content;
    margin: 25px auto 0;
    gap: 10px;
  }

  .buttons a {
    min-width: 155px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    width: fit-content;
    margin: 25px auto 0;
    gap: 10px;
  }

  .buttons a {
    width: 260px;
    max-width: 260px;
    min-width: auto;
    padding: 12px 18px;
    font-size: 0.92rem;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 400px) {
  .buttons a {
    width: 230px;
    max-width: 230px;
    font-size: 0.88rem;
    padding: 11px 14px;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-image img {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}


.about-section {
  padding: 80px 8%;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE LEFT */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow:0 15px 25px rgba(49, 203, 255, 0.5);
  
}

/* TEXT RIGHT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family:'Montserrat',sans-serif;
}

.about-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

.image-slider {
  flex: 1;
  position: relative;
  max-width: 550px;
  height: 550px;
  overflow: hidden;
  border-radius: 15px;
box-shadow:0 15px 25px rgba(49, 203, 255, 0.5);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* MOBILE STACK */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}



.services-section {
  padding: 80px 8%;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT */
.services-text {
  flex: 1;
}

.services-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family:'Montserrat',sans-serif;
}


.services-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
    font-family: "Inter", sans-serif;
}

/* LIST */
.services-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.services-list li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

/* IMAGE */
.services-image {
  flex: 1;
}

.services-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* MOBILE */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
    text-align: center;
  }

  .services-text h2 {
    font-size: 2rem;
  }
}


.trust-section {
  padding: 80px 8%;
  background: #f5f7fa;
  text-align: center;
}

.trust-container {
  max-width: 1000px;
  margin: auto;
}

.trust-section h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-family:'Montserrat',sans-serif;
}

/* subtle underline accent */
.trust-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #1f8bb4;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.trust-section p {
  color: #555;
  margin-bottom: 40px;
  margin-top: 20px;
   font-family: "Inter", sans-serif;
}

/* STATS */
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2.5rem;
  color: #0b5ed7;
  margin-bottom: 5px;
  font-family:'Montserrat',sans-serif;
}

.stat p {
  color: #555;
  font-size: 0.95rem;
   font-family: "Inter", sans-serif;
}


.why-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

/* CONTAINER */
.why-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING */
.why-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  font-family:'Montserrat',sans-serif;
}

/* subtle underline accent */
.why-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #1f8bb4;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.why-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  transition: all 0.3s ease;

  /* subtle border instead of flat look */
  border: 1px solid #f0f0f0;

  /* soft shadow */
  box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

/* HOVER (premium effect) */
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
 
 box-shadow:0 15px 25px rgba(49, 203, 255, 0.5);

  border-color: rgba(31, 139, 180, 0.2);
}



.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f5e9; /* light green background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 10px;
}

.icon-box i {
  font-size: 30px;
  color: #1f8bb4; /* green icon */
}

/* TITLE */
.why-card h4 {
  margin-bottom: 10px;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-family:'Montserrat',sans-serif;
}

/* TEXT */
.why-card p {
  font-size: 0.95rem;
  color: #555;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

.icon {
  font-size: 1.5rem;
  color: #1f8bb4;
  margin-bottom: 10px;
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= CATEGORY SECTION ================= */
.category-section {
  padding: 80px 8%;
}

/* GRID LAYOUT */
.category-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* HEADING */
.category-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.category-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #1f8bb4;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* ================= SWAPPED LAYOUT ONLY ================= */

/* TOP ROW (2 cards swapped positions) */
.category-card:nth-child(1) {
  grid-column: 1 / span 3;
}

.category-card:nth-child(2) {
  grid-column: 4 / span 3;
}

/* BOTTOM ROW (3 cards) */
.category-card:nth-child(3) {
  grid-column: 1 / span 2;
}

.category-card:nth-child(4) {
  grid-column: 3 / span 2;
}

.category-card:nth-child(5) {
  grid-column: 5 / span 2;
}

/* ================= CARD STYLE ================= */
.category-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(49, 203, 255, 0.5);
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TITLE */
.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .category-container {
    grid-template-columns: 1fr;
  }

  .category-card {
    grid-column: span 1 !important;
  }
}


/* ================= HERO BUTTONS ================= */
.cat {
  display: flex;
  justify-content: center;   /* LEFT ALIGN */
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* ================= BUTTON STYLE ================= */
.cat a {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 170px;
  padding: 14px 26px;

  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;

  transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.btn-primary2 {
  background-color: #2563eb;
  color: #fff;
  border: 2px solid #2563eb;
}

.btn-primary2:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.btn-outline2 {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline2:hover {
  background-color: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .buttons {
    gap: 10px;
    justify-content: flex-start;
  }

  .buttons a {
    min-width: 155px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
    align-items: flex-start;   /* LEFT ALIGN STACKED */
    width: 100%;
    gap: 10px;
  }

  .buttons a {
    width: 100%;
    max-width: 320px;
    min-width: auto;
    padding: 12px 18px;
    font-size: 0.92rem;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 400px) {
  .buttons a {
    font-size: 0.88rem;
    padding: 11px 14px;
  }
}

/* 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;
  }
}
/* --------------------
   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;
  font-family: "Inter", sans-serif;
}

.footer-column a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.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;
  font-family: "Inter", sans-serif;
}

.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;
  }
}


/* ================================
   SCROLL REVEAL BASE (Apple Style)
================================ */

/* Hidden state */
.reveal{
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* When visible */
.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ================================
   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;
  }
}
