@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@supports (background-image: url("/images/banner.webp")) {
  .banner {
    background-image: url("/images/banner.webp");
  }
}


* {margin:0px;padding:0px;box-sizing:border-box;}
body {font-family: Arial, sans-serif;color:#2B2B2B;background:#F3FAFD;overflow-x:hidden;}

:root {
    --primary--hex:#2E6B3E;
    --secondary--hex:#2C7AA6;
    --bg--hex:#FFFFFF;
    --lightsky--blue:#F3FAFD;
    --text-primary:#2B2B2B;

}

button {
  cursor: pointer;
}

a {
  text-decoration:none;
  cursor:pointer;
}

html {
  scroll-behavior:smooth;
  background-attachment: fixed;

}

section {
  scroll-margin-top:70px;
}
.cta-btn {
  background:var(--primary--hex);color:var(--lightsky--blue);padding:20px 30px;
  border-radius:5px;border:none;cursor:pointer;transition:0.3s;
}
.cta-btn:hover {transform:translateY(-5px);}


/* ================= HEADER ================= */
.header{
  background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  box-shadow:0 10px 40px rgba(0,0,0,.2);
  position: sticky;
  top:0px;
  z-index:999;
  height:100px;
  
}

.header-inner{
  width:100%;
  display:flex;
  padding:0px 40px;
  align-items:center;
  justify-content:space-between;
  align-items: center;
}

/* LOGO */
.header img{
  width:150px;
  height:auto;

}
.logo span{color:#38bdf8}

/* RIGHT SIDE */
.right-box{
  display:flex;
  align-items:center;
  gap:35px;
}

/* NAV */
.nav-menu{
  list-style:none;
  display:flex;
  gap:30px;
}
.nav-menu li{position:relative}
.nav-menu a{
  text-decoration:none;
  color:#e5e7eb;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:6px;
  transition:.3s;
}
.nav-menu a:hover{color:#38bdf8}

/* DROPDOWN */
.arrow{transition:.3s;font-size:14px}
.dropdown:hover .arrow{transform:rotate(180deg)}

.dropdown-menu{
  position:absolute;
  top:130%;
  left:0;
  min-width:240px;
  background:linear-gradient(180deg,#fff,#f8fafc);
  border-radius:14px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:.35s;
  overflow:hidden;
  z-index:999;
}

.dropdown-menu a{
  display:block;
  padding:14px 20px;
  color:#0f172a;
  font-size:14px;
}
.dropdown-menu a:hover{
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  color:#fff;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* CTA */
.cta{
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  color:#fff;
  padding:11px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 30px rgba(56,189,248,.45);
  transition:.3s;
}
.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 40px rgba(37,99,235,.6);
}

/* ================= HAMBURGER ================= */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.hamburger span{
  width:25px;
  height:2px;
  background:#fff;
}

/* ================= OFF CANVAS ================= */
.offcanvas{
  position:fixed;
  top:0;
  right:-100%;
  width:300px;
  height:100vh;
  background:linear-gradient(180deg,#0f2027,#203a43);
  padding:25px;
  transition:.4s;
  z-index:1000;
  display:flex;
  flex-direction:column;
}

.offcanvas.active{right:0}

.off-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.close{
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

.off-menu{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.off-menu a,
.off-toggle{
  color:#e5e7eb;
  text-decoration:none;
  font-size:16px;
  background:none;
  border:none;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}

.off-submenu{
  list-style:none;
  display:none;
  padding-left:15px;
  gap:10px;
  flex-direction:column;
}

.off-dropdown.active .off-submenu{display:flex}

#off-cta{
  margin-top:40px;
  background:linear-gradient(135deg,#38bdf8,#2563eb);
  padding:14px;
  border-radius:30px;
  color:#fff;
  text-align:center;
  text-decoration:none;
  font-weight:600;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999;
}
.overlay.active{
  opacity:1;
  visibility:visible;
}



.hero {
  height:80vh;
  background:url('images/banner.avif') center/cover no-repeat;
  display:flex;align-items:center;flex-direction:column;justify-content:center;gap:20px;
  text-align:center;color:white;padding:0px;
  background-attachment: scroll;
}
.hero h1 {font-size:42px;margin-bottom:20px;text-shadow:2px 2px 6px rgba(0,0,0,0.6);color:var(--bg--hex);}


.popup {
  position:fixed;top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,0.6);display:none;
  justify-content:center;align-items:center;z-index:998;
}
.popup-content {
  background:white;padding:25px;border-radius:10px;width:350px;position:relative;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}
.animate-popup {animation:scaleUp 0.4s ease;}
@keyframes scaleUp {0%{transform:scale(0.7);opacity:0;}100%{transform:scale(1);opacity:1;}}
.popup-content h3 {text-align:center;margin-bottom:10px;color:#2C7AA6;}
.popup-content .sub-text {font-size:14px;text-align:center;color:#555;margin-bottom:15px;}
.popup-content input,.popup-content select {
  width:100%;padding:10px;margin:8px 0;
  border:1px solid #ccc;border-radius:5px;
}
.popup-content button {
  width:100%;padding:12px;background:#2C7AA6;color:white;
  border:none;border-radius:5px;font-size:16px;cursor:pointer;transition:0.3s;
}
.popup-content button:hover {background:#2E6B3E;}
.close-popup {
  position:absolute;top:10px;right:15px;font-size:20px;cursor:pointer;color:#2B2B2B;
}
#formMsg {margin-top:10px;font-size:14px;text-align:center;}


section {padding:50px 20px;text-align:center;}
section h2 {color:#2C7AA6;margin-bottom:20px;font-size:28px;}
section p {max-width:700px;}


footer {background:#2C7AA6;color:white;text-align:center;padding:15px;}


@media(min-width:768px){
  .desktop-nav {display:flex;align-items:center;}
  .menu-btn {display:none;}
}


.packages-section {
  padding: 60px 20px;
  text-align: center;
  background: #FFFFFF;
}

.packages-section h2 {
  font-size: 32px;
  color: #2C7AA6;
  margin-bottom: 40px;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.package-card {
  background: #F3FAFD;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card h3 {
  margin: 15px 0 10px;
  color: #2B2B2B;
  font-size: 20px;
}

.package-card p {
  padding: 0 15px;
  font-size: 15px;
  color: #555;
  min-height: 60px;
}

.quote-btn {
  margin: 15px 0 20px;
  padding: 10px 20px;
  background: #2C7AA6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.quote-btn:hover {
  background: #2E6B3E;
  transform: scale(1.05);
}

.video-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px;
  background: #0A2E52; 
  color: #fff;
}

.video-content {
  flex: 1;
  padding-right: 40px;
  
}

.video-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.video-content p {
  padding-bottom: 20px;
  margin:auto;
  color: #ddd;
  font-size:20px;
  line-height:30px;
  
}

.btn-primary {
  display: inline-block;
  background: #2C7AA6; 
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: bold;
}

.btn-primary:hover {
  background: #2E6B3E; 
}

.video-box {
  flex: 1;
  position: relative;
  max-width: 600px;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  border-radius: 6px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.play-btn:hover {
  background: rgba(44, 122, 166, 0.9); 
}

.video-iframe {
  display: none;
}

.video-iframe iframe {
  width: 100%;
  height: 340px;
  border-radius: 6px;
}

.why-choose-us {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: #0A2E52;
  margin-bottom: 10px;
}

.why-choose-us .subtitle {
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  max-width:1000px;
  margin:auto;
  justify-items: center;
}

@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
}

.choose-box {
  background: #fff;
  padding: 40px 20px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  position: relative;
  transition: all 1s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  text-align: center;
}

.choose-box:hover {
  border-color: #2C7AA6;
  box-shadow: 0 0 15px rgba(44, 122, 166, 0.3);
}

.icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  border: 2px solid #2C7AA6;
}

.icon i {
  font-size: 1.5rem;
  color: #2C7AA6;
}

.choose-box h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #2B2B2B;
}

.choose-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.choose-box a {
  text-decoration: none;
  color: #2C7AA6;
  font-weight: bold;
  transition: 0.3s;
}

.choose-box a:hover {
  color: #2E6B3E;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  position: relative;
  min-width: 25%; 
  height: 500px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.slide h2 {
  color:whitesmoke !important;
}

.slide p {
  color:#ccc;
}


.overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.overlay h2 {
  font-size: 24px;
  margin: 0;
}

.overlay p {
  margin: 5px 0 0;
  font-size: 14px;
}


.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide:hover .hover-overlay {
  opacity: 1;
}


.hover-content {
  text-align: center;
  color: #fff;
}

.hover-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color:var(--lightsky--blue);
}

.hover-content .rating {
  color: gold;
  margin-bottom: 10px;
}

.hover-content p {
  font-size: 12px;
  font-family:sans-serif;
  padding:5px;
  margin: 5px 0;
}

.hover-content a {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  font-size: 14px;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  display:none;
  padding: 10px;
  cursor: pointer;
  z-index: 5;
}


.contact-section {
  width: 100%;
  background: #f8f9fc;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch; 
  gap: 50px;
}


.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1d3b72;
  font-weight: 700;
}

.contact-info .intro-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background: #1d3b72;
  color: #fff;
  border-radius: 50%;
  display: flex;
  margin-top:5px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
}

.info-item h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #1d3b72;
}

.info-item p {
  margin: 3px 0 0;
  font-size: 15px;
  color: #444;
}


.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1d3b72;
  font-weight: 700;
  text-align: center;
}

.form-box {
  border: 2px solid #ccc;
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  border:2px solid #ccc !important;
  box-shadow: 0px 10px 25px #ccc; 
  display: flex;
  align-items: center;
  height: 100%; 
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 50px;               
  padding: 0 16px;            
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: #fdfdfd;
  box-sizing: border-box;     
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #1d3b72;
  box-shadow: 0 0 8px rgba(29, 59, 114, 0.2);
}


.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'12'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M7%2010L12%2015L17%2010H7Z'%20fill%3D'%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.contact-form button {
  padding: 15px;
  background: #1d3b72;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #15305c;
  transform: translateY(-2px);
}


@media (max-width: 900px) {
  .contact-container {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .form-box {
    height: auto;
  }
}

.contact-section {
  width: 100%;
  background: #f8f9fc;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  width: 65%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 50px;
}


.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1d3b72;
  font-weight: 700;
}

.contact-left .intro-text {
  font-size: 15px;
  padding-bottom:20px;
  color: #666;
}

.info-item {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background: #1d3b72;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
}

.info-item h4 {
  margin: 0;
  font-size: 17px;
  text-align:start;
  font-weight: 600;
  color: #1d3b72;
}

.info-item p {
  margin: 3px 0 0;
  text-align:start;
  font-size: 15px;
  color: #444;
}


.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1d3b72;
  font-weight: 700;
  text-align: center;
}

.form-box {
  border: 2px solid #1d3b72;
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  height: 100%;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-right input,
.contact-right select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: #fdfdfd;
  box-sizing: border-box;
}

.contact-right input:focus,
.contact-right select:focus {
  border-color: #1d3b72;
  box-shadow: 0 0 8px rgba(29, 59, 114, 0.2);
}


.contact-right select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'12'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M7%2010L12%2015L17%2010H7Z'%20fill%3D'%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.contact-right button {
  padding: 15px;
  background: #1d3b72;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-right button:hover {
  background: #15305c;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .form-box {
    height: auto;
  }
}

.reviews-section {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
  }

  .reviews-section h2 {
    font-size: 36px;
    font-weight: 700;
    color:#1d3b72;
    letter-spacing: -0.5px;
    padding-bottom:15px;
  }

  .reviews-section p {
    font-size: 17px;
    color: #475569;
    margin:auto;
    font-weight: 400;
  }

  #para-test {
    margin-bottom:50px;
  }

  .reviews-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
  }

  .review-card {
    min-width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.5s ease-in-out;
  }

  .review-card img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #e2e8f0;
  }

  .review-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #0f172a;
  }

  .review-card h4 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .review-stars {
    margin-bottom: 15px;
    color: #fbbf24;
    font-size: 16px;
  }

  .review-card p {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    font-weight: 400;
    font-style: italic;
  }

  .reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

 
