/* FONT */
body {
    font-family: 'poppins', sans-serif;
}

/* BRAND */
:root {
    --neo-blue: #262B63;
    --neo-white: #ffffff;
}

/* NAVBAR */
.neo-navbar {
    background-color: var(--neo-blue);
    padding: 12px 0;
    z-index: 1000;
}

.neo-logo{
    height: clamp(55px, 5vw, 90px);  
    width: auto;
    object-fit: contain;
}


.neo-desktop-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.neo-desktop-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.neo-desktop-menu a.active {
    color: #cfd3ff;
    border-bottom: 2px solid white;
}

.neo-btn {
    border: 1px solid white;
    border-radius: 20px;
    padding: 6px 18px;
}

.neo-btn:hover {
    background: white;
    color: var(--neo-blue) !important;
}

/* HERO */
/* .neo-hero {
    background: linear-gradient(rgba(38,43,99,0.85), rgba(38,43,99,0.85)),
                url('/images/crane-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 60px 0;
    text-align: center;
} */

/* .neo-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.neo-hero p {
    font-size: 18px;
    max-width: 750px;
    margin: auto;
} */

/* SECTIONS */
.neo-section {
    padding: 80px 0;
}

/* ABOUT */
.neo-about-card {
    background: #f7f8fc;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.neo-about-card h5 {
    color: var(--neo-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

/* PRODUCTS */
.neo-card {
    background: white;
    border-radius: 10px;
    padding: 45px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.neo-card i {
    font-size: 40px;
    color: var(--neo-blue);
    margin-bottom: 20px;
}

.neo-card h6 {
    font-weight: 600;
}

/* SERVICES */
.neo-service-card {
    background: linear-gradient(145deg, #1f2458, #2f367a);
    color: white;
    padding: 45px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.neo-service-card i {
    font-size: 42px;
    margin-bottom: 25px;
    color: #cfd3ff;
}

.neo-service-card h6 {
    font-weight: 600;
}

/* SAME SIZE */
.neo-card,
.neo-service-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* HOVER LIFT */
.neo-card:hover,
.neo-service-card:hover {
    transform: translateY(-8px);
}

/* TOP LINE */
.neo-card,
.neo-service-card {
    position: relative;
    overflow: hidden;
}

.neo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #262B63;
    transition: 0.4s;
}

.neo-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #8ea0ff;
    transition: 0.4s;
}

.neo-card:hover::before,
.neo-service-card:hover::before {
    width: 100%;
}

/* CLIENT STRIP */
.neo-client-strip {
    overflow: hidden;
    width: 100%;
    position: relative;
    animation: fadeIn 1.5s ease forwards;
}

.neo-client-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: neoScroll 45s linear infinite;
}

.neo-client-strip:hover .neo-client-track {
    animation-play-state: paused;
}

.neo-client-track img {
    height: 110px;
    transition: all 0.35s ease;
    cursor: pointer;
    filter: brightness(0.95);
}

.neo-client-track img:hover {
    transform: scale(1.18) translateY(-6px);
    filter: brightness(1.05);
    box-shadow: 0 25px 45px rgba(38,43,99,0.35);
}

/* FADE IN */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOVE */
@keyframes neoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* FADE EDGES */
.neo-client-strip::before,
.neo-client-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.neo-client-strip::before {
    left: 0;
    background: linear-gradient(to right, #f7f8fc, transparent);
}

.neo-client-strip::after {
    right: 0;
    background: linear-gradient(to left, #f7f8fc, transparent);
}

/* SWEEP */
.neo-client-track a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    padding: 10px;
}

.neo-client-track a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(150,170,255,0.35),
        rgba(38,43,99,0.45),
        transparent 75%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.neo-client-track a:hover::before {
    left: 150%;
}

.neo-client-track img {
    position: relative;
    z-index: 2;
}

/* MOBILE MENU */
.neo-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}

.neo-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--neo-blue);
    padding: 30px;
    transition: 0.4s;
    z-index: 9999;
}

.neo-sidebar a {
    display: block;
    color: white;
    margin: 25px 0;
    font-size: 18px;
    text-decoration: none;
}

/* SCROLL FIX */
.neo-hero,
.neo-section {
    scroll-margin-top: 100px;
}

html {
    scroll-behavior: smooth;
}

