@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Cinzel:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area img {
  height: 90px;
  width: auto;
  margin-left: -70px;
}

.logo-area a {
  display: inline-block;
  text-decoration: none;
}

.logo-area a:hover {
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: -60px;
}

.main-nav a {
  font-family: 'Cinzel', serif;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 18px;
  transition: color .18s ease;
}

.main-nav a.active {
  color: #f15722;
  font-weight: bold;
  border-bottom: 2px solid #f15722;
}

.main-nav a:hover {
  color: #f15722;
  font-weight: bold;
  border-bottom: 2px solid #f15722;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  margin-right: -40px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #f15722; /* Changed from #222 to #f15722 */
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1000;
    margin-right: 0px; 
} 
  
/* transform into X when active */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* show the toggle on mobile */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
}
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  /* ===== Fade-down animation for nav links ===== */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base state */
.nav-menu li {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When menu is active, animate each link one after another */
.nav-menu.active li {
  animation: fadeDown 0.4s ease forwards;
}

/* Stagger the animations */
.nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { animation-delay: 0.25s; }
.nav-menu.active li:nth-child(3) { animation-delay: 0.4s; }
.nav-menu.active li:nth-child(4) { animation-delay: 0.55s; }
.nav-menu.active li:nth-child(5) { animation-delay: 0.7s; }

  .nav-menu a {
    font-size: 20px;
    padding: 10px 20px;
  }

  .logo-area img {
    margin-left: 0;
    height: 70px;
  }

  .main-nav ul {
    margin-right: 0;
  }
}





/* Mobile Styles */
@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
    z-index: 1000;
    margin-right: 0px; 
} 
  
/* transform into X when active */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* show the toggle on mobile */
@media (max-width: 1100px) {
  .menu-toggle { display: flex; }
}
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  /* ===== Fade-down animation for nav links ===== */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base state */
.nav-menu li {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When menu is active, animate each link one after another */
.nav-menu.active li {
  animation: fadeDown 0.4s ease forwards;
}

/* Stagger the animations */
.nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { animation-delay: 0.25s; }
.nav-menu.active li:nth-child(3) { animation-delay: 0.4s; }
.nav-menu.active li:nth-child(4) { animation-delay: 0.55s; }
.nav-menu.active li:nth-child(5) { animation-delay: 0.7s; }

  .nav-menu a {
    font-size: 20px;
    padding: 10px 20px;
  }

  .logo-area img {
    margin-left: 0;
    height: 70px;
  }

  .main-nav ul {
    margin-right: 0;
  }
}



/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 560px;
  background: url("result_image.png") center/cover no-repeat;
}

.below-hero {
  height: 140px;
}

@media (max-width: 768px) {
  .hero {
    background-size: 220%; /* slightly zoomed for balance */
    background-position: center top;
    background-repeat: no-repeat;
    height: 80vh; /* taller hero section */
  }

  .hero .content,
  .hero h1,
  .hero p {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .below-hero {
    display: none !important;
  }

  .vitamins {
    margin-top: -200px !important; /* pulls it even closer */
  }
}

.products-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
  display: flex;
  gap: 28px;
  z-index: 40;
}

.product-card {
  width: 270px;
  background:#fff5f0;
  border-radius:16px;
  padding:28px 24px;
  box-shadow: 0 4px 20px #f15722;
  opacity:0;
  text-align: center;
  overflow: hidden;
  transform: translateY(26px) scale(0.98);
  animation: popIn .3s cubic-bezier(.2,.9,.28,1) forwards;
}

.product-card:nth-child(1) { animation-delay: .08s; }
.product-card:nth-child(2) { animation-delay: .26s; }
.product-card:nth-child(3) { animation-delay: .44s; }

.product-image img {
  width: 100%;
  height: 257px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.price {
  color: #f15722;
  font-weight: 600;
  font-size: 15px;
}

.new-price {
  font-family: 'Cinzel', serif;
}

.product-link {
  text-decoration: none;
  color: inherit;
}
.product-link:hover .product-card {
  transform: scale(1.03);
  transition: 0.3s;
  box-shadow: 0 4px 20px #222;
}


@keyframes popIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================= VITAMINS SECTION ================= */
.vitamins {
  text-align: center;
  padding: 80px 20px;
  margin-top: -80px;
}

.vitamins-content img {
  max-width: 120px;
  margin-bottom: 20px;
}

.vitamins-content .tagline {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #f15722;
}

.vitamins-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 33px;
  font-weight: 800;
  max-width: 650px;
  margin: 20px auto -50px;
  line-height: 1.3;
  color: #222;
  margin-bottom: -70px;
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.vitamins-content > * { opacity: 0; }
.vitamins.animate .vitamins-content > * { animation: slideDown 1s ease forwards; }
.vitamins.animate .vitamins-content img { animation-delay: .2s; }
.vitamins.animate .vitamins-content .tagline { animation-delay: .4s; }
.vitamins.animate .vitamins-content h2 { animation-delay: .6s; }

/* ================= ALVION HEALTH FORMULATIONS ================= */
.alvion-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.left-section {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgb(0, 0, 0);
}

.new-label {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #f15722;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.2;
}

.description {
  font-size: 16px;
  color: #444;
  font-family: 'Cinzel', serif;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 600;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: #f15722;
}

.products-grid .product-card {
  background: #fff5f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px #f15722;
}

.products-grid .product-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  text-align: center;
}

