/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-green: #00ff88;
  --secondary-green: #2d5a27;
  --accent-blue: #00d4ff;
  --warm-yellow: #ffeb3b;
  --deep-forest: #0a1a0a;
  --light-mint: #e8fff0;
  --glow-green: rgba(0, 255, 136, 0.3);
  --glow-blue: rgba(0, 212, 255, 0.3);
}

body {
  background: linear-gradient(135deg, #010707 0%, #0a3a3f 50%, #21aab4 100%);
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  /* allows only vertical scroll */
}

/* ===== Scrollbar Styling (Dark Green Theme) ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #e6f4ea;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #06585f, #06484e);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #046978, #065f5f);
}

/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
}

/* =========================
   Partner Section Styling
========================= */
.partner-section {
  position: relative;
  /* mint background */
  overflow: hidden;
}

/* ===== Logo Slider ===== */
.partner-slider {
  overflow: hidden;
  width: 100%;
  margin: 0%;
  padding: 20px;
  background: transparent;

}

.partner-track img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-track img:hover {
  transform: scale(1.1);
}

.partner-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: slideRight 20s linear infinite;
  animation-play-state: running;
  /* default running */
}

.partner-track.paused {
  animation-play-state: paused;
  /* stop animation when class added */
}

/* ===== Animation Keyframes ===== */
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}
/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
  .partner-track {
    gap: 50px;
  }

  .partner-track img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .partner-track {
    gap: 40px;
  }

  .partner-track img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 40px 0;
  }

  .partner-track {
    gap: 30px;
  }

  .partner-track img {
    height: 30px;
  }
} 

/* =========================================================
   2) HEADER / NAVIGATION
   ========================================================= */
.logo img {
  height: 60px;
  /* adjust as needed */
  width: auto;
  display: block;
}



@media (max-width: 768px) {
  .logo img {
    height: 40px;
    /* smaller logo for mobile */
  }
}

