*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f7f8fc;
  overflow-x:hidden;
  color:#111;
}

a{
  text-decoration:none;
}

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

/* TOPBAR */

.topbar{
  background:#04286f;
  color:#fff;
  padding:12px 0;
  font-size:14px;
}

.topbar .container{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

/* NAVBAR */

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#06296d;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo h1{
  color:#fff;
  font-size:38px;
  font-weight:900;
  line-height:1;
}

.logo span{
  color:#ff9d2d;
}

.logo p{
  color:#a7c3ff;
  font-size:12px;
  letter-spacing:4px;
  margin-top:5px;
}

.menu{
  display:flex;
  gap:40px;
  align-items:center;
}

.menu a{
  color:#fff;
  font-size:18px;
  font-weight:500;
  transition:0.3s;
}

.menu a:hover{
  color:#ff9d2d;
}

.btn{
  background:#ff9d2d;
  color:#fff;
  border:none;
  padding:16px 32px;
  border-radius:18px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 10px 30px rgba(255,157,45,0.3);
}

.btn:hover{
  transform:translateY(-4px);
  background:#ff8800;
}

/* HERO */

.hero{
  background:#06296d;
  min-height:100vh;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  color:#fff;
}

.circle1,
.circle2,
.circle3{
  position:absolute;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:50%;
}

.circle1{
  width:900px;
  height:900px;
  right:-200px;
  top:100px;
}

.circle2{
  width:650px;
  height:650px;
  right:50px;
  top:200px;
}

.circle3{
  width:400px;
  height:400px;
  right:180px;
  top:330px;
}

.hero-content{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:80px;
  align-items:center;
  padding:100px 0;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:50px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  margin-bottom:35px;
  backdrop-filter:blur(10px);
}

.hero h2{
  font-size:90px;
  line-height:0.95;
  font-weight:900;
  margin-bottom:30px;
}

.hero h2 span{
  color:#ff9d2d;
}

.hero p{
  color:#d7e4ff;
  font-size:24px;
  line-height:1.8;
  margin-bottom:40px;
  max-width:700px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:60px;
}

.outline-btn{
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.05);
  color:#fff;
  padding:16px 32px;
  border-radius:18px;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.outline-btn:hover{
  background:#fff;
  color:#06296d;
}

/* STATS */

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}

.stat-box{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  padding:25px;
  border-radius:30px;
  backdrop-filter:blur(10px);
}

.stat-box h3{
  font-size:40px;
  color:#ff9d2d;
  margin-bottom:10px;
}

.stat-box p{
  font-size:15px;
  margin:0;
  line-height:1.5;
}

/* FORM */

.form-box{
  background:#fff;
  border-radius:40px;
  padding:50px;
  color:#111;
  box-shadow:0 20px 80px rgba(0,0,0,0.25);
}

.form-box h3{
  color:#06296d;
  font-size:42px;
  margin-bottom:30px;
  font-weight:900;
}

.form-box input,
.form-box select{
  width:100%;
  padding:18px 22px;
  margin-bottom:20px;
  border-radius:18px;
  border:1px solid #ddd;
  font-size:18px;
  outline:none;
}

.form-box button{
  width:100%;
}

/* SECTION */

section{
  padding:120px 0;
}

.section-title{
  text-align:center;
  margin-bottom:80px;
}

.section-title span{
  color:#ff9d2d;
  font-size:15px;
  font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
}

.section-title h2{
  font-size:70px;
  color:#06296d;
  font-weight:900;
  line-height:1.1;
  margin:20px 0;
}

.section-title p{
  font-size:22px;
  color:#666;
  max-width:850px;
  margin:auto;
  line-height:1.8;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:#fff;
  border-radius:35px;
  padding:45px;
  transition:0.4s;
  border:1px solid #eaeaea;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
  transform:translateY(-12px);
  background:#06296d;
  color:#fff;
}

.service-icon{
  width:90px;
  height:90px;
  border-radius:30px;
  background:#ffe7c5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  margin-bottom:30px;
}

