body {
    background-color: #ffffff;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 1rem 1rem;
  font-family: 'Times New Roman', Times, serif;
  
  background: linear-gradient(135deg,  #0f2672, #3f64df);
}


/* ============================= */
/* CONTAINER */
/* ============================= */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;

  margin: 0 auto;
}

.hero-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;

    border-radius: 18px;
    padding: 70px 20px 40px 20px;
}

/* ============================= */
/* RIGHT SIDE */
/* ============================= */
.hero-right {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin: auto;

  box-shadow: 0 0 25px rgba(9, 44, 172, 0.2);
}

/* ============================= */
/* TEXT */
/* ============================= */
.hero-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  color: #ffffff;
}

.hero-tagline {
    font-size: 14px;
    color: #fff;
}

.hero-right-tagline {
    letter-spacing: 2px;
    padding-left: 10px;
    font-size: 20px;
    color: #0f2672;
    font-weight: 600;
}

.hero-right-heading {
    padding-left: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.2rem;
}

.hero-right-bulletpoints {
    margin-top: 15px;
    font-size: 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Badge */
.badge {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================= */
/* HERO BUTTONS */
/* ============================= */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.hero-button {
  padding: 0.7rem 1.6rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  background: white;
  box-shadow: 0 4px 12px rgb(2, 7, 32);
  transition: all 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 136, 255, 0.5);
}



/* ============================= */
/* INFO SECTION */
/* ============================= */
.info {
    margin-top: 20px;
    padding: 0.6rem 0.1rem;
    font-family: 'Times New Roman', Times, serif;

    max-width: 1100px;
    background: #f5f5f5;
    border-radius: 20px;
    
    align-self: center;
    text-align: center;
    
}

.info-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.info-heading {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.info-text {
    font-size: 16px;
}



/* ============================= */
/* SERVICES SECTION */
/* ============================= */
.services {
  padding: 3rem 1rem;
  font-family: 'Times New Roman', Times, serif;
}

.services-container {
    max-width: 1200px;
    justify-self: center;
}

.services-heading {
    text-align: center;
    color: #3157e0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 18px;
}

.services-subheading {
    text-align: center;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #0f2147;
    margin: 0 auto;
}

.services-sections {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.services-section {
    background-color: #2f55d4;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 4px rgb(3, 17, 54);
}

.services-section-heading {
    font-weight: bold;
}

.services-text {
    font-size: 18px;
    font-weight: 200;
}

.services-button {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;

    transition: 0.3s;
}

.services-button:hover {
    color: #08174b;
    transform: translateY(-2px);
}


/* ============================= */
/* TEAM SECTION */
/* ============================= */
.team-section {
  padding: 3rem 1rem;
  font-family: 'Times New Roman', Times, serif;

  max-width: 1300px;
  align-self: center;
}

/* ============================= */
/* HEADER */
/* ============================= */
.team-header {
  text-align: center;
  margin-bottom: 30px;
}

.team-subtitle {
  color: #3157e0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 18px;
}

.team-header h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #0f2147;
  margin: 0 auto;
}

/* ============================= */
/* GRID */
/* ============================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ============================= */
/* CARD */
/* ============================= */
.team-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 22px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

/* ============================= */
/* IMAGE AREA */
/* ============================= */
.team-photo {
  padding: 10px;
  width: 220px;
  border-radius: 28px;
  background: #edf0fb;

  display: flex;
  justify-self: center;
  flex-direction: column;

  position: relative;

}

/* ============================= */
/* AVATAR */
/* ============================= */
.avatar-circle {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: #3157e0;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 36px;
  font-weight: 700;

  margin-bottom: 30px;

  box-shadow:
    0 0 0 12px rgba(49,87,224,0.12);
}

.avatar-body {
  width: 150px;
  height: 120px;

  background: #243557;
  border-radius: 80px 80px 45px 45px;
}

/* ============================= */
/* CONTENT */
/* ============================= */
.team-content {
  padding-top: 28px;
}

.team-content h3 {
  font-size: 24px;
  color: #08214d;
  margin-bottom: 10px;
  line-height: 1.2;
}

.team-content p {
  color: #667791;
  font-size: 20px;
  margin-bottom: 20px;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 1200px) {

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-header h2 {
    font-size: 48px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .team-section {
    padding: 70px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-header {
    margin-bottom: 50px;
  }

  .team-header h2 {
    font-size: 38px;
  }

  .team-content h3 {
    font-size: 22px;
  }

  .team-content p {
    font-size: 18px;
  }

}


/* ============================= */
/* CONTACT SECTION */
/* ============================= */
.contact-section {
  padding: 3rem 1rem;
  font-family: 'Times New Roman', Times, serif;

  align-self: center;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;

  background: #fff;

  border-radius: 32px;

  padding: 50px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.05);
}

/* ============================= */
/* HEADING */
/* ============================= */
.contact-heading {
  text-align: center;

  color: #3157e0;

  font-size: 16px;
  font-weight: 700;

  letter-spacing: 4px;

  margin-bottom: 18px;
}

/* ============================= */
/* SUBTEXT */
/* ============================= */
.contact-subtext {
  text-align: center;

  color: #0f2147;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 60px;
}

/* ============================= */
/* FORM */
/* ============================= */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================= */
/* INPUT GROUP */
/* ============================= */
.input-group {
  width: 100%;
}

/* MESSAGE FULL WIDTH */
.input-group:last-of-type {
  grid-column: span 2;
}

/* ============================= */
/* INPUTS */
/* ============================= */
.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid #d8dee9;
  border-radius: 16px;

  background: #fff;

  padding: 0 24px;

  font-size: 18px;
  color: #000000;

  outline: none;

  transition: 0.25s ease;
}

.contact-form select {
  width: 100%;
  height: 58px;

  border: 1px solid #d8dee9;
  border-radius: 16px;

  background: #fff;

  padding: 0 20px;

  font-size: 16px;
  color: #42526b;

  outline: none;
  cursor: pointer;

  transition: 0.25s ease;
}

.contact-form select:focus {
  border-color: #3157e0;

  box-shadow:
    0 0 0 4px rgba(49,87,224,0.08);
}

/* INPUT HEIGHT */
.contact-form input {
  height: 48px;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 160px;

  padding-top: 22px;

  resize: vertical;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7c8797;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3157e0;

  box-shadow:
    0 0 0 4px rgba(49,87,224,0.08);
}

/* ============================= */
/* BUTTON */
/* ============================= */
.contact-button {
  grid-column: span 2;

  width: 100%;
  height: 60px;

  border: none;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    #5a73ff,
    #2447d7
  );

  color: white;

  font-size: 18px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow:
    0 14px 30px rgba(49,87,224,0.22);
}

.contact-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 40px rgba(49,87,224,0.3);
}

.contact-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================= */
/* HONEYPOT */
/* ============================= */
.honeypot {
  display: none;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 991px) {

  .contact-container {
    padding: 50px 40px;
  }

  .contact-subtext {
    font-size: 48px;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {

  .contact-section {
    padding: 60px 15px;
  }

  .contact-container {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .contact-subtext {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .input-group:last-of-type,
  .contact-button {
    grid-column: span 1;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }

  .contact-form input {
    height: 68px;
  }

  .contact-button {
    height: 72px;
    font-size: 20px;
  }
}


/* ============================= */
/* POPUP */
/* ============================= */
.contact-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.contact-popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;

    text-align: center;

    max-width: 350px;
    width: 90%;

    color: #111;

    animation: popupFade 0.3s ease;
}

.contact-popup-content h3 {
    margin-bottom: 15px;
}

.contact-popup-content p {
    margin-bottom: 20px;
}

#close-contact-popup {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;

    background: #111;
    color: white;

    cursor: pointer;

    transition: 0.3s;
}

#close-contact-popup:hover {
    opacity: 0.9;
}

@keyframes popupFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}