header {
  width: 100%;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #010707aa, #0a3a3faa);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

header.scrolled {
  background: rgba(1, 7, 7, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled .menu a {
  color: #ffffff;
  /* make nav links dark for visibility */
}

header.scrolled .menu a:hover {
  color: #21aab4;
  /* make nav links dark for visibility */
}

/*header.scrolled .logo h2 {
  color: #4c2dff;
}

.logo h2 {
  color: #a64ce3;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo h2:hover {
  color: #3a44fe;
} */

/* Nav Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu li {
  position: relative;
}

.menu a {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.3s ease;
}

.menu a::after {
  display: none;
}

.menu a:hover {
  color: #21aab4;
  transform: scale(1.1);
}

.menu a img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.menu a:hover img {
  transform: scale(1.2);
}

/* Login Button */
.login-btn a {
  background: linear-gradient(135deg, #167b75, #06bee3);
  color: #010707 !important;
  padding: 6px 28px;
  border-radius: 8px;
  font-weight: 500;
  border: 2px solid #00f0ff;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.login-btn a:hover {
  background: linear-gradient(90deg, #00d4ff, #21aab4);
  transform: scale(1.08);
  color: #ffffff !important;
  border-color: #21edf4;
  box-shadow: 0 0 12px rgba(33, 180, 170, 0.8);
}

/* Remove underline effect for login button */
.login-btn a::after {
  display: none;
}

.dropdown {
  position: relative;
}

/* Dropdown - Dark Green Theme */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(10, 63, 59, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(33, 180, 170, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(33, 180, 170, 0.25);
  animation: dropdownFade 0.35s ease forwards;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(0, 197, 200, 0.15);
  /* greenish separator */
}

/* Optional: hover effect for items */
.dropdown-menu li a {
  color: #b2ebf2;
  /* light green text */
  padding: 10px 16px;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(33, 180, 170, 0.15);
  color: #00d4ff;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  padding: 16px 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease;
}

/* Left indicator for dropdown items */
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 3px;
  background: linear-gradient(90deg, #21aab4, #21aab4);
  /* dark green gradient */
  border-radius: 4px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-menu li a:hover {
  background: rgba(33, 180, 170, 0.15);
  color: #00d4ff;
  padding-left: 28px;
}

.dropdown-menu li a:hover::before {
  height: 60%;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.4s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
  /* responsive padding */
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  /* slightly lighter */
  z-index: -1;
}

/* Hero Content */
.hero-content {
  max-width: 900px;
  padding: 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 65px);
  /* responsive text */
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 1500;
  text-shadow: 0 0 1px rgba(145, 60, 215, 0.8);
}

.hero-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 28px;
  color: #ddd;
}



/* Fade-in Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* WHO WE ARE Section */
.who-section {
  padding: 70px 40px;

  color: #efeded;
  overflow: hidden;
}

.who-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
}

/* Left Side Image */
.who-image {
  flex: 1 1 45%;
}

.who-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.who-image img:hover {
  transform: scale(1.05);
}

/* Right Side Text */
.who-content {
  flex: 1 1 50%;
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4c9, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.who-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #f1ebeb;
  text-align: justify;
}

/* Cards */
.who-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.who-card {
  background: linear-gradient(145deg, #0b2e2dcc, #145351cc);
  flex: 1 1 45%;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease;
  border: 1px solid #0aefff;
}

.who-card:hover {
  transform: translateY(-10px);
}

.who-card img {
  width: 60px;
  margin-bottom: 15px;
}

.who-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #89edff;
}

.who-card p {
  font-size: 15px;
  color: #eceaea;
}

/* Animation */
.who-section .who-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.who-section.active .who-container {
  opacity: 1;
  transform: translateY(0);
}

.who-icon {
  font-size: 35px;
  color: #23513e; /* Your theme purple */
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 0.8rem;
  border: 1px solid #235051;
  background: #a3f9ed;
  border-radius: 50%;
}

.who-card:hover .who-icon {
  transform: scale(1.1);
  color: #184b50;
}

.ti {
  font-family: "tabler-icons" !important;
  font-style: normal;
  display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== HIGHLIGHT CARDS ===== */
.highlights-section {
  padding: 80px 10px;
 background: linear-gradient(to bottom, #010707 0%, #0a3a3f 50%, #21aab4 100%);
  text-align: center;
}

.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1300px;
  margin: auto;
}

.highlights-section .card {
  border-radius: 15px;
  padding: 24px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
  text-align: left;
  background: linear-gradient(145deg, #1b4340cc, #2d6a60cc);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.highlights-section .card h3 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #dafff6;
  text-align: center;
}

.highlights-section .card-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.highlights-section .card-row.reverse {
  flex-direction: row-reverse;
}

.highlights-section .card img {
  width: 250px;
  height: 250px;
  flex: 0 0 250px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.highlights-section .card-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.highlights-section .card:hover img {
  transform: scale(1.05);
}

.highlights-section .card p {
  font-size: 16px;
  line-height: 1.6;
  color: #dedada;
  text-align: justify;
}

/* Animation */
.highlights-section .card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }

  .highlights-section .card {
    padding: 20px 16px;
  }

  .highlights-section .card-row {
    flex-direction: column;
    gap: 16px;
  }

  .highlights-section .card-row.reverse {
    flex-direction: column;
  }

  .highlights-section .card h3 {
    font-size: 28px;
  }

  .highlights-section .card img {
    width: 200px;
    height: 200px;
  }
}

/* ===== GRID ===== */
/* Highlights Section */
.highlights {
  padding: 20px 20px;
  text-align: center;
}

.highlights .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

.highlights .card {
  background: linear-gradient(145deg, #1b4340cc, #2d6a60cc);
  padding: 30px 20px;
  border-radius: 100px; /* makes the card rounded */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .highlights .card {
    border-radius: 50%;  /* makes it circular */
    width: 180px;         /* make width = height */
    height: 180px;        /* make height = width */
    margin: auto;         /* center it */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .highlights .card i {
    margin-bottom: 10px;  /* icon spacing inside circle */
  }

}
.highlights .card i {
  font-size: 40px;
  color: #c3f5df;
  margin-bottom: 1opx;
}

.highlights .card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #f8f7f7;
}

.highlights .card span {
  font-size: 15px;
  color: #ededed;
  display: block;
}

/* Animation on scroll */
.highlights.active .card {
  opacity: 1;
  transform: translateY(0);
}

.highlights.active .card:nth-child(1) {
  transition: all 0.6s ease 0.2s;
}

.highlights.active .card:nth-child(2) {
  transition: all 0.6s ease 0.4s;
}

.highlights.active .card:nth-child(3) {
  transition: all 0.6s ease 0.6s;
}

.highlights.active .card:nth-child(4) {
  transition: all 0.6s ease 0.8s;
}

.highlights.active .card:nth-child(5) {
  transition: all 0.6s ease 1s;
}




/* Footer Styles */
.footer {
  background: radial-gradient(circle at center, #021b1b 0%, #033032 50%, #0a6969 100%);
  /* dark green gradient */
  color: #fff;
  padding: 60px 25px 20px;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #11cb8d, #25fc6d);
  display: block;
  margin-top: 8px;
}

.footer-col ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ddd;

  /* Ensure icon stays left and text shrinks instead of overflowing */
  flex-wrap: nowrap;
  /* no wrapping to next line */
  overflow-wrap: anywhere;
  /* allow breaking within long words if necessary */
}

.footer-col ul li i {
  margin-right: 10px;
  /* gap between icon and text */
  flex-shrink: 0;
  /* icon never shrinks */
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;

  /* allow long emails to break within container */
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: #95fede;
}

/* Logo & Social */
.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  /* circle size */
  height: 40px;
  border: solid 1px;
  border-radius: 50%;
  /* makes it a circle */
  background: #22222200;
  /* default circle background */
  color: #bbb;
  /* icon color */
  font-size: 16px;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #12f3bf;
  /* circle background on hover */
  color: #fff;
  /* icon color on hover */
  transform: scale(1.1);
  /* slight zoom effect */
  box-shadow: 0 4px 12px rgba(18, 243, 191, 0.4);
}

/* ================= LEGAL SECTION ================= */
.footer-legal {
  background: transparent;
  color: #fff;
  padding: 20px 12px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.legal-titles {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-title {
  flex: 0 1 280px;
  text-align: center;
  margin: 0;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #00f0ff; 
  font-weight: 600;
  color: #010707;
  background: linear-gradient(135deg, #167b75, #06bee3);
  transition: all 0.3s ease;
  cursor: pointer;
}


.legal-title:hover {
  background: linear-gradient(90deg, #00d4ff, #21aab4);
  color: #ffffff !important;
  transform: scale(1.08);
  border-color: #21edf4;
  box-shadow: 0 0 12px rgba(33, 180, 170, 0.8);
}

.legal-title.active {
  background: linear-gradient(90deg, #00aaff, #00d4ff);
  color: #fff;
}

.legal-desc-container {
  margin-top: 14px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.legal-desc-container .legal-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #e0e0e0;
  margin-top: 5px;
}

.legal-desc {
  display: none;
  margin-top: 8px;
  line-height: 1.6;
  color: #d7f5f2;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-legal {
    padding: 16px 10px;
  }

  .legal-titles {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .legal-title {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  .legal-desc-container {
    margin-top: 10px;
  }

  .legal-desc-container .legal-desc,
  .legal-desc {
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
  }
}

@media (max-width: 500px) {
  .legal-title {
    font-size: 13px;
    padding: 9px 12px;
  }

  .legal-desc-container .legal-desc,
  .legal-desc {
    font-size: 11.5px;
  }
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
  flex-shrink: 0;
}

.footer-bottom .partner-section {
  flex: 1;
  min-width: 0;
}

.footer-bottom .partner-slider {
  padding: 0;
  background: transparent;
}

.footer-bottom .footer-social {
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    margin-left: 0;
    margin-right: auto;
    /* aligns left */
    display: block;
    /* ensure margin works */
    text-align: left;
    /* optional if needed inside container */
  }
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 70px;
  /* moved up so it doesn’t overlap */
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: black;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(38, 58, 47, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {

  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    text-align: center;
    animation: slideDown 0.4s ease forwards;
  }

  nav.active {
    display: flex;
    padding: 20px;
  }

  .menu {
    flex-direction: column;
    gap: 20px;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .login-btn a {
    display: block;
    width: 80%;
    margin: 16px auto;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo img {
  height: 60px;
  /* adjust as needed */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
    /* smaller logo for mobile */
  }
}
