* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #caf0f8;
  color: #03045e;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 10px 0;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1;
}

.brand-name {
  font-size: 1.2rem;
  color: #03045e;
}

.brand-sub {
  font-size: 0.75rem;
  color: #7d7d7d;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #03045e;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #0077b6;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  display: none;
  flex-direction: column;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #03045e;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 20px;
    display: none;
  }

  .navbar.active ul {
    display: flex;
  }
}
.hero {
  background-color: #f1f8fd;
  padding: 60px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #03045e;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text p {
  font-size: 1.1rem;
  color: #023e8a;
  max-width: 500px;
}

.hero-video {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
.about {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.about-container {
  max-width: 800px;
  margin: auto;
}

.about h2 {
  font-size: 2rem;
  color: #03045e;
  font-weight: 600;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  color: #023e8a;
  line-height: 1.6;
}
.why-choose-us {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  color: #03045e;
  margin-bottom: 10px;
}

.section-header p {
  color: #023e8a;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  margin-bottom: 10px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: #03045e;
  background: #e0e0e0;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  transition: transform 0.3s;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background-color: #f1f8fd;
  color: #023e8a;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  padding: 15px 20px;
  max-height: 200px;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}
.get-started {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.get-started .section-header h2 {
  font-size: 2rem;
  color: #03045e;
  margin-bottom: 10px;
}

.get-started .section-header p {
  color: #023e8a;
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.get-started-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.get-started-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.get-started-item i {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.get-started-item h3 {
  font-size: 1.2rem;
  color: #03045e;
  margin-bottom: 10px;
}

.get-started-item p {
  font-size: 0.95rem;
  color: #023e8a;
}

.cta-button {
  margin-top: 20px;
}

.btn-primary {
  background-color: #0077b6;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #023e8a;
}
/* FAQs Section */
  .faqs-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
  }
  .faqs-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  .faq-item {
    background: #f7f8fc;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  .faq-item summary {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 1rem;
    cursor: pointer;
    list-style: none;
  }
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  .faq-item p {
    padding: 0 1rem 1rem;
    color: #555;
    line-height: 1.6;
  }
/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
  }
  .partners-container .section-title {
    margin-bottom: 2rem;
    color: #0b5ed7;
  }
  .partners-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 160px;
  }
  .partner-item img {
    max-width: 200px;
    margin-bottom: 0.5rem;
  }
  .partner-item p {
    font-size: 0.9rem;
    color: #555;
  }
.team-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 20px;
  text-align: center;
}

.team-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #0077cc;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
}
  .contact-section {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b5ed7;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  color: #9ca3af; /* soft gray */
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.contact-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.contact-item img {
  width: 30px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(27%) sepia(80%) saturate(2850%) hue-rotate(203deg) brightness(95%) contrast(105%);
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.6;
}
.footer {
  background-color: #03045e;
  color: #ffffff;
  padding: 60px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 15px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #caf0f8;
}

.footer-brand small {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #90e0ef;
}

.footer-links,
.footer-legal {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-legal h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #00b4d8;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  text-decoration: none;
  color: #ade8f4;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.subscribe-form {
  display: flex;
  margin-top: 15px;
}

.subscribe-form input[type="email"] {
  padding: 10px;
  flex: 1;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.95rem;
}

.subscribe-form button {
  padding: 10px 20px;
  background-color: #74c300;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #5ba000;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe-form {
    width: 100%;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
    border-radius: 4px;
    margin: 5px 0;
  }
}