/* FOOTER */
.neo-footer {
    background: var(--neo-blue);
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

/* CONTACT SECTION */
.neo-contact-section {
    background: linear-gradient(135deg, #0f1535, #262B63);
    padding: 100px 0;
    color: white;
}

.neo-contact-title {
    color: #8ea0ff;
    font-weight: 700;
    margin-bottom: 30px;
}

.neo-contact-form {
    background: rgba(255,255,255,0.06);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.neo-contact-form label {
    color: #8ea0ff;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.neo-contact-form input,
.neo-contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px;
    border-radius: 10px;
    color: white;
    outline: none;
}

.neo-contact-form input:focus,
.neo-contact-form textarea:focus {
    border-color: #ffcc00;
}

.neo-contact-form button {
    width: 100%;
    background: #262B63;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.neo-contact-form button:hover {
    background: #3f47b0;
}

/* Right panel */
.neo-contact-info {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.neo-contact-info h5 {
    color: #8ea0ff;
    margin-bottom: 10px;
}

.neo-contact-info p {
    color: #dcdfff;
    line-height: 1.8;
}

.neo-contact-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 25px 0;
}

.neo-contact-info i {
    color: #8ea0ff;
    margin-right: 8px;
}

.neo-footer-main {
    background: linear-gradient(135deg, #0f1535, #262B63);
    color: #dcdfff;
    padding: 80px 0 30px;
}

.neo-footer-main img {
    filter: brightness(1.2);
}

.neo-footer-main p {
    font-size: 15px;
    line-height: 1.7;
}

.neo-footer-address {
    margin-top: 15px;
    color: #ffcc00;
}

.neo-footer-main h5 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-weight: 600;
}

.neo-footer-links {
    list-style: none;
    padding: 0;
}

.neo-footer-links li {
    margin-bottom: 10px;
}

.neo-footer-links li a {
    color: #dcdfff;
    text-decoration: none;
    transition: 0.3s;
}

.neo-footer-links li a:hover {
    color: #ffcc00;
    padding-left: 6px;
}

.neo-footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    color: #dcdfff;
    background: linear-gradient(135deg, #0f1535, #262B63);
}

.neo-footer-logo {
    height: 65px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.15);
}
/* .neo-trust-bar {
    background: #262B63;
    padding: 18px 0;
    text-align: center;
}


.neo-trust-bar p {
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    max-width: 1000px;
    margin: auto;
    line-height: 1.6;
} */
/* =========
   MOBILE
============ */
/* @media (max-width: 1024px) { */

  /* Hero */
  /* .neo-hero {
    padding: 70px 20px 50px;
    min-height: auto;
  }

  .neo-hero h1 {
    font-size: 28px;
  }

  .neo-hero p {
    font-size: 14px;
  }

  /* About cards */
  /* .neo-about-card {
    padding: 24px;
    text-align: center;
  } */

  /* Products & Services cards */
  /* .neo-card,
  .neo-service-card {
    min-height: 140px;
    padding: 20px 14px;
    border-radius: 14px;
  }

  .neo-card i,
  .neo-service-card i {
    font-size: 26px;
    margin-bottom: 10px;
  } */

  /* .neo-card h6,
  .neo-service-card h6 {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  } */

  /* Client logos — movement only */
  /* .neo-client-track img,
  .neo-client-track img:hover {
    transform: none;
    filter: none;
    box-shadow: none;
  }

  .neo-client-track a::before {
    display: none;
  } */

/* } */ */

/* ADC CLIENT LOGOS */

.neo-client-strip {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.neo-client-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: neoClientsScroll 40s linear infinite;
}

/* Logo size */
.neo-client-track img {
    height: 90px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

/* REMOVE all hover, glow, zoom, filters */
.neo-client-track img,
.neo-client-track img:hover,
.neo-client-track a::before {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    transition: none !important;
    background: none !important;
}

/* No pause on hover */
.neo-client-strip:hover .neo-client-track {
    animation-play-state: running !important;
}

/* Infinite smooth movement */
@keyframes neoClientsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Mobile tuning */
/* @media (max-width: 1024px) {
    .neo-client-track {
        gap: 40px;
        animation-duration: 30s;
    }

    .neo-client-track img {
        height: 65px;
    }
} */
/*  ABOUT CARDS */

.neo-about-card {
    position: relative;
    overflow: hidden;
}

/* Animated light sweep */
.neo-about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(38,43,99,0.12),
        rgba(150,170,255,0.25),
        transparent 75%
    );
    animation: aboutSweep 4s ease-in-out infinite;
    z-index: 1;
}

/* Keep text above the animation */
.neo-about-card * {
    position: relative;
    z-index: 2;
}

/* Animation */
@keyframes aboutSweep {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}
/* CONTACT LAYOUT ALIGNMENT FIX */
.neo-contact-section .row {
    align-items: stretch !important;
}

.neo-contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* push content to top */
}

