:root {

  --color-white: #ffffff;
  --color-black: #111111;
  --color-gray-100: #f8f9fa;
  --color-gray-300: #dee2e6;
  --color-gray-600: #6c757d;


  --color-primary: #111111;
  --color-secondary: #444444;

  --color-cream-light: #FFF2D8;
  --color-cream: #EAD7BB;
  --color-brown-light: #BCA37F;
  --color-brown-dark: #113946;


  /* --color-white: #ffffff;
    --color-black: #111111;
    --color-gray-100: #f8f9fa;
    --color-gray-300: #dee2e6;
    --color-gray-600: #6c757d;

    
    --color-primary: #740707;
    --color-secondary: #2d9e1e; */


  --font-family-base: "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  --font-size-base: 14px;
  --font-size-brand: 20px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;


  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 15px;
  --spacing-lg: 30px;


  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 30px;
  --radius-circle: 50%;


  --shadow-soft: 0 10px 30px rgba(43, 42, 42, 0.06);
  --shadow-sticky: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.3s ease;
}






body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}


.main-header {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
  z-index: 999;
}

.navbar {
  /* padding: var(--spacing-md) 0; */
}


.navbar-brand {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-brand);
  color: var(--color-black);
  gap: var(--spacing-sm);
  /* font-size: 80px; */
  padding: 0px 5px;
}


/* .logo-circle {
  width: 60px;
  height: 60px;
  background: #3286a1;
  color: var(--color-white);
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  font-weight: var(--font-weight-bold);
} */

.brand-text {
  color: #292929;
}

.navbar-nav {
  font-size: 18px;
}


.nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--color-secondary);
  padding: var(--spacing-sm) var(--spacing-md) !important;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #3286a1;
}

.navbar-logo {
  height: 70px;
  /* logo height control */
  width: auto;
  /* aspect ratio safe */
  object-fit: cover;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 60px;
    font-weight: 600;
    padding: auto;
  }
}



.search-input {
  width: 180px;
  border-radius: var(--radius-pill);
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-base);
  border: 1px solid var(--color-gray-300);
}


.btn-dark {
  border-radius: var(--radius-pill);
  font-size: var(--font-size-base);
  color: #fff;
}

.btn-dark:hover {
  background-color: #3286a1;
  border: 1px solid #3286a1;
  color: #fff;
}


.header-scrolled {
  padding: var(--spacing-xs) 0;
  box-shadow: var(--shadow-sticky);
}

.nav-btn {
  padding: 6px 8px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  /* box-shadow: 3px 3px 10px rgba(68, 65, 65, 0.6); */
  font-weight: 600;
  background: #242425;
  color: #ffffff;
}


.nav-btn:hover {
  background: #3286a1;
  color: #ffffff;
}

/*=====================================================
 banner section 
=======================================================*/

.hero-banner {
  padding: 120px 0 80px;
  background: var(--color-gray-100);
  position: relative;
  overflow: hidden;
}


.hero-badge {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}


.hero-title {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  /* color: var(--color-black); */
  color: #2c7888;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}


.hero-text {
  font-size: 16px;
  color: var(--color-secondary);
  max-width: 480px;
  margin-bottom: var(--spacing-lg);
}

.hero-btn {
  background-color: #3286a1;
}

.btn-outline-dark {
  border-color: #3286a1;
  /* color: #3286a1; */
  color: #000;
}

.btn-outline-dark:hover {
  border-color: #3286a1;
  color: white;
  background-color: #3286a1;
}


.hero-actions {
  display: flex;
  gap: var(--spacing-md);
}


.hero-image-wrap {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0px;
  box-shadow: var(--shadow-soft);
  display: inline-block;
}

.hero-image {
  max-width: 100%;
  height: auto;
}


.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--color-gray-300);
  border-radius: var(--radius-md);
  z-index: -1;
}


@media (max-width: 991px) {
  .hero-banner {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrap {
    margin-top: 40px;
  }
}

/*=====================================================
 about section 
=======================================================*/

.about-section {
  padding: 80px 0;
  background: var(--color-white);
}


.section-badge {
  display: inline-block;
  /* background: var(--color-gray-100); */
  background: #c6eefc;
  color: var(--color-black);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
}


.about-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  /* color: var(--color-black); */
  color: #3286a1;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}


.about-text {
  font-size: 15px;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  max-width: 520px;
}


.about-image-wrap {
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.about-image {
  width: 100%;
  border-radius: var(--radius-md);
}


.about-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.about-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  /* color: var(--color-black); */
  color: #2b6c81;
  font-weight: var(--font-weight-bold);
}

.our-mission-vision {
  color: #3286a1;
}


@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }

  .about-title {
    font-size: 30px;
  }

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-features {
    display: inline-block;
    text-align: left;
  }

  .about-image-wrap {
    margin-bottom: 40px;
  }
}


