@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand+SC&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #011153;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #044992,#011153);
  border-radius: 5px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

   background:radial-gradient(circle at top, #070a1a, #000 70%);
  color: #fff;
 

}
p{
  font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6{
 font-family: "Patrick Hand SC", cursive;
}




   /* <!-- PRELOADER --> */

/* PRELOADER WRAPPER */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #070a1a, #000 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* LOADER */
.banter-loader {
  width: 72px;
  height: 72px;
}

.banter-loader__box {
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  position: relative;
}

.banter-loader__box:nth-child(3n) {
  margin-right: 0;
  margin-bottom: 6px;
}

.banter-loader__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #044992;
  box-shadow: 0 0 10px rgba(4, 73, 146, 0.6);
}

/* ===== ANIMATIONS (UNCHANGED CORE) ===== */
@keyframes moveBox {
  0%, 100% { transform: translate(0,0); }
  25% { transform: translate(26px,0); }
  50% { transform: translate(26px,26px); }
  75% { transform: translate(0,26px); }
}

.banter-loader__box {
  animation: moveBox 1.8s infinite ease-in-out;
}

.banter-loader__box:nth-child(2) { animation-delay: 0.1s; }
.banter-loader__box:nth-child(3) { animation-delay: 0.2s; }
.banter-loader__box:nth-child(4) { animation-delay: 0.3s; }
.banter-loader__box:nth-child(5) { animation-delay: 0.4s; }
.banter-loader__box:nth-child(6) { animation-delay: 0.5s; }
.banter-loader__box:nth-child(7) { animation-delay: 0.6s; }
.banter-loader__box:nth-child(8) { animation-delay: 0.7s; }
.banter-loader__box:nth-child(9) { animation-delay: 0.8s; }