/* PREMIUM BLUE ACCENT (replace yellow) */
.neo-contact-title,
.neo-contact-form label,
.neo-contact-info h5,
.neo-contact-info i,
.neo-footer-main h5,
.neo-footer-address {
    color: #8EA0FF !important;
}

.neo-contact-form input:focus,
.neo-contact-form textarea:focus {
    border-color: #8EA0FF !important;
}
/* ================================
   CONTACT SECTION – HARD ALIGN FIX
================================ */

.neo-contact-section .row {
    align-items: stretch !important;
}

.neo-contact-section .col-lg-7,
.neo-contact-section .col-lg-5 {
    display: flex;
}

.neo-contact-form,
.neo-contact-info {
    width: 100%;
    height: 100%;
}
/* ===============================
   FLOATING SCROLL TO TOP BUTTON
================================ */

.neo-scroll-btn {
    position: fixed;
    bottom: 25px;
    right: 22px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1f2a77, #4456d8);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(68,86,216,0.45);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 9999;
}

/* Show button */
.neo-scroll-btn.show {
    opacity: 1;
    pointer-events: auto;
}

/* Hover effect */
.neo-scroll-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(68,86,216,0.7);
}
/* ================================
   SERVICES – UNIFORM CARD HEIGHT
================================ */

.neo-service-card {
    height: 200px;                 /* 🔒 force all cards same height */
    display: flex;
    flex-direction: column;
    justify-content: center;       /* vertical centering */
    align-items: center;
    text-align: center;
    padding: 24px 18px;
}

/* Icon */
.neo-service-card i {
    font-size: 38px;
    margin-bottom: 8px;            /* same spacing as your screenshot */
    line-height: 1;
}

/* Title */
.neo-service-card h6 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    max-width: 90%;
    white-space: normal;           /* allow wrapping */
}

/* Prevent tall cards from long titles */
.neo-service-card h6 br {
    display: none;
}
/* =========================================
   SERVICES → MATCH PRODUCTS SPACING
========================================= */

.neo-service-card {
    height: 200px;                 /* same locked height */
    /* display: grid; */
    /* grid-template-rows: auto auto;  */
    justify-content: center;
    align-content: center;
    row-gap: 14px;                 /* EXACT spacing like product cards */
    text-align: center;
    padding: 24px;
}

/* Icon */
.neo-service-card i {
    font-size: 38px;
    margin: 0 !important;          /* remove bootstrap margins */
    line-height: 1;
}

/* Title */
.neo-service-card h6 {
    margin: 0 !important;
    font-size: 15px;
    line-height: 1.25;
    max-width: 90%;
    justify-self: center;
}

/* Kill all accidental spacing */
.neo-service-card * {
    padding: 0;
}
/* CONTACT HEADINGS – White Bold */
.neo-contact-title,
.neo-contact-info h5,
.neo-contact-form label {
    color: #ffffff !important;
    font-weight: 700 !important;
}
.neo-contact-info i {
    color: #ffffff !important;
}
/* FOOTER HEADINGS – White */
.neo-footer-main h5,
.neo-footer-main h4,
.neo-footer-main h3 {
    color: #ffffff !important;
    font-weight: 700;
}
.neo-footer-main .neo-footer-links a,
.neo-footer-main .neo-footer-links,
.neo-footer-main .neo-footer-main-title {
    color: #ffffff !important;
}
/* ====================================
   TABLET = MOBILE LAYOUT
==================================== */
/* @media (max-width: 1024px) { */

  /* Products & Services grid */
  /* #products .row,
  #services .row {
      display: flex;
      flex-wrap: wrap;
  }

  #products .col-6,
  #services .col-6 {
      width: 50% !important;
      max-width: 50% !important;
  } */

  /* About cards stack */
  /* #about .row {
      flex-direction: column;
  } */

  /* Reduce card height for tablet */
  /* .neo-card,
  .neo-service-card {
      min-height: 140px;
      padding: 20px 16px;
  }

  .neo-card i,
  .neo-service-card i {
      font-size: 28px;
      margin-bottom: 10px;
  }

  .neo-card h6,
  .neo-service-card h6 {
      font-size: 13px;
      text-align: center;
  }

} */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* 
.neo-hero {
    min-height: auto !important;
    height: auto !important;
} */
/* =========================================
   TABLET + MOBILE → SAME LAYOUT
========================================= */
@media (max-width: 1024px) {

  /* ABOUT → stacked */
  #about .row {
    flex-direction: column !important;
  }
  #about .col-md-4 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* PRODUCTS & SERVICES → 2 per row */
  #products .col-md-3,
  #services .col-md-3 {
    width: 50% !important;
    max-width: 50% !important;
  }

  /* Card sizing */
  .neo-card,
  .neo-service-card {
    min-height: 150px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .neo-card i,
  .neo-service-card i {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .neo-card h6,
  .neo-service-card h6 {
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
  }

  /* Contact layout */
  .neo-contact-form,
  .neo-contact-info {
    padding: 28px;
  }

  /* Footer */
  .neo-footer-main {
    padding: 60px 0 30px;
  }

  /* Prevent page cut / zoom bugs */
  html, body {
    height: auto !important;
    min-height: 100% !important;
    overflow-y: auto !important;
  }

  section {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
}
.neo-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}
.neo-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    position: absolute;
    top: 18px;
    right: 18px;
    cursor: pointer;
}
/* @media (max-width: 768px) {
    .neo-hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .neo-hero p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .neo-trust-bar p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
} */
/* .neo-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;

    background-image: url("/images/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    color: #fff;
    padding: 100px 20px;
} */

