/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;700&display=swap");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #002147;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s;
}

.header.scrolled {
  background-color: #002147;
}

.top-bar {
  background-color: #F1F1F1;
  padding: 8px 0;
  color: #000;
  font-size: 13px;
  border-bottom: 1px solid #e8ebf0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #222bca;
}

.contact-item i {
  color: #222bca;
  font-size: 14px;
}

.top-bar-button {
  display: inline-block;
  background-color: #222bca;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 30px;
  gap: 20px;
  position: relative;
  z-index: 999;
}

.main-nav-wrapper {
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 999;
}

.nav-menu {
  justify-content: center;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: #000;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #000;
  font-weight: 700;
  transition:
    color 0.3s,
    background-color 0.3s;
}

.nav-menu a:hover {
  color: #222bca;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 10px 0;
}

.nav-menu li:hover .submenu {
  display: block;
}

.submenu li {
  padding: 8px 20px;
}

.submenu li:hover {
  background-color: #222bca;
  color: #fff;
}

.submenu li:hover a {
  color: #fff;
}

.nav-menu li.has-submenu::after {
  content: "▼";
  margin-left: 5px;
  font-size: 12px;
}

.search-btn {
  display: inline-block;
  background-color: #222bca;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 5px;
  font-weight: 700;
}

.cta-btn,
.slide-cta,
.btn-orange {
  display: inline-block;
  background-color: #ff5733;
  color: #002147;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.cta-btn:hover,
.slide-cta:hover,
.btn-orange:hover {
  transform: translateY(-2px);
  background-color: #e64a2e;
}

.btn-link {
  display: inline-block;
  color: #222bca;
  font-weight: 700;
  margin-top: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 4px 0;
}

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  padding-top: 105px; /* height of top-bar (~40px) + main-nav (~65px) */
  box-sizing: border-box;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transition: opacity 1s;
}

.slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 15%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: #ffffff;
  max-width: 560px;
  padding: 0 20px;
  margin-left: 80px;
}

.slide-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 24px;
}

.slide-cta {
  background-color: #ff8c00;
  color: #fff;
}

.slide-cta:hover {
  background-color: #e57000;
}

@media (max-width: 1024px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .slide-content {
    margin-left: 30px;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-section {
  background-color: #000;
  color: #ffffff;
  padding: 80px 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: center;
}

.guide-form {
  display: grid;
  gap: 18px;
}

.guide-form label {
  color: #ccc;
  font-size: 14px;
  font-weight: 700;
}

.guide-form input {
  padding: 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #111;
  color: #fff;
}

.services-section .eyebrow,
.blog-feature .eyebrow,
.values-section .eyebrow,
.consult-section .eyebrow,
.projects-section .eyebrow,
.faq-section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222bca;
  margin-bottom: 14px;
  font-weight: 700;
}

.services-home {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.blog-feature-grid,
.blog-grid,
.values-grid {
  display: grid;
  gap: 30px;
}

.blog-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  margin: 16px 0 12px;
  font-size: 22px;
  color: #002147;
}

.blog-content p {
  color: #5a6175;
  line-height: 1.7;
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Heading order: Our Values (bold h2) on top, eyebrow below */
.values-main-heading {
  font-size: 42px;
  font-weight: 800;
  color: #002147;
  margin-bottom: 10px;
}

.values-subheading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #222bca;
  margin-bottom: 50px;
}

.value-card {
  background: #ffffff;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(34, 43, 202, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(34, 43, 202, 0.15);
}

.value-icon {
  background: linear-gradient(135deg, #222bca 0%, #1a1f8a 100%);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.value-icon i {
  font-size: 32px;
  color: #ffffff;
}

.value-card-inner {
  padding: 28px 32px 32px;
  flex: 1;
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #002147;
}

.value-card p {
  color: #575757;
  line-height: 1.8;
  font-size: 15px;
}

.consult-section {
  position: relative;
  background-image: url("images/slides/nextgen.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.consult-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 100, 0.82) 0%, rgba(20, 40, 160, 0.75) 100%);
  z-index: 0;
}

.consult-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.consult-grid > div {
  max-width: 620px;
}

.consult-section .eyebrow {
  color: #ff5733 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.consult-section h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.consult-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
}

.projects-section {
  background-image: url("images/projects-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.projects-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* adjust as needed */
}

.projects-copy {
  max-width: 560px;
  color: #fff;
  text-align: center;
}

.faq-grid {
  display: grid;
  gap: 18px;
}

.faq-grid details {
  background-color: #f2f2f2;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
  color: #000;
  font-weight: 700;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.faq-grid summary:hover {
  color: #222bca;
}

.faq-grid details[open] summary {
  background-color: #222bca;
  color: #fff;
}

.faq-grid p {
  padding: 0 24px 22px;
  color: #333;
  line-height: 1.8;
}

.blog-home .blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.category-tag {
  display: inline-block;
  background-color: #ffd700;
  color: #002147;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.text-center {
  text-align: center;
}

/* Sections */
.section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.welcome {
  display: flex;
  align-items: center;
  gap: 50px;
}

.welcome-text {
  flex: 1;
}

.welcome-img {
  flex: 1;
}

.stats {
  background-color: #f8f9fa;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-item h3 {
  font-size: 48px;
  color: #ffd700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-item {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 20px;
}

.featured-plans {
  background-color: #f8f9fa;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.plan-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.plan-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.plan-content {
  padding: 20px;
}

.plan-content h4 {
  margin-bottom: 10px;
}

.plan-price {
  color: #ffd700;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background-color: #002147;
  color: #fff;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
}

.testimonial-item {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-item p {
  font-size: 18px;
  margin-bottom: 20px;
}

.stars {
  color: #ffd700;
  margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
  background-color: #ffd700;
  color: #002147;
  text-align: center;
  padding: 60px 0;
}

.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
  padding: 40px 0 0;
}

.newsletter {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  background-color: #222bca;
}

.newsletter h3 {
  color: #ffffff;
  font-size: 24px;
}

.newsletter p {
  color: #ffffff;
  max-width: 600px;
}

.newsletter input {
  width: 100%;
  max-width: 520px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.943);
  color: #000;
}

.newsletter input::placeholder {
  color: #0c0c0c !important;
}

.newsletter button {
  background-color: #ff5733;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.branding {
  background-color: #222bca;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.branding p {
  max-width: 640px;
  color: #cccccc;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
  transition: color 0.3s;
  color: #cccccc;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
  color: #ffd700;
}

.footer-col a {
  color: #cccccc;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background-color: #222bca;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #0056b3;
}

/* Contact column smaller font */
.footer-main .footer-col:nth-child(4) ul {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #999;
}

.footer-bottom a {
  color: #999;
  margin-left: 20px;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1000;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a,
  .submenu a {
    color: #000;
  }

  .hamburger {
    display: flex;
  }

  .welcome {
    flex-direction: column;
  }

  .guide-grid,
  .consult-grid,
  .stats-grid,
  .services-grid,
  .plans-grid,
  .blog-feature-grid,
  .values-grid,
  .blog-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }

  .top-bar-button {
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}