/*=====================================================
 happy section 
=======================================================*/

.happy-customers {
  padding: calc(var(--spacing-lg) * 2) var(--spacing-md);
  background: #fff;
  font-family: var(--font-family-base);
}

.section-title {
  text-align: center;
  font-size: var(--font-size-brand);
  font-weight: var(--font-weight-bold);
  /* color: var(--color-black); */
  color: #3286a1;
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--font-size-base);
}

/* Grid */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

/* Card */
.customer-card {
  /* background: var(--color-white); */
  background: radial-gradient(circle, rgba(50, 134, 161, 1) 50%, rgba(250, 249, 222, 1) 100%);
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.customer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sticky);
}

.card-1 {

  background: linear-gradient(333deg, rgba(50, 134, 161, 1) 23%, rgba(250, 249, 222, 1) 100%);
}

.card-2 {

  background: linear-gradient(0deg, rgba(50, 134, 161, 1) 23%, rgba(250, 249, 222, 1) 100%);
}

.card-3 {
  background: linear-gradient(24deg, rgba(50, 134, 161, 1) 23%, rgba(250, 249, 222, 1) 100%);
}

/* Avatar */
.avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--radius-circle);
  /* background: #3286A1; */
  background: radial-gradient(circle, rgba(50, 134, 161, 1) 50%, rgba(250, 249, 222, 1) 100%);
  color: var(--color-white);
  font-size: var(--font-size-brand);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.customer-card h4 {
  font-size: calc(var(--font-size-base) + 2px);
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  margin-bottom: var(--spacing-xs);
}

.role {
  font-size: var(--font-size-base);
  color: #fff;
  margin-bottom: var(--spacing-sm);
}

.review {
  font-size: var(--font-size-base);
  color: #1a1a1a;
  line-height: 1.6;
}


/*=====================================================
 product section 
=======================================================*/

.product-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

/* Title */
.product-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  /* color: var(--color-black); */
  color: #3286a1;
}

.product-text {
  font-size: 15px;
  color: var(--color-secondary);
  max-width: 600px;
}

/* Tabs */
.product-tabs {
  gap: var(--spacing-sm);
}

.product-tabs .nav-link {
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  background: var(--color-white);
  color: var(--color-black);
  transition: var(--transition-fast);
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
  height: 100%;
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
}

.product-card h5 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}

.product-card p {
  font-size: 14px;
  color: var(--color-secondary);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sticky);
}

/* Responsive */
@media (max-width: 991px) {
  .product-title {
    font-size: 30px;
  }
}



/*=====================================================
 contact section 
=======================================================*/

.contact-section {
  padding: 80px 0;

  background: rgb(241, 241, 241);
}

/* Titles */
.contact-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #3286a1;
}

.contact-text {
  font-size: 15px;
  /* color: var(--color-secondary); */
  color: #1a1a1a;
  max-width: 600px;
}

/* Contact Info Box */
.contact-info-box {
  background: #fff;
  color: #1a1a1a;
  padding: 40px;
  border-radius: var(--radius-md);
  height: 100%;
}

.contact-info-box h4 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: #3286a1;
}

/* Info List */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: 14px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
}

/* Note */
.contact-note {
  font-size: 13px;
  color: #1a1a1a;
  margin-top: var(--spacing-lg);
}

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.contact-form-wrap .form-control {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid var(--color-gray-300);
}

.contact-form-wrap .form-control:focus {
  border-color: var(--color-black);
  box-shadow: none;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-title {
    font-size: 30px;
  }

  .contact-info-box,
  .contact-form-wrap {
    padding: 30px 20px;
  }

  .map-wrap iframe {
    height: 300px;
  }
}



/*=====================================================
 F&Q section 
=======================================================*/


.faq-section {
  padding: 80px 0;
  background: var(--color-white);
}

/* Title */
.faq-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: #3286a1;
}

.faq-text {
  font-size: 15px;
  color: var(--color-secondary);
  max-width: 600px;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  background: var(--color-gray-100);
  padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #3286a1;
  color: var(--color-white);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--color-secondary);
  background: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
  .faq-title {
    font-size: 30px;
  }
}

