* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #222222;
  overflow-x: hidden;
  line-height: 1.6;
}

/* =========================
   GLOBAL
========================= */

:root {
  --primary: #6B4EFF;
  --dark: #1f2937;
  --gray: #666666;
  --light: #f4f7ff;
  --footer: #0f2b6c;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  position: relative;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER
========================= */

header {
    display: flex;
    width: 100%;
    background-color: #F3F3F3;
    position: fixed;
    z-index: 1111;
    top: 0;
    left: 0;

}

.header_left {
    width: 15%;
    /* background: red; */
    position: relative;
}

/* .header_middle nav li a{
    text-decoration: none;

} */

.site_name {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-weight: 900;
    font-size: 22px;
    white-space: nowrap;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}


.header_middle {
    width: 60%;
    padding-left: 1rem;
    /* background: violet; */
}

.header_middle ul {
    display: flex;
    list-style-type: none;
    margin-top: 2rem;
    gap: 1rem;


}

.header_middle ul li {
    font-size: 18px;
    margin-left: 1rem;
    margin-bottom: 1rem;

}

.header_middle ul li a {
    text-decoration: none;
    color: #000;
}

.header_right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
    /* background: blue; */
}

.header_right a {
    font-weight: 700;
    margin-left: 15px;
    text-decoration: none;

}

.sign_part {
    color: #4b2cff;

}

.log_in {
    background: #4b2cff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;

}


/* =========================
   HERO
========================= */

.hero {
  padding: 120px 0 150px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 520px;
}

.hero h1 {
  font-size: 76px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 700;
}

.hero p {
  max-width: 420px;
  color: var(--gray);
  margin-bottom: 30px;
}

.large-btn {
  width: 150px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4b2cff;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
  font-weight: bold;
}
.large-btn:hover {
  background-color: #836ff4;
  transform: translateY(-2px);
}
.hero-blob {
  position: absolute;
  right: -180px;
  top: 30px;
  width: 850px;
  height: 600px;
  background: var(--light);
  border-radius: 50%;
  z-index: 1;
}

/* =========================
   MISSION
========================= */

.mission {
  padding: 100px 0;
}

.section-label {
  color: #9ca3af;
  margin-bottom: 10px;
  font-size: 18px;
}

.mission h2 {
  color: var(--primary);
  font-size: 54px;
  margin-bottom: 25px;
}
.gray-text{
  color:#b1b2b7;
}
.mission-content {
  max-width: 720px;
}

.mission-content p {
  margin-bottom: 16px;
  color: #555555;
}

/* =========================
   SERVICES
========================= */

.services {
  padding: 110px 0;
  background-color: fafafd;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 48px;
  color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background: #fafafd;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f3efff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  color: #666666;
  font-size: 14px;
}

/* =========================
   WHY US
========================= */

.why-us {
  padding: 130px 0;
}

.why-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}

.why-left {
  min-width: 300px;
}

.why-left h2 {
  color: var(--primary);
  font-size: 70px;
  line-height: 1;
}

.why-card {
  flex: 1;
  background: #ffffff;
  border-radius: 26px;
  padding: 35px;
  border: 1px solid #eeeeee;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f2f2f2;
}

.why-item:last-child {
  border-bottom: none;
}

.why-item span {
  color: var(--primary);
  font-size: 18px;
  font-weight: bold;
}

/* =========================
   STATS
========================= */

.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-box {
  background: #fafafa;
  border-radius: 22px;
  padding: 30px;
}

.stat-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.stat-box p {
  color: #666666;
}

/* =========================
   CTA
========================= */

.cta {
  padding: 130px 0;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 55px;
  color: var(--primary);
  margin: 12px 0 20px;
}

.cta p {
  color: #555555;
}

.cta-text {
  max-width: 700px;
  margin-bottom: 30px;
}
.gray{
  font-weight: bold;
  font-size: 40px;
  color:#b1b2b7;
}
.cta-blob {
  position: absolute;
  left: -180px;
  top: 50px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--light);
  z-index: 1;
}

/* =========================
   FOOTER
========================= */

.footer{
  height: 600px;
      background:#18346D;
      color:#fff;
      padding:60px 8% 30px;
      margin-top: 200px;
    }

   .footer_bottom{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 10px;
  padding-bottom: 30px;
  overflow-x: auto;
}
    .footer_bottom h2{
      font-size:12px;
      margin-bottom:15px;
    }

    .footer_bottom h3{
      font-size:14px;
      font-weight:400;
      color:#c5cee5;
      line-height:1.8;
      cursor:pointer;
      transition:0.3s;
    }

    .footer_bottom h3:hover{
      color:#fff;
      transform:translateX(5px);
    }

    .under_bottom_right{
      display:flex;
      gap:20px;
      margin-top:20px;
      font-size:13px;
      color:#c5cee5;
      margin-top: 60px;
    }
.footer_line{
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 200px;
}
    .under_bottom_right p{
      cursor:pointer;
      transition:0.3s;
    }

    .under_bottom_right p:hover{
      color:#fff;
    }

    .footer-bottom{
      text-align:center;
      margin-top:25px;
      font-size:13px;
      color:#c5cee5;
    }
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .hero h1 {
    font-size: 58px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 85px;
    right: 20px;
    width: 240px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: none;
    flex-direction: column;
    gap: 20px;
  }

  .nav.active {
    display: flex;
  }

  .btn-outline,
  .btn-primary {
    display: none;
  }

  .hero {
    padding: 80px 0 100px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-blob {
    width: 400px;
    height: 400px;
    right: -160px;
    top: 100px;
  }

  .mission h2,
  .section-title h2,
  .cta h2 {
    font-size: 38px;
  }

  .why-left h2 {
    font-size: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-blob {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {

  .hero h1 {
    font-size: 38px;
  }

  .mission h2,
  .section-title h2,
  .cta h2 {
    font-size: 34px;
  }

  .why-left h2 {
    font-size: 42px;
  }

  .service-card {
    flex-direction: column;
  }

  .why-card {
    padding: 25px;
  }
}