* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}
#formModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.form-box {
  background: #ffffff;
  padding: 30px;
  width: 92%;
  max-width: 420px;
  border-radius: 8px;
  position: relative;
}

.form-box h2 {
  margin-bottom: 15px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-box textarea {
  resize: none;
  height: 100px;
}

.form-box button {
  width: 100%;
  padding: 12px;
  background: #4d55cc;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.form-box button:hover {
  background: #3b42a5;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}


/* ================= NAV ================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #000000;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav img {
  height: 50px;
  width: auto;
  margin-right: 15px;
}

nav > div:first-child {
  display: flex;
  align-items: center;
  flex: 1;
}

nav h1 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #F5F7FF;
  border-bottom: 2px solid #F5F7FF;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  margin: 4px 0;
  border-radius: 2px;
}

/* ================= HERO ================= */
header {
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
              url(1.jpg) center/cover no-repeat;
  min-height: 100vh;
}

#section_1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
}

#section_1 h2 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: #F5F7FF;
}

#section_1 h5 {
  color: #D6DAF5;
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 500;
}

#section_1 h3 {
  color: #E3E6FF;
  margin: 20px 0;
  font-size: 1.8rem;
  font-weight: 600;
}

#section_1 h4 {
  color: #C9CEF5;
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
}

#contact_us_button {
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  background: #4D55CC;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 30px auto;
  font-size: 1rem;
  transition: background 0.3s ease;
}

#contact_us_button:hover {
  background: #3b42a5;
}

/* ================= SECTIONS ================= */
section {
  padding: 100px 10%;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

ol {
  max-width: 900px;
  margin: auto;
}

/* ================= SERVICES SECTION ================= */
section:first-of-type {
  text-align: center;
}

section:first-of-type ul {
  max-width: 900px;
  margin: auto;
  padding-left: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}

section:first-of-type li {
  margin: 12px 0;
  padding-left: 20px;
  color: #555;
}

section:first-of-type li b {
  color: #4d55cc;
  font-weight: 600;
}

section:first-of-type li:before {
  content: "• ";
  color: #4d55cc;
  font-weight: bold;
  margin-right: 10px;
  margin-left: -20px;
}

#section_4 {
  background: #f4f4f4;
  text-align: center;
}

#section_4 ul {
  max-width: 900px;
  margin: auto;
  padding-left: 0;
  list-style-position: inside;
}

#section_4 li {
  display: inline-block;
  padding: 0 15px;
  margin: 10px 0;
  text-align: center;
  list-style: none;
}

#section_4 li:before {
  content: "• ";
  color: #4d55cc;
  font-weight: bold;
  margin-right: 8px;
}

#section_4 h3 {
  color: #4d55cc;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  font-style: italic;
}

/* ================= LEGAL ================= */
.legal {
  max-width: 900px;
  margin: auto;
}

/* ================= PAGES ================= */
.page {
  padding-top: 140px;
  padding-left: 8%;
  padding-right: 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.page h2 {
  color: #2c2c2c;
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #4d55cc;
  padding-bottom: 12px;
  display: inline-block;
}

.page h3 {
  color: #4d55cc;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.page ol, .page ul {
  margin: 20px 0 20px 30px;
  line-height: 1.8;
}

.page li {
  color: #555;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.page ul[style*="list-style: none"] {
  margin-left: 0;
}

.page ul[style*="list-style: none"] li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #2c2c2c;
}

.page ul[style*="list-style: none"] li strong {
  color: #4d55cc;
}

/* ================= CONTACT PAGE ================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-info-section,
.contact-response-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #4d55cc;
}

.contact-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item h4 {
  color: #4d55cc;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-item p {
  color: #555;
  margin: 8px 0;
  font-size: 0.95rem;
}

.contact-item a {
  color: #4d55cc;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-response-section h3,
.contact-info-section h3 {
  color: #2c2c2c;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-response-section ul {
  margin: 15px 0 0 20px;
}

.contact-response-section ul li {
  color: #555;
  margin-bottom: 10px;
}

/* ================= FOOTER ================= */
footer {
  background: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 30px 10%;
}