/* MOBILE */
@media (max-width: 576px) {
  .banter-loader {
    width: 54px;
    height: 54px;
  }

  .banter-loader__box {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
}





/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 16px;
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  max-width: 1280px; /* increased width */
  margin: 0 auto;

  padding: 14px 28px;
  border-radius: 9px;

  /* background: rgba(20, 30, 20, 0.5  ); */
  backdrop-filter: blur(10px);
  border: 1px inset #04499226;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .nav-inner {
    max-width: 100%;
    border-radius: 16px; /* cleaner mobile look */
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cube {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #011153, #044992);
  border-radius: 4px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* CTA BUTTON */
.cta-btn {
  margin-left: 6px;
  padding: 8px 18px;
  background: #044992;
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #04499266;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 600;
}

/* ALIGNMENT FIX */
.nav-inner {
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
/* SERVICES DROPDOWN – DESKTOP */
.services-menu {
  position: relative;
}
.services-menu ul{
    padding:0;
}

.services-menu > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown container */
.services-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;

  min-width: 200px;
  padding: 0;
  margin: 0;
  list-style: none;

  border-radius: 6px;
  background: #1f22309c;
  backdrop-filter: blur(16px);
  border: 1px inset #04499240;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);

  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Show on hover (desktop only) */
@media (min-width: 769px) {
  .services-menu:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(14px);
  }
}

/* Dropdown links */
.services-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  color: #e6e6e6;
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.services-dropdown li a:hover {
  background: rgba(4,73,146,0.18);
  padding-left: 26px;
  color: #fff;
}
/* MOBILE SERVICES DROPDOWN */
@media (max-width: 768px) {
  .mobile-menu .services-dropdown {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 10px 0 0;
    max-height: 0;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.35s ease;
  }

  .mobile-menu .services-menu.active .services-dropdown {
    max-height: 500px;
  }

  .mobile-menu .services-dropdown li a {
    font-size: 16px;
    padding: 10px 0 10px 14px;
    opacity: 0.9;
  }
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  z-index: 1000;

  /* background: rgba(10, 20, 10, 0.85); */
  backdrop-filter: blur(20px);

  padding: 24px;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.mobile-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-menu ul li {
  margin-bottom: 22px;
}

.mobile-menu ul a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.mobile-cta {
  width: 100%;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.button {
  font-size: 17px;
  cursor: pointer;
  padding: 12px;
  color: white;
  border-radius:  12px;
  border: 0;
  position: relative;
  text-decoration: none;
  background:
    radial-gradient(
      circle at bottom,
      rgba(50, 100, 180, 0.5) 10%,
      #212121 70%
    );

  background-size: 150% 150%;
  background-position: 50% 100%;
 

  box-shadow: 0 0 1em 1em rgba(0, 0, 0, 0.1);

  /* Only animate what we need */
  transition:
    background-position 2s ease,
    box-shadow 0.4s ease,
    transform 0.3s ease;
}


.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em 0.45em rgba(0, 0, 0, 0.15);

  /* same gradient, just moved upward = sunrise effect */
  background:
    radial-gradient(
      circle at bottom,
      rgba(50, 100, 180, 0.9) 10%,
      #212121 80%
    );

  background-position: 50% 0%;
  
}







/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("./bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65vw;

  overflow: hidden;
}

/* Tablets */
@media (max-width: 992px) {
  .hero {
    background-size: 80vw;
    height: 80vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    height: 90vh;              /* increased height */
    min-height: 580px;         /* ensures enough space */
    background-size: 130vw;    /* slightly larger for balance */
    background-position: center top;
    padding-top: 50px;        /* clears fixed navbar */
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 1.5rem !important;         /* better readability */
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem;
    margin-top: 16px;
    text-align: justify;
  }
  .hero-content {
  padding: 0 !important;
}
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.65); */
  backdrop-filter: blur(2px);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
}

span {
  color: #044992;
}

.hero p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #cfcfcf;
}

/* ===== INFINITE GLOW MARQUEE ===== */

.chip-marquee{
  width:100%;
  overflow:hidden;
  position:relative;
  margin-top:40px;
}

.chip-track{
  display:flex;
  gap:24px;
  width:max-content;
  animation: scroll 30s linear infinite;
}

.chip-track span{
  padding:10px 22px;
  border-radius:999px;
  white-space:nowrap;
  font-size:0.9rem;
  color:#cfd9ff;

  background:
    radial-gradient(circle at top,
      rgba(4,73,146,0.35),
      #0a0a0a 70%
    );

  border:1px solid rgba(4,73,146,0.25);
  box-shadow:
    0 0 20px rgba(4,73,146,0.15),
    inset 0 0 12px rgba(4,73,146,0.15);

  backdrop-filter: blur(8px);
}

/* smooth infinite motion */
@keyframes scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* subtle fade edges */
.chip-marquee::before,
.chip-marquee::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:5;
  pointer-events:none;
}

