/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
}

/* HEADER */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAV MENU */
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav ul li {
  position: relative;           /* IMPORTANT: parent for absolute submenu */
  display: inline-block;
}

.nav ul li a {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 500;
  transition: 0.25s ease-in-out;
  padding: 6px 4px;
  display: inline-block;
}

.nav ul li a:hover {
  color: #007bff;
}

/* DROPDOWN MENU (hidden by default) */
.Dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 1500;
}

/* dropdown items */
.Dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 15px;
  color: #222;
  transition: background 150ms, color 150ms;
}

.Dropdown-menu li a:hover {
  background: #f0f5ff;
  color: #007bff;
}

/* SHOW DROPDOWN ON HOVER (desktop) */
.Dropdown:hover .Dropdown-menu,
.Dropdown.open .Dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* HEADER BUTTON */
.header-btn {
  background: #007bff;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.header-btn:hover {
  background: #0056c7;
}

/* SMALL SCREEN ADJUSTMENTS */
@media (max-width: 900px) {
  .nav ul { gap: 15px; }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }
  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* For small screens, allow click to open (using .open class added by JS) */
  .nav ul {
    gap: 10px;
  }
  .Dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
    border-radius: 6px;
    width: 100%;
    padding: 6px 0;
  }
  .Dropdown .Dropdown-menu {
    display: flex;
  }
}


/* ============================
   RESPONSIVE NAVIGATION
============================ */
@media (max-width: 900px) {
    .nav ul {
        display: none; /* hide for now (mobile menu can be added later) */
    }
}

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    width: 85%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.image-box img {
    width: 350px;     
    height: 350px;
    border-radius: 0;   
    object-fit: cover;  
}

.about-content {
    max-width: 550px;
}

.small-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f76ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin: 10px 0 20px;
}

.about-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}


.three-box-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px auto;
    width: 95%;
}

.box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 20px 40px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    width: 32%;
    position: relative;
    overflow: hidden;
}

.box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50% 0 20px 0;
}

.num-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
}

.blue { background: #C7EBFF; color: #0094FF; }
.sky  { background: #DDEAFF; color: #407BFF; }
.orange { background: #FFE1D6; color: #FF6A3D; }

.box-content h3 {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 600;
}

.box-content p {
    color: #555;
    margin: 0;
}

.about-two-section {
    background: #F2F7FF;
    padding: 80px 0;
}

.about-two-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-two-image img {
    width: 100%;
    max-width: 550px;
}

.about-two-content {
    max-width: 600px;
}

.section-mini-title {
    color: #0056FF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-two-content h2 {
    font-size: 40px;
    margin: 15px 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.about-two-content p {
    color: #555;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
}

.about-two-btn {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.about-two-btn span {
    background: #fff;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-section {
    width: 85%;
    margin: 80px auto;
    font-family: "Poppins", sans-serif;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 1200px;
}

.why-choose-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.why-list {
    margin-top: 20px;
    padding-left: 25px;
}

.why-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #444;
}

.stats-section {
    background: #fff5ef;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.stat-box {
    width: 90%;
    max-width: 1400px;
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(#0066f9, #002b73);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0px 0px 80px rgba(255, 150, 100, 0.5);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.label {
    color: #ffdd99;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.number {
    font-size: 50px;
    font-weight: bold;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background: #ffdd99;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

@media (max-width: 900px) {
    .stat-box {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}
/* ============================
   FOOTER STYLING
============================ */

.site-footer {
    background: #0b1e3f;   /* Dark navy blue */
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: "Poppins", sans-serif;
}

.site-footer .container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Headings */
.site-footer h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.site-footer h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffcc6e;
}

/* Text */
.site-footer p,
.site-footer li,
.site-footer a {
    font-size: 15px;
    color: #dbe2ff;
    line-height: 1.6;
}

.site-footer a {
    text-decoration: none;
    transition: 0.3s ease;
}

.site-footer a:hover {
    color: #ffcc6e;
}

/* List Style */
.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

/* Social Media */
.socials a {
    display: inline-block;
    margin-right: 12px;
    padding: 8px 14px;
    background: #143d7a;
    border-radius: 6px;
    color: #fff;
    transition: 0.3s;
}

.socials a:hover {
    background: #ffcc6e;
    color: #0b1e3f;
}

/* Copyright Bar */
.site-footer .copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1d355e;
    color: #aabbdd;
    font-size: 14px;
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials a {
        margin-bottom: 10px;
    }
}
.main-footer {
    background: #0658c0;
    color: #fff;
    padding: 60px 0 30px;
    background-image: url('images/footer-wave.png'); /* Optional wave background */
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0658c0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

.footer-gallery {
    width: 250px;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    color: #dcdcdc;
    border-top: 1px solid rgba(255,255,255,0.2);
}