footer a {
  color: #9fa5ff;
}

/* ================= TEAM SECTION ================= */
.team-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.team-member {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #4d55cc;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(77, 85, 204, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f2ff 100%);
}

.team-member h3 {
  color: #2c2c2c;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.team-member p:first-of-type {
  color: #4d55cc;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.team-member p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  section {
    padding: 80px 8%;
  }
}

@media (max-width: 900px) {
  #section_1 h2 {
    font-size: 2.2rem;
  }

  section {
    padding: 70px 6%;
  }

  nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    padding: 12px 5%;
    flex-wrap: wrap;
  }

  nav > div:first-child {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  nav h1 {
    font-size: 1.1rem;
  }

  nav img {
    height: 40px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #333333;
    position: absolute;
    top: 75px;
    right: 5%;
    padding: 20px 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    gap: 0;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 12px 0;
  }

  nav a {
    font-size: 0.9rem;
    display: block;
    padding: 8px 0;
  }

  #section_1 h2 {
    font-size: 1.9rem;
  }

  #section_1 h3 {
    font-size: 1.3rem;
  }

  #section_1 h5 {
    font-size: 0.95rem;
  }

  section {
    padding: 50px 6%;
  }

  .page {
    padding: 90px 6% 60px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-section,
  .contact-response-section {
    padding: 20px;
  }

  .team-section {
    grid-template-columns: 1fr;
  }

  section:first-of-type ul {
    text-align: left;
  }

  #section_4 li {
    display: block !important;
    padding: 10px 0 !important;
    text-align: left;
  }

  #section_4 li:before {
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 10px 4%;
  }

  nav h1 {
    font-size: 0.95rem;
    letter-spacing: 0;
  }

  nav img {
    height: 35px;
  }

  #section_1 {
    padding: 0 5%;
  }

  #section_1 h2 {
    font-size: 1.4rem;
  }

  #section_1 h3 {
    font-size: 1.1rem;
  }

  #section_1 h4 {
    font-size: 0.9rem;
  }

  #contact_us_button {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .form-box {
    width: 95%;
    padding: 20px;
  }

  section {
    padding: 40px 4%;
  }

  .page {
    padding: 80px 4% 50px;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  .page h2 {
    font-size: 1.4rem;
  }

  .page p {
    font-size: 0.9rem;
  }

  .team-member {
    padding: 20px;
  }

  .team-member h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 8px 3%;
  }

  nav h1 {
    font-size: 0.85rem;
  }

  nav img {
    height: 30px;
  }

  #section_1 h2 {
    font-size: 1.2rem;
  }

  #section_1 h3 {
    font-size: 0.95rem;
  }

  #section_1 h5 {
    font-size: 0.8rem;
  }

  #section_1 h4 {
    font-size: 0.8rem;
  }

  #contact_us_button {
    padding: 10px 25px;
    font-size: 0.85rem;
  }

  section {
    padding: 30px 3%;
  }

  .page {
    padding: 70px 3% 40px;
  }

  h2 {
    font-size: 1.2rem !important;
    margin-bottom: 20px;
  }

  ol, ul {
    margin: auto 10px;
  }

  .form-box {
    padding: 15px;
  }

  .form-box input,
  .form-box textarea {
    font-size: 14px;
    padding: 8px;
  }

  .contact-item h4 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.85rem;
  }

  .team-member {
    padding: 15px;
  }

  .team-member h3 {
    font-size: 1rem;
  }

  .team-member p {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  nav h1 {
    font-size: 0.75rem;
    white-space: normal;
  }

  nav img {
    height: 25px;
    margin-right: 8px;
  }

  #section_1 h2 {
    font-size: 1rem;
  }

  h2 {
    font-size: 1rem !important;
  }

  section {
    padding: 20px 2%;
  }

  .page {
    padding: 60px 2% 30px;
  }

  #contact_us_button {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  font-size: 30px;
}

.whatsapp-button:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}