.chip-marquee::before{
  left:0;
  background:linear-gradient(to right, #000, transparent);
}
.chip-marquee::after{
  right:0;
  background:linear-gradient(to left, #000, transparent);
}












/* ABOUT SECTION */
.about {
  padding: 0 20px;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 1.05rem;
  color: #cfcfcf;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* Right Cards */
.about-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  padding: 22px;
  border-radius: 14px;
  background: radial-gradient(
    circle at top,
    rgba(50, 100, 180, 0.35),
    #121212 70%
  );
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-card i {
  font-size: 28px;
  color: #044992;
  margin-bottom: 12px;
}

.about-card h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.about-card p {
  font-size: 0.95rem;
  color: #bdbdbd;
}

/* MOBILE */
@media (max-width: 768px) {
  .about {
    padding: 0 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 2.2rem;
  }
}











/* TRUST BUILDER SECTION */
.trust {
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

.trust-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.trust-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.trust-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Cards */
.trust-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background: radial-gradient(
    circle at top,
    rgba(50, 100, 180, 0.35),
    #0f0f0f 70%
  );
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  text-align: center;
  transform-style: preserve-3d;
}

.trust-card i {
  font-size: 34px;
  color: #044992;
  margin-bottom: 14px;
}

.trust-card h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.95rem;
  color: #bdbdbd;
}

/* Glow effect */
.trust-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at top,
    rgba(4, 73, 146, 0.45),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.trust-card:hover::after {
  opacity: 1;
}

/* Mobile */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust {
    padding: 90px 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-header h2 {
    font-size: 2.2rem;
  }
}



/* services */
/* SERVICES SECTION - Clean Grid Layout */
/* SERVICES SECTION */
.services {
  padding: 60px 20px;
  position: relative;
  background: transparent;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.services-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #fff;
}

.services-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Services Wrapper */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 50px;
  border-radius: 24px;
  background: radial-gradient(
    circle at top,
    rgba(20, 30, 48, 0.8),
    rgba(10, 10, 10, 0.9) 70%
  );
  border: 1px solid rgba(4, 73, 146, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

/* Alternate layout */
.service-item-2 {
  flex-direction: row-reverse;
}

/* Service Text */
.service-text {
  flex: 1;
  padding: 20px;
}

.service-icon {
  font-size: 48px;
  color: #044992;
  margin-bottom: 25px;
  display: inline-block;
}

.service-icon i {
  filter: drop-shadow(0 0 10px rgba(4, 73, 146, 0.5));
}

.service-item h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.service-item p {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-item p:last-of-type {
  margin-bottom: 0;
}

/* Service Image */
.service-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.service-img img {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Background Numbers */
.service-item::before {
  content: attr(data-number);
  position: absolute;
  font-size: 200px;
  font-weight: 900;
  color: rgba(4, 73, 146, 0.05);
  font-family: "Patrick Hand SC", cursive;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.service-item-1::before {
  content: '01';
  bottom: -40px;
  right: 40px;
}

.service-item-2::before {
  content: '02';
  bottom: -40px;
  left: 40px;
}

.service-item-3::before {
  content: '03';
  bottom: -40px;
  right: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .service-item {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    text-align: center;
  }
  
  .service-item-2 {
    flex-direction: column;
  }
  
  .service-img {
    height: 250px;
    order: 2;
  }
  
  .service-text {
    order: 1;
    padding: 0;
  }
  
  .service-img img {
    max-width: 280px;
  }
  
  .service-item::before {
    font-size: 150px;
    top: 20px;
    right: 20px !important;
    left: auto !important;
    bottom: auto;
  }
}

@media (max-width: 576px) {
  .services {
    padding: 80px 20px;
  }
  
  .services-header h2 {
    font-size: 2.2rem;
  }
  
  .service-item {
    padding: 30px;
    gap: 30px;
    min-height: auto;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
  }
  
  .service-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .service-item p {
    font-size: 1rem;
  }
  
  .service-img {
    height: 200px;
  }
  
  .service-img img {
    max-width: 220px;
  }
  
  .service-item::before {
    font-size: 120px;
    top: 10px;
    right: 15px !important;
  }
}



.why-choose-us {
  padding: 60px 20px;
  /* background: linear-gradient(180deg, #0a0a0a 0%, #141e30 100%); */
  /* color: #fff; */
}

.wc-container {
  max-width: 1200px;
  margin: auto;
}

.wc-header {
  text-align: center;
  margin-bottom: 80px;
}

.wc-header h2 {
  font-size: 2.8rem;
}


.wc-header p {
  color: #cfcfcf;
  margin-top: 10px;
}

/* Grid */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  perspective: 1500px; /* for pendulum effect */
  position: relative;
}

/* Card */
.wc-card {
  position: relative;
  background: rgba(20, 30, 48, 0.9);
  border: 1px solid rgba(4,73,146,0.3);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  transform-origin: top center;
  cursor: auto;
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

.wc-card:hover {
  box-shadow: 0 25px 50px rgba(4,73,146,0.3);
}

/* Nail */
/* .wc-nail {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6b6b;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
} */

/* Nail color from data attribute
.wc-card[data-color] .wc-nail {
  background: attr(data-color color);
} */

/* Card Content */
.wc-content {
  padding: 35px 25px;
}

.wc-number {
  font-weight: 700;
  font-size: 1rem;
  color: #044992;
  display: block;
  margin-bottom: 15px;
}

.wc-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.wc-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cfcfcf;
}







.faq-section {
  padding: 60px 20px;
  background: transparent;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  color: #fff;
  font-size: 2.8rem;
}

.faq-header p {
  color: #cfcfcf;
  margin-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* FAQ Card */
.faq-item {
  background: radial-gradient(circle at top, rgba(20,30,48,0.9), rgba(10,10,10,0.95));
  border: 1px solid rgba(4,73,146,0.3);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 26px;
  color: #044992;
  transition: 0.4s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.faq-answer p {
  padding: 0 25px 25px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #04499262;
}

/* Hover glow */
.faq-item:hover {
  border-color: #044992;
  box-shadow: 0 0 25px rgba(4,73,146,0.4);
}

/* Mobile */
@media(max-width: 768px){
  .faq-grid {
    grid-template-columns: 1fr;
  }
}





  /* ===== WEBSITE PREVIEW CARD ===== */
.preview-card {
  position: relative;
  height: 420px; /* window height */
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;

  background: radial-gradient(
    circle at top,
    rgba(20, 30, 48, 0.9),
    rgba(5, 5, 5, 0.95) 70%
  );

  border: 1px solid rgba(4, 73, 146, 0.25);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.6),
    inset 0 0 25px rgba(4,73,146,0.08);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover lift + glow */
.preview-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 35px 70px rgba(0,0,0,0.7),
    0 0 40px rgba(4,73,146,0.35);
}

/* Screenshot */
.preview-card img {
  width: 100%;
  height: auto;
  display: block;

  transform: translateY(0);
  transition: transform 2s linear;
}

/* Auto-scroll on hover */
.preview-card:hover img {
  transform: translateY(calc(-100% + 420px));
}

/* Gradient fade (top & bottom mask) */
.preview-card::before,
.preview-card::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.preview-card::before {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}

.preview-card::after {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .preview-card {
    height: 320px;
  }

  .preview-card:hover img {
    transform: translateY(calc(-100% + 320px));
  }
}



/* ===== CTA FORM SECTION ===== */
.cta-section {
  padding: 60px 20px;
  position: relative;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.cta-content h2 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-content p {
  color: #cfcfcf;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* FORM CARD */
.cta-form {
  background: radial-gradient(
    circle at top,
    rgba(20, 30, 48, 0.9),
    rgba(5, 5, 5, 0.95) 70%
  );
  border: 1px solid rgba(4,73,146,0.3);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* INPUT GROUP */
.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

/* LABEL */
.form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
  background: #0a0a0a;
  padding: 0 6px;
}

/* FLOATING LABEL */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #044992;
}

/* TWO COLUMN FORM ROW */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Ensure same height */
.form-row .form-group input {
  height: 48px;
}

/* MOBILE STACK */
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}



/* ERROR */
.form-group.error input,
.form-group.error textarea {
  border-color: #ff4d4d;
}

.error-text {
  font-size: 12px;
  color: #ff4d4d;
  margin-top: 6px;
  display: none;
}

.form-group.error .error-text {
  display: block;
}

/* SUBMIT */
.cta-form button {
  width: auto;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #044992, #011153);
  color: #fff;
  box-shadow: 0 0 30px rgba(4,73,146,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(4,73,146,0.8);
}

/* SUCCESS */
.form-success {
  text-align: center;
  color: #4cd964;
  font-size: 1rem;
  margin-top: 20px;
  display: none;
}

/* MOBILE */
@media (max-width: 992px) {
  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.4rem;
  }
}
/* CONTACT CARDS */
.cta-cards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;

  background: radial-gradient(
    circle at top,
    rgba(20,30,48,0.9),
    rgba(5,5,5,0.95) 70%
  );

  border: 1px solid rgba(4,73,146,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(4,73,146,0.5);
}

.cta-card i {
  font-size: 28px;
  color: #044992;
}

.cta-card span {
  font-size: 0.9rem;
  color: #cfcfcf;
}

.cta-card strong {
  font-size: 1rem;
  display: block;
}
/* CAPTCHA */
.captcha-group .captcha-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 12px;

  background: rgba(4,73,146,0.15);
  border: 1px solid rgba(4,73,146,0.4);
  color: #fff;
  font-weight: 600;
}

.captcha-box button {
  background: none;
  border: none;
  color: #044992;
  font-size: 18px;
  cursor: pointer;
}


/* ===== WHY STICKY SECTION ===== */
.why-sticky {
  padding: 60px 20px;
}

.why-sticky-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* LEFT */
.why-sticky-left {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.why-sticky-left h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.why-sticky-left p {
  color: #cfcfcf;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* RIGHT */
.why-sticky-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* POINT */
.why-point {
  padding: 35px;
  border-radius: 20px;

  background: radial-gradient(
    circle at top,
    rgba(20,30,48,0.9),
    rgba(5,5,5,0.95) 70%
  );

  border: 1px solid rgba(4,73,146,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.why-point span {
  font-size: 1rem;
  font-weight: 700;
  color: #044992;
  display: block;
  margin-bottom: 12px;
}

.why-point h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.why-point p {
  color: #cfcfcf;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 992px) {
  .why-sticky-container {
    grid-template-columns: 1fr;
  }

  .why-sticky-left {
    position: relative;
    top: 0;
  }
}


/* ===== FOOTER BASE ===== */
.site-footer {
  padding: 90px 60px 30px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* GRID */
.footer-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 100px;
  align-items: flex-start;
}

/* BRAND */
.footer-brand h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #044992;
  margin-bottom: 22px;
}

.footer-desc {
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 620px;
}

/* SECTION HEADINGS */
.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  color: #fff;
}

/* QUICK LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 0.95rem;
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #044992;
}

/* BLOGS COLUMN */
.footer-blogs h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-blogs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-blogs li {
  margin-bottom: 14px;
}

.footer-blogs a {
  font-size: 0.95rem;
  color: #cfcfcf;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.25s ease;
}

.footer-blogs a:hover {
  color: #044992;
}

.footer-empty {
  font-size: 0.9rem;
  color: #888;
}


@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* CONTACT */
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #cfcfcf;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-contact i {
  color: #044992;
  font-size: 16px;
}

/* COPYRIGHT */
.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #9a9a9a;
}

/* MOBILE */
@media (max-width: 992px) {
  .site-footer {
    padding: 70px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-desc {
    max-width: 100%;
  }
}






/* ===== CURSOR FIREFLY GLOW at bottom ===== */

#cursor-glow{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 3;
  background:
    radial-gradient(
      circle 140px at var(--x,50%) var(--y,50%),
      rgba(4, 73, 146, 0.35),
      rgba(4, 73, 146, 0.15) 40%,
      transparent 70%
    );
  mix-blend-mode: screen;
  transition: background 0.05s linear;
}




/* Glass firefly particles */
.firefly{
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #044992;
  box-shadow: 0 0 12px #044992, 0 0 25px #044992;
  pointer-events: none;
  opacity: 0;
  animation: float 6s linear infinite;
}

@keyframes float{
  0%{
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  20%{opacity:1;}
  80%{opacity:1;}
  100%{
    transform: translateY(-200px) translateX(40px) scale(0.4);
    opacity:0;
  }
}