.snap-footer {
  background: #0b2545;
  color: #e5e7eb;
  font-family: "Montserrat", sans-serif;
  width: 100%;
}


.snap-footer-container {
  max-width: 65%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.snap-footer-left {
  flex: 1;
}

.snap-footer-logo {
  width: 150px;
  margin-bottom: 5px;
}

.snap-footer-left p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 20px;
}

.snap-footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.snap-footer-social a:hover {
  color: #60a5fa;
  transform: scale(1.2);
}


.snap-footer-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top:6%;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

.footer-col ul li i {
  margin-right: 8px;
  color: #60a5fa;
}


.snap-footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #d1d5db;
}


@media (max-width: 1024px) {
  .snap-footer-container {
    flex-direction: column;
    max-width: 80%;
    gap: 40px;
  }

  .snap-footer-right {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.thankyou-wrapper {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background:linear-gradient(135deg, #F3FAFD, #E6F4F1);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.thankyou-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}


.thankyou-card {
  background: #fff;
  text-align: center;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  animation: fadeInUp 1s ease;
}


.checkmark {
  font-size: 60px;
  color: #10b981; 
  margin-bottom: 20px;
  animation: pop 0.5s ease;
}


.thankyou-card h1 {
  font-size: 28px;
  color: #0b2545;
  margin-bottom: 15px;
}


.thankyou-card p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 30px;
  line-height: 1.6;
}


.thankyou-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0b2545;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thankyou-btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
 


form input {border:none;outline:none !important;}
header img {width:180px;height:100px; object-fit: contain;}

input:focus, :user-valid {border-color:green;outline:none;}
input:focus, :user-invalid {border-color:red;}
.cta-buttons{display:flex;gap:10px; width:auto;}
.cta-buttons a {width:193.39px;}
.cta-buttons button {width:193.39px;}

.hero span{line-height:25px;}
#button-clr{background-color: #032661 !important;}
.nav-btn {
  padding:15px;
  background-color:var(--text-primary);
  color:var(--bg--hex);
  border-radius:7px;
  transition:0.5s all;
}

.nav-btn:hover {
  transform:scale(1.1);
}

.fixed-btns {
  display:flex;
  width:200px;
  justify-content:space-around;
  flex-direction: column;
  gap:20px;
}

.call-btn {
  width:55px;
  height:55px;
  background-color:var(--secondary--hex);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:fixed;
  bottom:90px;
  left:15px;
  z-index:10001;
}

.call-btn i {
  color:white;
  font-size:24px;
  animation:fbtn 0.6s 0s infinite linear forwards;
}

.wapp-btn {
  width:55px;
  height:55px;
  background-color:var(--primary--hex);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:fixed;
  bottom:20px;
  left:15px;
  z-index:10001;
}

.wapp-btn i {
  color:white;
  font-size:30px;
  animation:fbtn 0.6s 0s infinite linear forwards;
  
}


@keyframes fbtn {
  0% {
    transform:translateY(-5px);
    overflow:hidden;
  }

  50% {
    transform:translateY(-6px);
    overflow:hidden;
  }

  100% {
    transform:translateY(0px);
    overflow:hidden;
  }
  
}

@keyframes fixed {
  100% {
    transform:rotate(360deg);
  }

  
}

.btn-canvas {
  display:flex;
  justify-content:space-between;
}

.btn-cta {
   background:rgb(90, 3, 102);color:var(--lightsky--blue);padding:20px 30px;
  border-radius:5px;border:none;cursor:pointer;transition:0.3s;
}