.right-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-image {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff5f0;
  box-shadow: 0 4px 20px rgb(0, 0, 0);
}

.athlete-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgb(0, 0, 0);
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-description {
  font-size: 16px;
  color: #555;
  font-family: 'Cinzel', serif;
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 600;
}

.shop-now-btn {
  background: #f15722;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

.shop-now-btn:hover {
  background: black;
  transform: translateY(-2px);
}

/* ================= ANIMATIONS ================= */
@keyframes slideUpFade {
  0%   { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}

.left-section,
.right-section {
  opacity: 0;
  animation: slideUpFade 1s ease forwards;
  animation-play-state: paused; /* JS triggers on scroll */
}

.left-section  { animation-delay: 0.1s; }
.right-section { animation-delay: 0.3s; }

/* ================= RESPONSIVE ================= */
@media (max-width:1024px) {
  .alvion-container   { gap: 40px; }
}

@media (max-width:760px) {
  /* Hero Section Products - Stack neatly */
  .hero {
    height: auto;
    padding-top: 80px;
    padding-bottom: 200px; /* Creates space for products */
  }

  .products-overlay {
    position: static; /* Removes absolute positioning */
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 250px; /* Lift it slightly into hero */
    z-index: 2;
  }

  .product-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(241, 87, 34, 0.4);
  }

  

  .product-image img {
    height: auto;
    max-height: 300px;
  }

  .below-hero {
    height: 80px; /* Prevents overlap below */
  }

  /* Alvion Health Formulations Section */
  .alvion-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .left-section { 
    padding: 24px; 
    text-align: left;
  }
  
  .main-title {
    font-size: 24px;
    text-align: left; /* Keep left aligned on mobile */
  }
  
  .description {
    text-align: left; /* Keep left aligned on mobile */
  }

  .products-grid{ 
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }
  
  .products-grid .product-card {
    width: 100%;
    max-width: 280px;
  }
  
  .cta-section  { padding: 24px; }
  .cta-title    { font-size: 24px; }
}



/* ================= TESTIMONIALS ================= */
.testimonials-section {
  background: #fff;
  padding: 60px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.testimonials-header .section-label {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #f15722;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.testimonials-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.testimonials-cards {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 260px;
  background:#fff5f0;
  border-radius:16px;
  padding:28px 24px;
  box-shadow: 0 4px 10px #f15722;
  opacity:0;
  transform: scale(0.9);
}


.testimonial-card.green { background: #fff5f0; }
.testimonial-card.pink  { background: #fff5f0; }

.card-title {
  font-size: 24px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.stars {
  color: #f15722;
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.card-text {
  font-size: 18px;
  color: #444;
  font-family: 'Cinzel', serif;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 28px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.client span {
  font-weight: 700;
  font-size: 20px;
  color: #222;
  font-family: 'Cinzel', serif;
}

/* POP-UP all at once */
@keyframes popUpAll {
  0%   { opacity: 0; transform: scale(0.8); }
  60%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.testimonial-card.animate {
  animation: popUpAll 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 960px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials-cards {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  background: #fff;
  color: #222;
  padding: 50px 0 0;
  border-top: 1.5px solid rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
}

/* Top Features */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3% 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-top .feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-top i {
  font-size: 22px;
  color: #f15722;
}
.footer-top h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  margin-bottom: 4px;
}
.footer-top p {
  font-size: 15px;
  color: #222;
  font-family: 'Cinzel', serif;
}

/* Middle Columns */
.footer-middle {
  width: 100%;
  background: #f5f5f5;
  padding: 40px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  font-family: 'Cinzel', serif;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  margin-bottom: 16px;
  color: #222;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #222;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  transition: color .2s;
}
.footer-col ul li a:hover {
  color: #f15722;
  font-family: 'Cinzel', serif;
  border-bottom: 2px solid #f15722;
}

.address a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.address a:hover {
  color: #f15722;
  font-family: 'Cinzel', serif;
  border-bottom: 1.5px solid #f15722;
}

/* Social Icons */
.social-icons a {
  font-size: 18px;
  margin-right: 12px;
  font-family: 'Cinzel', serif;
  color: #222;
  transition: color .2s;
}
.social-icons a:hover {
  color: #f15722;
  font-family: 'Cinzel', serif;
  border-bottom: 2px solid #f15722;
}

/* Bottom Row */
.footer-bottom-wrapper {
  width: 100%;
  background: #f5f5f5;
  border-top: 2px solid rgba(0, 0, 0, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 6%;
  text-align: center;
}

.footer-bottom p {
  font-size: 16px;
  font-weight: 600;
  color: #f15722;
  font-family: 'Cinzel', serif;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top,
  .footer-middle {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-top,
  .footer-middle {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-top .feature { justify-content: center; }
}

.certifications {
  position: relative;
  background:#fff5f0;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0;
}

.certifications-container {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

/* Speech bubble */
.cert-text-bubble {
  display: inline-block;
  background: #f15a22;
  color: #fff;
  border-radius: 20px;
  padding: 15px 25px;
  max-width: 400px;
  margin-bottom: 30px;
  position: relative;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 20px;
}
.cert-text-bubble::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 25px;
  height: 25px;
  background: #f15a22;
}

/* Logos */
.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 40px auto 20px;
}
.cert-logos img {
  height: 120px;
  transition: transform 0.3s ease;
}
.cert-logos img:hover {
  transform: scale(1.1);
}

/* Tagline */
.cert-tagline {
  color: #222;
  font-weight: 700;
  font-size: 30px;
  margin: 70px 0 60px;
  font-family: 'Cinzel', serif;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  display: flex;
  min-height: calc(100vh - 90px); /* leave header space */
  margin-top: 0;
}

/* LEFT banner (static) */
.contact-banner {
  width: 10cm;
  background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=80');
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-overlay h1 {
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 700;
  text-transform: none;
  padding-left: 30px;
}

/* RIGHT content area */
.contact-right {
  width: 56%;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 6%;
}

.contact-inner {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 380px; /* increased right column width */
  gap: 60px; /* wider gap between text and cards */
  align-items: start;
}

/* main text */
.contact-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  margin-bottom: 18px;
  color: #111;
  white-space: nowrap; /* keeps it in one line */
}


.contact-text p {
  font-size: 18px;
  margin-top: 80px;
  line-height: 1.7;
  color: #222;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  max-width: 720px;
}
.contact-text a { color: #f15722; font-weight:600; text-decoration: none; }

/* cards column */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
}



/* single card style (tall rectangular) */
.contact-card {
  background: #fff5f0;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 20px #222;
  border-left: 6px solid #f15722;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card.alt { border-left-color: #d84c1c; } /* slight variant for Office card */

.card-heading {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 4px;
  color: #111;
}
.card-address { font-style: normal; color:#444; line-height:1.5; }
.card-phone { font-weight:700; color:#222; margin-top:6px;}
.card-cta .link {
  display:inline-block;
  margin-top:10px;
  text-decoration:none;
  color:#fff;
  background:#f15722;
  padding:8px 12px;
  border-radius:8px;
  font-weight:600;
}

/* small responsive tweak for very long addresses */
.card-address div { white-space: nowrap; }
/* unified slide-up for entire right side */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(100px);
}

.slide-up.animate {
  animation: slideUp 1.2s cubic-bezier(.2,.9,.28,1) forwards;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .contact-inner { grid-template-columns: 1fr 320px; }
  .banner-overlay h1 { font-size: 72px; }
  .contact-text h2 { margin-top: -130px; margin-bottom: -40px;}
}

@media (max-width: 900px) {
  .contact-section { flex-direction: column; }
  .contact-banner { width: 100%; height: 320px; }
  .banner-overlay h1 { font-size: 64px; padding-left: 18px; text-align: left; }
  .contact-right { width: 100%; padding: 40px 5%; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-cards { flex-direction: row; gap: 18px; }
  .contact-card { flex: 1; min-width: 140px; }
}

@media (max-width: 520px) {
  .banner-overlay h1 { font-size: 44px; }
  .contact-text h2 { font-size: 32px; margin-top: 30px; margin-bottom: -40px;}
  .contact-text p { font-size: 16px; }
  .contact-inner { gap: 24px; }
  .contact-cards { flex-direction: column; }
}

/* Prevent unwanted horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Custom Scrollbar Styling (for Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 15px; /* thicker scrollbar */
}

::-webkit-scrollbar-track {
  background: #ffffff; /* light orange background like your sections */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f15722, #ff7b4d);
  border-radius: 10px;
  border: 3px solid #ffffff; /* creates padding around thumb */
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #f15722; /* darker orange on hover */
}

/* Firefox Scrollbar */
* {
  scrollbar-width: auto; /* makes it thicker on Firefox */
  scrollbar-color: #f15722 #ffffff;
}