* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  background: #ffffff;
  color: #111827;
  line-height: 1.55;
  overflow-x: hidden;
  font-size: var(--fs-base);
  padding-top: 76px;
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

:root {
  --fs-base: clamp(15px, 2.2vw + 0.4rem, 17px);
  --fs-h1: clamp(2.2rem, 6vw + 1rem, 4.2rem);
  --fs-h2: clamp(1.8rem, 4.5vw + 0.8rem, 2.8rem);
  --fs-h3: clamp(1.35rem, 3vw + 0.6rem, 1.8rem);
  --primary: #2D7D84;
}

.download-btn-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-btn-wrapper .label {
  background-color: transparent;
  border: 2px solid #228b84;
  display: flex;
  align-items: center;
  border-radius: 50px;
  width: 160px;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 5px;
  position: relative;
}

.download-btn-wrapper .label::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.download-btn-wrapper .label .input {
  display: none;
}

.download-btn-wrapper .label .title {
  font-size: 17px;
  color: #111827;
  font-weight: 500;
  position: absolute;
  right: 18px;
  bottom: 14px;
  text-align: center;
  margin: 0;
  transition: all 0.4s ease;
}

.download-btn-wrapper .label .title:last-child {
  opacity: 0;
  visibility: hidden;
}

.download-btn-wrapper .label .circle {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #228b84;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transition: all 0.4s ease;
}

.download-btn-wrapper .label .circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1a3937;
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
}

.download-btn-wrapper .label .circle .icon {
  color: #fff;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.download-btn-wrapper .label .circle .square {
  aspect-ratio: 1;
  width: 15px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.08;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
}

