* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
     padding-top: 90px;
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}
/* Scrollbar Styling */
:root {
  --bg-dark: #020617;
  --bg-soft: #f8fafc;
  --blue-main: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-soft: #eff6ff;
  --indigo: #4f46e5;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --white: #ffffff;
  --border-soft: #e2e8f0;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.25);
  --shadow-card: 0 5px 18px rgba(15, 23, 42, 0.12);
  --radius-xl: 1.5rem;
}

/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background-color: #ffffff;
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease, transform 0.1s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-light-pill {
  background-color: #ffffff;
  color: var(--blue-dark);
}

.btn-light-pill:hover {
  background-color: #e5edff;
  box-shadow: var(--shadow-card);
}

.btn-outline-pill {
  background-color: transparent;
  border: 1px solid #e5edff;
  color: #e0ecff;
}

.btn-outline-pill:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

.section-soft {
  background-color: var(--bg-soft);
}

.section-dark {
  background: linear-gradient(to bottom right, #020617, #0f172a);
}

.section-cta {
  background: linear-gradient(to right, #1d4ed8, #4f46e5);
}

/* Hero About */
.hero-about {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-about {
    padding: 6rem 0 7rem;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.09;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.hero-bg-1 {
  width: 23rem;
  height: 23rem;
  background-color: rgba(59, 130, 246, 0.4);
  top: -5rem;
  right: -3rem;
}

.hero-about-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 44rem;
}

.hero-about-title {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hero-about-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-about-title {
    font-size: 3.5rem;
  }
}

.hero-about-subtitle {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: #dbeafe;
}

.hero-about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Mission Section */
.mission-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 3.5rem;
  }
}

.mission-image-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.mission-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.mission-text {
  max-width: 34rem;
}

.mission-list {
  margin-top: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.96rem;
  color: var(--text-main);
}

.mission-check {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background-color: #dbeafe;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem;
}

/* Section Headings */
.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.section-tag-blue {
  color: #2563eb;
}

.section-tag-light {
  color: #93c5fd;
}

.section-title {
  margin: 1rem 0 0.8rem;
  font-size: 2rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-title-light {
  color: #f9fafb;
}

.section-subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.section-subtitle-light {
  color: #cbd5f5;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.2rem;
}

.stat-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Values */
.values-grid {
  display: grid;
  gap: 1.9rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.value-card {
  text-align: center;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.3rem;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #1d4ed8;
}

.value-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.value-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 0.8rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.7), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 2.7rem;
  margin-bottom: 1.8rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0.2rem;
  top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background-color: #1d4ed8;
  border: 2px solid #eff6ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

.timeline-content {
  background-color: rgba(15, 23, 42, 0.75);
  border-radius: 1rem;
  padding: 0.9rem 1.1rem 1.1rem;
  backdrop-filter: blur(12px);
}

.timeline-year {
  font-size: 0.9rem;
  font-weight: 700;
  color: #93c5fd;
}

.timeline-title {
  margin: 0.3rem 0 0.2rem;
  font-size: 1.05rem;
  color: #f9fafb;
}

.timeline-text {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.9rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.team-card {
  font-size: 0.94rem;
}

.team-image-wrap {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.team-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.9rem;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 0.5rem;
}

.team-social-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background-color: rgba(248, 250, 252, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 0.9rem;
  text-decoration: none;
}

.team-social-icon:hover {
  background-color: rgba(248, 250, 252, 0.3);
}

.team-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.team-role {
  margin: 0.15rem 0;
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 600;
}

.team-bio {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Awards */
.awards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.award-card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  border: 1px solid var(--border-soft);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
}

.award-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.award-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.award-org {
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.award-year {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: #2563eb;
  font-weight: 600;
}

/* CTA */
.cta-inner {
  text-align: center;
  max-width: 40rem;
}

.cta-title {
  margin: 0 0 0.8rem;
  font-size: 2.1rem;
  color: #ffffff;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.4rem;
  }
}

.cta-text {
  margin: 0 0 1.8rem;
  font-size: 1rem;
  color: #dbeafe;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Footer */
.footer {
  background-color: #020617;
  color: #e5e7eb;
  padding: 1.8rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: linear-gradient(to bottom right, #1d4ed8, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/*footer*/

.site-footer {
    background: linear-gradient(135deg, #0a0f24, #111b3b);
    color: #d9e4ff;
    padding: 70px 20px 35px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* BRAND SECTION */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c7e8;
    margin-bottom: 20px;
}

/* SUBSCRIBE SECTION */
.footer-subscribe {
    margin-top: 25px;
}

.subscribe-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #39466a;
    background: #1a2547;
    color: white;
    outline: none;
    transition: 0.3s;
}

.subscribe-input:focus {
    border-color: #6c92ff;
}

.subscribe-button {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5e2bff, #3d94ff);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #3a20ff, #2d7aff);
}

.subscribe-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #93a3c7;
}

/* LINKS SECTION */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #3b82ff;
    display: block;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b5c6e4;
    text-decoration: none;
    transition: 0.25s;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 45px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-left p {
    margin: 0;
    color: #92a3ca;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.footer-legal a {
    color: #b7cbff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b2647;
    padding: 10px;
    transition: 0.3s;
    filter: grayscale(30%);
}

.social-icon:hover {
    transform: scale(1.15);
    background: #3b82ff;
    filter: grayscale(0%);
    box-shadow: 0px 0px 12px rgba(59, 130, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-columns {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