/*=====================================================
 why choose section 
=======================================================*/

.why-choose-us {
  padding: calc(var(--spacing-lg) * 2) var(--spacing-md);
  background: rgb(241, 251, 255);
  font-family: var(--font-family-base);
}

/* Reuse existing section styles */
.why-choose-us .section-title {
  text-align: center;
  font-size: var(--font-size-brand);
  font-weight: var(--font-weight-bold);
  color: #3286a1;
  margin-bottom: var(--spacing-sm);
}

.why-choose-us .section-subtitle {
  text-align: center;
  color: #1a1a1a;
  max-width: 620px;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--font-size-base);
}

/* Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
}

/* Card */
.choose-card {
  background: #113946;
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sticky);
  background-color: #3286a1;
}

/* Icon */
.choose-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--radius-circle);
  background: #fff;
  color: black;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Text */
.choose-card h4 {
  font-size: calc(var(--font-size-base) + 2px);
  font-weight: var(--font-weight-medium);
  color: #fff;
  margin-bottom: var(--spacing-xs);
}

.choose-card:hover h4 {
  color: #1a1a1a;
}

.choose-card p {
  font-size: var(--font-size-base);
  color: #c5c0c0;
  line-height: 1.6;
}

.choose-card:hover p {
  color: black;
}


/*=====================================================
 footer section 
=======================================================*/


.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 70px 0 30px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-text {
  color: var(--color-gray-300);
  font-size: 14px;
  max-width: 320px;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--color-gray-300);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 14px;
  color: var(--color-gray-300);
  margin-bottom: var(--spacing-sm);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-gray-300);
  margin: 0;
}


.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

@media(max-width: 991px) {
  .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2E2E2E;
  color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: #ffffff;
  color: #2E2E2E;
  transform: translateY(-3px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.footer-contact li {
  display: flex;
  /* gap: 10px; */
  margin-bottom: 10px;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li i {
  color: #2563EB;
  margin-top: 4px;
  min-width: 18px;
}

.brand-text-footer {
  color: #3286a1;
  font-size: 20px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
  .site-footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-text {
    margin-left: auto;
    margin-right: auto;
  }

}



/* */
.button {
  --primary: #ff5569;
  --neutral-1: #f7f8f7;
  --neutral-2: #e7e7e7;
  --radius: 14px;

  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}

.button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}

.button:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 10px 3px -3px rgba(0, 0, 0, 0.2);
}

.button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  /* border: 2.5px solid transparent; */
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)) border-box;
  z-index: 0;
  transition: all 0.4s ease;
}

.button:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}

.button::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}

.state p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state .icon svg {
  overflow: visible;
}

/* Outline */
.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}

.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 180deg,
      transparent 60%,
      white 80%,
      transparent 100%);
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.button:hover .outline {
  opacity: 1;
}

.button:hover .outline::before {
  animation-play-state: running;
}

/* Letters */
.state p span {
  display: block;
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}

.button:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

.button:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}

@keyframes wave {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--primary);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--primary);
    filter: blur(5px);
  }

  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes disapear {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--primary);
    filter: blur(5px);
  }
}

/* Plane */
.state--default .icon svg {
  animation: land 0.6s ease forwards;
}

.button:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}

.button:focus .state--default svg {
  animation: takeOff 0.8s linear forwards;
}

.button:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}

@keyframes takeOff {
  0% {
    opacity: 1;
  }

  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }

  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}

@keyframes land {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }

  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* Contrail */
.state--default .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
}

.button:focus .state--default .icon:before {
  animation: contrail 0.8s linear forwards;
}

@keyframes contrail {
  0% {
    width: 0;
    opacity: 1;
  }

  8% {
    width: 15px;
  }

  60% {
    opacity: 0.7;
    width: 80px;
  }

  100% {
    opacity: 0;
    width: 160px;
  }
}

/* States */
.state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.state--default span:nth-child(4) {
  margin-right: 5px;
}

.state--sent {
  display: none;
}

.state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

.button:focus .state--default {
  position: absolute;
}

.button:focus .state--sent {
  display: flex;
}

.button:focus .state--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}

.button:focus .state--sent .icon svg {
  opacity: 0;
  animation: appear 1.2s ease forwards 0.8s;
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--primary);
    filter: blur(4px);
  }

  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 180px;
  /* footer ke liye perfect size */
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    max-width: 150px;
  }
}