/* Dark overlay so text looks clear */
/* .neo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
} */

/* Keep text above overlay */
/* .neo-hero .container {
    position: relative;
    z-index: 2;
} */
/* ✅ ONE WRAPPER */
/* .neo-hero-wrap {
    margin: 0;
    padding: 0;
} */

.neo-hero {
    height: 100vh;   /* ✅ FULL SCREEN */
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-image: url("../images/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    margin: 0;
    padding-top: 80px;
    color: white;
}

.neo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.neo-hero-content {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.neo-trust-bar {
    margin: 0;
    padding: 15px 0;
    background: #262B63;
    color: white;
}

.neo-trust-bar p {
    margin: 0;
}
.neo-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.2;
}

.neo-hero p {
     font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .neo-hero h1 {
        font-size: 32px;
    }

    .neo-hero p {
        font-size: 14px;
        padding: 0 10px;
    }
}/* =========================================
   PRODUCTS (PNG ICONS) – FINAL PERFECT
========================================= */

#products .neo-card{
    height: 200px;                 /* same height as service cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;                     /* gap between icon and text */
    padding: 24px;
    text-align: center;
}

/* Bigger icon */
#products .neo-card img{
    width: 80px;                   /* ✅ increase size */
    height: 80px;
    object-fit: contain;
}

/* Title */
#products .neo-card h6{
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
}
/* ✅ SERVICE PNG ICONS (match Bootstrap white icons) */
.neo-service-icon-img{
    width: 80px;
    height: 80px;
    object-fit: contain;

    /* ✅ Convert dark PNG into white */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.neo-service-card img.neo-service-icon-img{
     margin: 0 !important;
}

/* ✅ SERVICE ICON ALIGNMENT FIX (same gap for PNG + Bootstrap) */
.neo-service-card{
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;          /* ✅ uniform gap */
    text-align: center;
}

/* Fixed icon area for both i and img */
.neo-service-icon-wrap{
    height: 45px;       /* ✅ same icon block height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bootstrap icons */
.neo-service-card i{
    font-size: 38px;
    line-height: 1;
    margin: 0 !important;
}

/* PNG icons */
.neo-service-icon-img{
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin: 0 !important;

    /* make PNG white like bootstrap */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

#app-content { display: none; opacity: 0; transition: opacity 0.4s ease; }

#page-loader {
    position: fixed; inset: 0; background: #262B63;
    display: flex; justify-content: center; align-items: center;
    z-index: 999999999; opacity: 1; transition: opacity 0.5s ease;
}
#page-loader.hide-loader { opacity: 0; pointer-events: none; }
.neo-spinner {
    width: 65px; height: 65px; border: 6px solid rgba(255, 255, 255, 0.25);
    border-top: 6px solid #8EA0FF; border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Custom Thank You Styling */
.thankyou-wrapper {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.thankyou-card i {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}
.thankyou-card h1 {
    font-weight: 700;
    color: #262B63;
    margin-bottom: 15px;
}
.btn-home {
    background: #262B63;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    transition: 0.3s;
}
.btn-home:hover {
    background: #8EA0FF;
    color: #262B63;
}