/* ----------------------------------
   Global Reset
---------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f8fc;
  color: #1a2c3d;
  line-height: 1.6;
}

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

/* ----------------------------------
   Header
---------------------------------- */
.main-header {
  background: #ffffff;
  border-bottom: 1px solid #e3e9ef;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #0b63c7;
  text-decoration: none;
}

.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-desktop ul li a {
  color: #1e3a56;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-desktop ul li a:hover {
  color: #0b63c7;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-contacts .phone {
  font-weight: 600;
  color: #0b63c7;
  text-decoration: none;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.btn-primary {
  background: #0b63c7;
  color: #fff;
}

.btn-primary:hover {
  background: #084c99;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0b63c7;
  color: #0b63c7;
}

.btn-outline:hover {
  background: #0b63c7;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ----------------------------------
   Mobile Menu
---------------------------------- */
.mobile-menu {
  background: #ffffff;
  padding: 20px;
  border-bottom: 1px solid #e8eef4;
  display: none;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 12px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #0b63c7;
  font-size: 18px;
  font-weight: 600;
}

/* ----------------------------------
   Hero Section
---------------------------------- */
.hero {
  padding: 60px 0;
  background: linear-gradient(90deg, #eaf3ff, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #0b3768;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: #2c4865;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 20, 60, 0.1);
}

/* ----------------------------------
   Cards + Grids
---------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 40, 90, 0.06);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 40, 90, 0.12);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.services-list .service-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 20, 60, 0.06);
}

/* ----------------------------------
   Why Choose Us
---------------------------------- */
.why .feature {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 40, 90, 0.06);
}

/* ----------------------------------
   CTA Banner
---------------------------------- */
.cta-banner {
  padding: 30px;
  background: #0b63c7;
  color: #ffffff;
  text-align: center;
  margin: 40px 0;
  border-radius: 10px;
}

.cta-banner h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ----------------------------------
   Footer
---------------------------------- */
.footer {
  background: #06253d;
  color: #c8e1ff;
  padding: 40px 0;
}

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

.footer h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer a {
  color: #c8e1ff;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.copy {
  text-align: center;
  padding-top: 20px;
  font-size: 15px;
  color: #9ccaff;
}

/* ----------------------------------
   Page Header
---------------------------------- */
.page-header {
  background: #ffffff;
  padding: 30px 0;
  margin-bottom: 22px;
  border-bottom: 1px solid #e1e9f0;
}

.page-header h1 {
  font-size: 30px;
  font-weight: 700;
}

.page-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0, 40, 90, 0.06);
}

/* ----------------------------------
   Contact Page
---------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #d4ddeb;
  border-radius: 6px;
  font-size: 16px;
}

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

/* Success/Error */
.form-success {
  background: #e8ffef;
  border-left: 4px solid #22b857;
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
}

.form-error {
  background: #ffe7e7;
  border-left: 4px solid #e64646;
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
}

/* ----------------------------------
   Responsive 
---------------------------------- */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f8fc;
    color: #1e3553;
}

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

/* ==========================
   BUTTONS
========================== */
.btn-primary {
    background: #0b63c7;
    padding: 12px 22px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #084c99;
}

.btn-outline {
    background: transparent;
    padding: 12px 22px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #0b63c7;
}

/* Bigger buttons (Hero, CTA) */
.big-btn {
    font-size: 17px;display: inline-block;
}

/* Section Title */
.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ==========================
   HERO SECTION
========================== */
.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-left {
    width: 55%;
}

.hero-right {
    width: 45%;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ==========================
   ABOUT SECTION
========================== */
.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-left,
.about-right {
    width: 50%;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ==========================
   WHY CHOOSE US
========================== */
.why-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.why-left,
.why-right {
    width: 50%;
}

.why-img {
    width: 100%;
    border-radius: 12px;
}

/* Why Points */
.why-points {
    list-style: none;
    padding: 0;
}

.why-points li {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

/* ==========================
   PROCESS SECTION
========================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 40px;
}

.p-box {
    text-align: center;
    background: rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 10px;
    color: #fff;
    backdrop-filter: blur(3px);
}

.p-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.p-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

/* ==========================
   SERVICES SECTION
========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* ==========================
   TESTIMONIAL SECTION
========================== */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
}

.test-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.test-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.stars {
    color: #ffb400;
    margin-bottom: 8px;
}

/* ==========================
   CTA SECTION
========================== */
.cta-final {
    text-align: center;
    padding: 60px 0;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {

    /* Hero */
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    /* About */
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-left, .about-right {
        width: 100%;
    }

    /* Why Choose Us */
    .why-flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .why-left, .why-right {
        width: 100%;
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    /* Testimonial */
    .test-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .process-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* SERVICES GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-box {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box .icon {
    font-size: 45px;
    margin-bottom: 12px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width:900px) {
    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}
/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 40px;
}

.price-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.price-card.active {
    background: linear-gradient(135deg, #0b63c7, #00376b);
    color: #fff;
}

.price-card.active .price-btn {
    background: #fff !important;
    color: #0b63c7 !important;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b63c7;
}

.price-card.active .price {
    color: #fff !important;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    line-height: 2;
    font-size: 16px;
}

.price-btn {
    margin-top: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    display: inline-block;
}

/* Responsive */
@media (max-width:900px) {
    .pricing-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

@media (max-width:1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}



