/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #ffffff;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:white;
  border-bottom:1px solid #e5e5e5;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  font-size:22px;
  font-weight:bold;
  color:#1F4FD8;
}

/* NAV */
nav a{
  margin-left:25px;
  text-decoration:none;
  color:#333;
  font-size:16px;
}

nav a:hover{
  color:#1F4FD8;
}

/* MOBILE MENU */
.menu-btn{
  display:none;
  font-size:26px;
  cursor:pointer;
}
/* CTA */
.cta {
  background: #1F4FD8;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
}

/* .cta:hover {
  background: #4DA3FF;
} */

/* MOBILE MENU */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 90px 20px;
  background: #f3f6ff;
}

.hero h1 {
  font-size: 36px;
  color: #1F4FD8;
}

.hero h3 {
  font-size: 20px;
  margin-top: 10px;
}

.hero p {
  color: #444;
}

.btn {
  background: #1F4FD8;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  background: #4DA3FF;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 25px;
  background: #f2f4f8;
  text-align: center;
}
    /* Section Header */
    .section-header{
      text-align: center;
      margin-bottom: 40px;
    }
    .section-header span{
      display: inline-block;
      padding: 6px 16px;
      border-radius: 20px;
      background: linear-gradient(135deg,#2563eb,#9333ea);
      color: #fff;
      font-size: 14px;
      letter-spacing: 1px;
    }
    .section-header h1{
      font-size: 38px;
      margin: 16px 0 10px;
      color: #111;
    }
    .section-header p{
      max-width: 720px;
      margin: 0 auto;
      color: #555;
      font-size: 16px;
    }

    /* Counter Section */
    .counter-section{
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
    }
    .counter-box{
      text-align: center;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      flex: 1 1 200px;
      min-width: 180px;
      transition: transform 0.3s;
    }
    .counter-box:hover{
      transform: translateY(-5px);
    }
    .counter{
      font-size: 36px;
      font-weight: 700;
      background: linear-gradient(90deg,#2563eb,#9333ea);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: fadeUp 1s ease-out;
    }
    .label{
      font-size: 16px;
      color: #555;
      margin-top: 10px;
    }

    /* Fade Up Animation */
    @keyframes fadeUp{
      0%{opacity:0; transform: translateY(20px);}
      100%{opacity:1; transform: translateY(0);}
    }

    /* Responsive */
    @media(max-width:768px){
      .counter-section{flex-direction: column; align-items: center;}
      .counter{font-size:32px;}
      .section-header h1{font-size:32px;}
      .section-header p{font-size:15px; padding:0 10px;}
    }
    @media(max-width:480px){
      .counter{font-size:28px;}
      .section-header h1{font-size:28px;}
      .section-header span{font-size:12px; padding:4px 12px;}
      .counter-box{padding: 20px; min-width:150px;}
      .label{font-size:14px;}
    }


.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 10px;
  width: 300px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 20px;
  text-align: center;
}

.about p {
  max-width: 780px;
  margin: auto;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 10%;
  text-align: center;
  background: #f9fafb;
}

.contact p {
  margin: 10px 0 30px;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact select,
.contact textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact textarea {
  resize: none;
  height: 120px;
}

.contact button {
  border: none;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  background: #0B1220;
  color: white;
  text-align: center;
  padding: 50px 20px;
  font-size: 14px;
}

/* ===== WHATSAPP ===== */
.whatsapp {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #25D366;
  color: white;
  padding: 15px 16px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
}

.fa-solid {
  font-size: 30px;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, #001122, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  text-align: center;
  color: #fff;
}

.loader-container h1 {
  margin-bottom: 20px;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Rocket */

/* Progress */
.progress-bar {
  width: 260px;
  height: 8px;
  background: #333;
  border-radius: 6px;
  margin: 15px auto;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #00e5ff, #4da3ff);
  transition: width 0.3s ease;
}

.loading-text {
  font-size: 13px;
  opacity: 0.8;
}

/* Stars */
.stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite;
}

.stars span:nth-child(1){top:20%;left:30%}
.stars span:nth-child(2){top:40%;left:70%}
.stars span:nth-child(3){top:60%;left:50%}
.stars span:nth-child(4){top:30%;left:10%}
.stars span:nth-child(5){top:80%;left:80%}

/* Animations */
@keyframes launch {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(-80px); }
}

@keyframes flicker {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.3); opacity: 0.7; }
}

@keyframes twinkle {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}
          .brand-title {
  animation: brandPulse 2s ease-in-out infinite;
}

@keyframes brandPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
/* ===== RESPONSIVE LOADER ===== */

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .brand-title {
    font-size: 24px;
    letter-spacing: 1.2px;
  }

  .progress-bar {
    width: 220px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .loader-container {
    padding: 20px;
  }

  .brand-title {
    font-size: 22px;
    letter-spacing: 1px;
    text-align: center;
  }

  .brand-tagline {
    font-size: 12px;
  }

  .progress-bar {
    width: 200px;
    height: 7px;
  }

  .loading-text {
    font-size: 12px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .brand-title {
    font-size: 20px;
    letter-spacing: 0.8px;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .progress-bar {
    width: 180px;
    height: 6px;
  }
}

/* Very large screens */
@media (min-width: 1400px) {
  .brand-title {
    font-size: 32px;
  }

  .progress-bar {
    width: 320px;
  }
  .loader-container {
  max-width: 90%;
}

}

@media(max-width:768px){

  nav{
    display:none;
    position:absolute;
    top:65px;
    right:0;
    width:100%;
    background:white;
    border-top:1px solid #ddd;
    text-align:center;
  }

  nav a{
    display:block;
    padding:12px;
    margin:0;
    border-bottom:1px solid #eee;
  }

  .menu-btn{
    display:block;
  }

  .hero h1{
    font-size:30px;
  }

  .cards{
    flex-direction:column;
    align-items:center;
  }
}