.service-card h3{
  font-size:34px;
  margin-bottom:20px;
}

.service-card p{
  color:#666;
  line-height:1.9;
  font-size:18px;
  margin-bottom:25px;
}

.service-card:hover p{
  color:#dbe6ff;
}

/* PROCESS */

.process{
  background:#f2f5fb;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  text-align:center;
}

.step-number{
  width:130px;
  height:130px;
  border-radius:50%;
  background:#fff;
  border:5px solid #ff9d2d;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto auto 35px;
  font-size:42px;
  font-weight:900;
  color:#06296d;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.process-box h3{
  font-size:34px;
  color:#06296d;
  margin-bottom:20px;
}

.process-box p{
  font-size:18px;
  color:#666;
  line-height:1.9;
}

/* PRICING */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.price-card{
  background:#fff;
  border-radius:40px;
  padding:50px;
  border:1px solid #eee;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.price-card:hover{
  transform:translateY(-12px);
}

.featured{
  background:#06296d;
  color:#fff;
}

.price-card h3{
  font-size:36px;
  margin-bottom:25px;
}

.price{
  font-size:70px;
  color:#ff9d2d;
  font-weight:900;
  margin-bottom:30px;
}

.price-card ul{
  list-style:none;
  margin-bottom:40px;
}

.price-card ul li{
  margin-bottom:18px;
  font-size:18px;
}

/* PACKAGES */

.packages{
  background:#f2f5fb;
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.package-card{
  background:#fff;
  border-radius:35px;
  overflow:hidden;
  transition:0.4s;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.package-card:hover{
  transform:translateY(-12px);
}

.package-top{
  background:linear-gradient(135deg,#06296d,#0b4cd1);
  padding:45px 30px;
  color:#fff;
}

.package-top span{
  background:#ff9d2d;
  padding:8px 18px;
  border-radius:50px;
  font-size:12px;
  font-weight:700;
}

.package-top h3{
  font-size:42px;
  margin:25px 0 10px;
}

.package-content{
  padding:35px;
}

.package-price{
  font-size:42px;
  font-weight:900;
  color:#06296d;
  margin:20px 0;
}

.package-content ul{
  list-style:none;
  margin:30px 0;
}

.package-content ul li{
  margin-bottom:14px;
  color:#666;
}

/* CTA */

.cta{
  background:#06296d;
  color:#fff;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta h2{
  font-size:80px;
  margin-bottom:20px;
  font-weight:900;
}

.cta p{
  font-size:24px;
  color:#dbe6ff;
  margin-bottom:40px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* FOOTER */

footer{
  background:#041743;
  color:#fff;
  padding:120px 0 50px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

.footer-grid h3,
.footer-grid h4{
  margin-bottom:30px;
}

.footer-grid h3{
  font-size:40px;
}

.footer-grid h3 span{
  color:#ff9d2d;
}

.footer-grid h4{
  color:#ff9d2d;
  font-size:28px;
}

.footer-grid p,
.footer-grid li{
  color:#c9d7ff;
  line-height:2;
  list-style:none;
  font-size:18px;
}

.copyright{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:60px;
  padding-top:30px;
  text-align:center;
  color:#c9d7ff;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .hero-content,
  .services-grid,
  .pricing-grid,
  .package-grid,
  .footer-grid,
  .process-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero h2,
  .section-title h2,
  .cta h2{
    font-size:60px;
  }
}

@media(max-width:900px){

  .menu{
    display:none;
  }

  .hero-content,
  .services-grid,
  .pricing-grid,
  .package-grid,
  .footer-grid,
  .process-grid,
  .stats{
    grid-template-columns:1fr;
  }

  .hero h2,
  .section-title h2,
  .cta h2{
    font-size:48px;
  }

  .hero p,
  .section-title p,
  .cta p{
    font-size:18px;
  }

  .btn,
  .outline-btn{
    width:100%;
  }

  .hero-buttons,
  .cta-buttons{
    flex-direction:column;
  }

  nav{
    flex-direction:column;
    gap:25px;
  }
}