/* ===== GENERAL RESET & TYPOGRAPHY ===== */

/* Box-sizing for all elements */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base HTML setup */
html {
  font-size: 100%; /* 16px default */
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #111;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Images responsive by default */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../img/group.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay for better text contrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Text container */
.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.hero .btn {
  background-color: #2B4FBD;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  color: #fff;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #0D0E09;
}
/* ===== EVENTS CAROUSEL SECTION ===== */
.events {
  background-color: #f8f9fa;
}

.events h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #2B4FBD;
}

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 10px;
}

.carousel-indicators [data-bs-target] {
  background-color: #2B4FBD;
}


/* ===== SOLUTION SECTION ===== */
.solution {
  background: url("../img/map-shape.png") center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
}

.solution h2 {
  color: #2B4FBD;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.solution p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.solution .section-divider {
  width: 80px;
  height: 4px;
  background-color: #2B4FBD;
  margin: 20px auto;
  border-radius: 2px;
}

.solution .icon-box {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.solution .icon-box i {
  font-size: 2.5rem;
  color: #2B4FBD;
  margin-bottom: 15px;
}

.solution .icon-box h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.solution .icon-box p {
  font-size: 1rem;
  color: #555;
}


/* ===== CONTACT SECTION ===== */
.contact {
  background-color: #2B4FBD;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact .btn {
  background-color: #fff;
  color: #2B4FBD;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
}

.contact .btn:hover {
  background-color: goldenrod;
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 1.5rem;
  }
}


/* ===== SERVICES SECTION ===== */
.service {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.service h2 {
  font-size: 2rem;
  color: #2B4FBD;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Service Cards */
.service .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.service .card i {
  font-size: 2rem;
  color: #2B4FBD;
  margin-bottom: 15px;
}

.service .card h5 {
  font-weight: bold;
  font-size: 1.2rem;
}

.service .card p {
  font-size: 1rem;
  color: #555;
}

/* Vision Statement */
.service .vision-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-top: 40px;
}

.service .vision-box h3 {
  color: #2B4FBD;
  font-weight: bold;
  margin-bottom: 15px;
}

.service .vision-box p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===== TRUST SECTION ===== */
.trust {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.trust h2 {
  font-size: 2rem;
  color: #2B4FBD;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Trust Cards */
.trust .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.trust .card:hover {
  transform: translateY(-5px);
}

.trust .card i {
  font-size: 2rem;
  color: #2B4FBD;
  margin-bottom: 15px;
}

.trust .card h5 {
  font-weight: bold;
  font-size: 1.2rem;
}

.trust .card p {
  font-size: 1rem;
  color: #555;
}


/* ===== COMMUNICATION SECTION ===== */
.communication {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
}

.communication .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.communication .text-column {
  flex: 1 1 400px;
}

.communication .text-column h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.communication .text-column p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.communication .text-column .btn {
  background-color: #2B4FBD;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 1rem;
  color: white;
  transition: background-color 0.3s ease;
}

.communication .text-column .btn:hover {
  background-color: indigo;
}

.communication .image-column {
  flex: 1 1 400px;
}

.communication .image-column img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .communication .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Development Section */
.development {
  width: 100%;
  height: 96vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.development .all {
  width: 90%;
  height: 80%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.development .all .dataset {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.development .all .dataset .text1 {
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.development .all .dataset .text1 .headng {
  font-size: 2.1rem;
  color: black;
  font-weight: 700;
  margin-bottom: 2rem;
}

.development .all .dataset .text1 .para {
  color: #2B4FBD;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: .9rem;
}

.development .all .dataset .text1 .head {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #2b4fbd;
  border-radius: 25%;
}

.development .rightall {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.development .rightall .faq {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.development .question {
  border-bottom: 1px solid #ccc;
}

.development .question h1 {
  padding: 1.5rem;
  font-size: .9rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.development .question h1 i {
  position: absolute;
  right: 30px;
  transition: transform .3s ease-in;
  font-size: 1.2rem;
}

.development .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .7s ease-out;
  margin-top: 1rem;
}

.development .answer p {
  font-size: .9rem;
  opacity: .6;
  font-weight: 500;
  padding-left: 1.4rem;
  line-height: 1.6;
}

.development .faq.active .answer {
  max-height: 300px;
}

.development .faq.active i {
  transform: rotate(90deg);
  color: #2B4FBD;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  color: #2B4FBD;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Partner Logos */
.partner-logo {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}




/* ===== FOOTER SECTION ===== */
footer {
  background-color: #111;
  color: #ccc;
  padding-top: 50px;
}

footer h5 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

footer hr {
  background-color: #2B4FBD;
  width: 50px;
  height: 3px;
  border: none;
  margin-bottom: 15px;
}

footer p,
footer a {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}

footer a:hover {
  color: #2B4FBD;
}

footer .social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #2B4FBD;
}

footer .footer-bottom {
  border-top: 1px solid #333;
  padding: 15px 0;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 20px;
}


.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  color: #2B4FBD;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Team Cards */
.team .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team .card:hover {
  transform: translateY(-5px);
}

.team .card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px auto;
  border: 4px solid #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.team .card h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.team .card p {
  font-size: 0.9rem;
  color: #555;
}

/* Modals for Team Bio */
.modal-content {
  border-radius: 12px;
}

.modal-header {
  background-color: #2B4FBD;
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.modal-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}


/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

  /* Global font adjustments */
  body {
    font-size: 14px;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  /* Hero Section */
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Carousel */
  .carousel-item img {
    max-height: 300px;
  }

  /* Solution Section */
  .solution h2 {
    font-size: 1.5rem;
  }
  .solution p {
    font-size: 1rem;
  }

  /* Communication Section */
  .communication .container {
    flex-direction: column;
    text-align: center;
  }
  .communication .image-column {
    margin-top: 20px;
  }

  /* Contact Section */
  .contact h2 {
    font-size: 1.5rem;
  }

  /* Services Section */
  .service .card {
    margin-bottom: 20px;
  }

  /* Trust Section */
  .trust .card {
    margin-bottom: 20px;
  }

  /* Team Section */
  .team .card {
    margin-bottom: 20px;
  }

  /* Partners Section */
  .partners .partner-logo {
    max-height: 60px;
  }

  /* Footer Section */
  footer .row {
    text-align: center;
  }
  footer .social-icons {
    justify-content: center;
  }
}
