* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url("/aboutus/img/skyscraper2.jpg") no-repeat center center fixed;
    background-size: cover;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* header section */
.header {
    position: fixed;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 120px;
    display: flex;
    justify-content: space-between;
    background: rgba(189, 189, 189, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    border: 1px solid rgba(189, 189, 189, 0.29);
    z-index: 100;
    transition: all 0.3s ease;
}

.header-logo-img {
    cursor: pointer !important;
}

.logo {
    color: #0A3A63;
    font-size: 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    transition: color 0.3s;
}

.logo:hover {
    color: #00b4d8;
}

.navbar a{
    color: #00264D;
    font-size: 18px;
    text-decoration: none;
    margin-left: 35px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.navbar a:hover {
    border-bottom: 2px solid #fff;
    color: #245d88;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #cbd5d87c 10%, #a4e8ff80 30%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInLeft 1s ease-out;
}

.hero-text .highlight {
    color: #245d88;
    position: relative;
}

.hero-text p {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.8;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.blob-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6b89b8 0%, #4a6fa5 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.3;
    z-index: -1;
    top: -50px;
    right: -50px;
    animation: blobFloat 8s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 3px solid #6b89b8;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #6b89b8;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 100px 20px;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    color: #1e293b;
}

.section-title .highlight {
    color: #245d88;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6b89b8 0%, #4a6fa5 100%);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    flex-shrink: 0;
}

.arrow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b89b8 0%, #4a6fa5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(107, 137, 184, 0.3);
}

.mv-content h3 {
    font-size: 2rem;
    color: #245d88;
    margin-bottom: 20px;
}

.mv-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

/* Goals Section */
.goals-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.goals-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.goals-intro h2 {
    font-size: 3.5rem;
    color: #245d88;
    margin-bottom: 30px;
}

.goals-intro .highlight {
    color: #245d88;
}

.goals-subtitle {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #6b89b8;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.goal-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(50px);
}

.goal-item.aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.goal-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.goal-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a4e9ff 0%, #245d88 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.icon-circle svg {
    width: 50px;
    height: 50px;
}

.goal-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.goal-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #245d88 0%, #a4e9ff 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-button {
    background: white;
    color: #245d88;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .goals-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .goals-intro h2 {
        font-size: 2.5rem;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
    }

    .mv-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* FOOTER */
.footer {
  background: #070f1a;
  padding: 60px 0;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  width: 150px;
  filter: brightness(100%);
}

.footer-contact-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 6px 20px rgba(30,64,175,0.4);
  transition: 0.2s ease;
}

.footer-contact-btn:hover {
  transform: translateY(-3px);
}

/* LINK COLUMNS */
.footer-links {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-col h4 {
    color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin: 6px 0;
  font-size: 0.95rem;
  color: #94a3b8;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #0f172a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}

.footer-social a:hover {
  background: #1e40af;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 40px;
  }
}

.about-video-section {
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #f7f9fc;
}

.about-video-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.about-video-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #245d88;
}

.about-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