.badge {
  background: rgba(45, 125, 132, 0.1);
  color: #2D7D84;
  padding: 0.45em 1em;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.accent {
  color: #2D7D84;
}

.primary-btn {
  background: #2D7D84;
  color: white;
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.primary-btn:hover {
  background: #246369;
}

.large {
  padding: 1rem 2rem;
  border-radius: 12px;
}

.hero {
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left h1 {
  margin-bottom: 1.4rem;
}

.hero-left p {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 48ch;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 1.8rem;
  overflow: visible;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.12);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 125, 132, 0.18);
  border-radius: 1.8rem;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  bottom: -3.2rem;
  left: -0.1rem;
  width: 240px;
  background: white;
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform-origin: top center;
  animation: pendulum 2.8s infinite ease-in-out;
}

@keyframes pendulum {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  75% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.stat-card h2 {
  color: #2D7D84;
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.45;
}

.stats {
  background: #2D7D84;
  color: white;
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stats h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.stats p {
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

.offerings {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: #228b84;
}

.section-header p {
  color: #4b5563;
  max-width: 65ch;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  align-items: stretch;
}

.cards .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
  padding: 1.6rem;
  border-radius: 20px;

  background: #2d7d84;
  color: #ffffff;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.06);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cards .card p{
font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 1rem;
}
.cards .card h3 {
  color: white;
}

.cards .card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.35rem;
  font-size: 14px;
  color: #d1fae5;
}
.cards .card li span {
  display: inline-block;
  margin-top: 3px; 
}
.cards .card i {
  color: #ffffff !important;
  width: 30px;
  height: 30px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  gap: 10px;
}

.cards .card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cards .card ul {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.cards .card:hover {
  transform: scale(1.05);
}

.cards:hover>.card:not(:hover) {
  filter: blur(1.5px);
  transform: scale(0.99);
}

.journey {
  padding: 6rem 0;
  background: #f8fafc;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.steps {
  margin-top: 2.5rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #2D7D84;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.journey-form {
  background: white;
  padding: 2.5rem;
  border-radius: 1.8rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.journey-form h3 {
  text-align: center;
  margin-bottom: 1.8rem;
}

.journey-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-form input,
.journey-form select {
  padding: 0.9rem 1.1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}

.trusted {
  padding: 5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.trusted-header {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
}

.logo-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
  align-items: center;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trusted-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.testimonial {
  padding: 6rem 0;
}

.slider-container {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  border-radius: 3rem;
  box-shadow: 0 30px 50px -20px rgba(0, 40, 80, 0.35);
  padding: 1.5rem 0.5rem;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 2.5rem;
  margin: 0 2rem;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 45px -12px rgba(0, 30, 60, 0.25);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 30px 55px -8px rgba(0, 40, 80, 0.4);
}

.testimonial-left {
  flex: 1 1 60%;
  padding: 3rem 2.5rem 2.5rem 3rem;
  background: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-icon {
  font-size: 8rem;
  line-height: 0.8;
  font-family: 'Georgia', serif;
  color: #dbeaf5;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  user-select: none;
  font-weight: 700;
  z-index: 1;
  opacity: 0.7;
}

.testimonial-left h2 {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a2b3e;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: auto;
}

.author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 12px 18px -10px rgba(30, 60, 90, 0.3);
  background: #e6edf4;
}

.author h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0c1f2e;
  margin-bottom: 0.2rem;
}

.author p {
  font-size: 0.95rem;
  color: #4f657f;
  font-weight: 500;
}

.testimonial-right {
  flex: 1 1 40%;
  background: linear-gradient(145deg, #0F2B3D, #143549);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-width: 260px;
}

.success-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  border-radius: 2.5rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.3), 0 20px 25px -10px rgba(0, 0, 0, 0.5);
  width: 100%;
  transition: transform 0.3s;
}

.success-box:hover {
  transform: scale(1.02);
}

.success-box h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #aad0f5;
  line-height: 1.1;
  text-shadow: 0 2px 5px #00000040;
}

.success-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  word-break: break-word;
  background: linear-gradient(135deg, #fff8e7, #ffe6b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.success-box p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #9bc1de;
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 0.4rem 1.8rem;
  border-radius: 40px;
  border: 1px solid #62a0c7;
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 15px 25px -8px rgba(0, 30, 60, 0.3);
  color: #12384d;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-arrow:hover {
  background: #132f40;
  color: white;
  box-shadow: 0 18px 30px -5px #091e2b;
  scale: 1.07;
}

.nav-arrow.left {
  left: 0;
}

.nav-arrow.right {
  right: 0;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 30px;
  background: #b1c9dd;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.dot.active {
  width: 32px;
  background: #143549;
  box-shadow: 0 0 0 3px rgba(20, 53, 73, 0.2);
}

.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-row:hover a {
  text-decoration: underline;
  cursor: pointer;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content{max-width:1400px;margin:auto;padding:30px 60px 50px;border-top:1px solid rgba(255,255,255,0.2);display:flex;justify-content:space-between;align-items:center;font-size:14px;color:rgba(255,255,255,0.85);}
.bottom-content p a{color:#fff;text-decoration:none;transition:opacity 0.25s;}
.bottom-content p a:hover{opacity:0.8;text-decoration:underline;}
.legal-links{display:flex;gap:30px;}
.legal-links a{color:rgba(255,255,255,0.85);text-decoration:none;font-size:14px;}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5a4;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #0ea5a4;
  color: #ffffff;
  border-color: #0ea5a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 2500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-backdrop.visible {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

.star-btn {
  position: relative;
  padding: 12px 35px;
  background: #248d88;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  border: 3px solid #268a85;
  border-radius: 8px;
  box-shadow: 0 0 0 #fec1958c;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-btn.full {
  width: 100%;
}

.star-1, .star-2, .star-3, .star-4, .star-5, .star-6 {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-1 {
  top: 20%;
  left: 20%;
  width: 25px;
}

.star-2 {
  top: 45%;
  left: 45%;
  width: 15px;
}

.star-3 {
  top: 40%;
  left: 40%;
  width: 5px;
}

.star-4 {
  top: 20%;
  left: 40%;
  width: 8px;
}

.star-5 {
  top: 25%;
  left: 45%;
  width: 15px;
}

.star-6 {
  top: 5%;
  left: 50%;
  width: 5px;
}

.star-btn:hover {
  background: transparent;
  color: #155552;
  box-shadow: 0 0 25px #fec1958c;
}

.star-btn:hover .star-1 {
  top: -80%;
  left: -30%;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-btn:hover .star-2 {
  top: -25%;
  left: 10%;
  filter: drop-shadow(0 0 10px #766e33);
  z-index: 2;
}

.star-btn:hover .star-3 {
  top: 55%;
  left: 25%;
  filter: drop-shadow(0 0 10px #373312);
  z-index: 2;
}

.star-btn:hover .star-4 {
  top: 30%;
  left: 80%;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-btn:hover .star-5 {
  top: 25%;
  left: 115%;
  filter: drop-shadow(0 0 10px #3a382b);
  z-index: 2;
}

.star-btn:hover .star-6 {
  top: 5%;
  left: 60%;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #adf0ed;
}

section {
  padding: 100px 80px;
}

.download-btn-wrapper .label:has(.input:checked) {
  width: 57px;
  animation: installed 0.4s ease 3.5s forwards;
}

.download-btn-wrapper .label:has(.input:checked)::before {
  animation: rotate 3s ease-in-out 0.4s forwards;
}

.download-btn-wrapper .label .input:checked+.circle {
  rotate: 180deg;
  animation: pulse 1s forwards, circleDelete 0.2s ease 3.5s forwards;
}

.download-btn-wrapper .label .input:checked+.circle::before {
  animation: installing 3s ease-in-out forwards;
}

.download-btn-wrapper .label .input:checked+.circle .icon {
  opacity: 0;
  visibility: hidden;
}

.download-btn-wrapper .label .input:checked~.circle .square {
  opacity: 1;
  visibility: visible;
}

.download-btn-wrapper .label .input:checked~.title {
  opacity: 0;
  visibility: hidden;
}

.download-btn-wrapper .label .input:checked~.title:last-child {
  animation: showInstalledMessage 0.4s ease 3.5s forwards;
}

@keyframes pulse {
  0% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    scale: 1;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }

  100% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes installing {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-90deg) translate(27px) rotate(0);
    opacity: 1;
    visibility: visible;
  }

  99% {
    transform: rotate(270deg) translate(27px) rotate(270deg);
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes installed {
  100% {
    width: 150px;
    border-color: rgb(35, 174, 35);
  }
}

@keyframes circleDelete {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes showInstalledMessage {
  100% {
    opacity: 1;
    visibility: visible;
    right: 56px;
    color: #111827;
  }
}

@media (max-width: 1024px) {
  .hero-grid, .journey-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero {
    padding-top: 50px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .journey-form {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 20px; height: 64px; }
  .logo img { height: 48px; }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100vw; 
    height: 100vh;
    background: #ffffff; 
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px; 
    z-index: 3000;
    gap: 30px; 
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all; 
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  }

  .nav-links.open { right: 0; }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem; 
    font-weight: 800; 
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a; 
    background: transparent !important;
    text-transform: uppercase; 
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }
  
  .nav-links a:hover,
  .nav-links a.active { color: #0ea5a4; }
  
  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after { display: none !important; }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    color: #ffffff !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }
  
  .apply-btn-mobile:active { transform: scale(0.97); }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile { 
    opacity: 1;
    transform: none;
  }
  
  .nav-links.open a:nth-child(1) { animation-delay: 0.15s; }
  .nav-links.open a:nth-child(2) { animation-delay: 0.22s; }
  .nav-links.open a:nth-child(3) { animation-delay: 0.29s; }
  .nav-links.open a:nth-child(4) { animation-delay: 0.36s; }
  .nav-links.open a:nth-child(5) { animation-delay: 0.43s; }
  .nav-links.open .apply-btn-mobile { animation-delay: 0.55s; }

  @keyframes drawerItemReveal { 
    to { 
      opacity: 1; 
      transform: translate(0, 0); 
    } 
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }
  
  .hamburger span {
    display: block; 
    width: 24px; 
    height: 2px;
    background: #1e293b; 
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }
  
  .hamburger span:nth-child(1) { transform: translateY(-7px); }
  .hamburger span:nth-child(2) { transform: translateY(0); }
  .hamburger span:nth-child(3) { transform: translateY(7px); }

  .hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); background: #0ea5a4; }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scale(0.2); }
  .hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); background: #0ea5a4; }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2500;
  }
  .nav-backdrop.visible { display: block; }

  .apply-btn { display: none !important; }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  @media (max-width: 1200px) {
    .bottom-content{padding:18px 40px 44px;}
  }

  @media (max-width: 768px) {
    .bottom-content {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      padding: 20px 24px 40px;
    }
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    padding: 40px 0 4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
  }

  .hero-buttons .primary-btn, .hero-buttons .outline-btn {
    width: 100%;
    text-align: center;
  }

  .stat-card {
    position: static;
    margin: 1.5rem auto 0;
    text-align: center;
    width: 100%;
    max-width: 260px;
    animation: pendulum 2.8s infinite ease-in-out;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {

  .footer-container {
    grid-template-columns: 1fr 1fr; /* 2 columns */
  }

  .branding {
    grid-column: span 2; /* full width le lega */
  }

  .branding p {
    max-width: 100%;
  }

}
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  @media (max-width: 480px) {
    .bottom-content {
      padding: 14px 20px 36px;
    }
    .legal-links {
      gap: 16px;
    }
    .legal-links a {
      font-size: 13px;
    }
  }
}

@media (max-width: 640px) {
  .hero .stat-card {
    display: none !important;
  }
}

@media (max-width: 800px) {
  .testimonial-left {
    padding: 1.8rem 1.5rem 1.5rem 1.8rem;
  }

  .testimonial-left h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }

  .author {
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  .author img {
    width: 50px;
    height: 50px;
  }

  .author h4 {
    font-size: 1.1rem;
  }

  .author p {
    font-size: 0.85rem;
  }

  .testimonial-right {
    padding: 1rem 0.8rem;
  }

  .success-box {
    padding: 1rem 0.8rem;
  }

  .success-box h1 {
    font-size: 1.6rem;
  }

  .success-box h2 {
    font-size: 2rem;
  }

  .success-box p {
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-left {
    padding: 1.5rem 1.2rem 1.2rem 1.5rem;
  }

  .testimonial-left h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .quote-icon {
    font-size: 5rem;
    top: 0;
    left: 0.5rem;
  }

  .author img {
    width: 42px;
    height: 42px;
  }

  .author h4 {
    font-size: 1rem;
  }

  .author p {
    font-size: 0.8rem;
  }

  .success-box h1 {
    font-size: 1.2rem;
  }

  .success-box h2 {
    font-size: 1.5rem;
  }

  .success-box p {
    font-size: 0.7rem;
  }
}



.apply-btn-mobile{display:none;}