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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  height: 90px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 20px; 
  transition: all 0.4s ease;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  list-style: none;
  gap: 100px; 
  transition: color 0.3s ease;
  margin: 0; 
  padding: 0; 
  margin-right: 10px;
}

.navbar li {
  width: auto; 
  height: 100%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar img {
  height: 60px;
  width: auto;
}

.navbar li a:hover {
  color: #266eb6;
}

nav.scrolled .navbar a {
  color: #333;
}

nav.scrolled .navbar a:hover {
  color: #266eb6;
}

.nav-logo {
  height: 70px;
  width: auto;
  z-index: 1001;
  display: block;
}

@media (max-width: 768px) {
  nav {
    justify-content: center; 
    padding: 0;
  }
  .nav-logo {
    position: absolute; 
    left: 20px;
    top: 20px;
    height: 40px;
  }
  .navbar {
    display: none; 
  }
  .navbar img {
    display: none;
  }
  .nav-logo img{
    height: 10px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: #007bff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 6px;
}

.hamburger span:nth-child(2) {
  top: 14px;
}

.hamburger span:nth-child(3) {
  top: 22px;
}

nav.scrolled .hamburger span {
  background-color: #333;
}

.hamburger.active span:nth-child(1) {
  top: 14px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 14px;
  transform: translateX(-50%) rotate(-45deg);
}

.off-screen-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(250, 252, 255, 0.98) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 480px;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  padding: 100px 0 0 0;
}

.off-screen-menu::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.5; }
}

.off-screen-menu.active {
  transform: translateX(0);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 997;
  opacity: 0;
  animation: fadeInOverlay 0.6s ease forwards;
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
  padding: 0 30px;
}

.menu-content a {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
  opacity: 0;
  font-family: 'Montserrat', sans-serif;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 18px 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.5px;
  text-align: left;
  background: rgba(0, 123, 255, 0.02);
  border: 1px solid rgba(0, 123, 255, 0.08);
}

.menu-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 123, 255, 0.15) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
}

.menu-content a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff, #0099ff);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.menu-content a:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  transform: translateX(10px);
  border-color: rgba(0, 123, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.15);
}

.menu-content a:hover::before {
  left: 100%;
}

.menu-content a:hover::after {
  width: 100%;
}

.menu-content a:nth-child(1) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.1s; 
}
.menu-content a:nth-child(2) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s; 
}
.menu-content a:nth-child(3) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s; 
}
.menu-content a:nth-child(4) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s; 
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-contact {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 30px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0.8) 100%);
}

.contact-prompt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-prompt a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.contact-prompt a:hover {
  color: #0056b3;
  border-bottom-color: #0056b3;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 123, 255, 0.04);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card:active {
  transform: scale(0.98);
  background: rgba(0, 123, 255, 0.08);
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.05rem;
}

.contact-number {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.social-items {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-items a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.4rem;
  background: white;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-items a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #4a9fff);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.social-items a:hover {
  color: #fff;
  transform: translateY(-5px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.social-items a:hover::before {
  width: 100%;
  height: 100%;
}

.social-items a i {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-top: 10px;
  }
  
  .off-screen-menu {
    max-width: 100%;
  }
  
  .menu-content {
    max-width: 100%;
  }
  
  .menu-content a {
    font-size: 1.7rem;
    padding: 16px 25px;
  }
  
  .menu-contact {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .menu-content a {
    font-size: 1.5rem;
    padding: 14px 20px;
  }
}
  
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid #e0e0e0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: #007bff;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: #0056b3;
  bottom: -100px;
  left: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #007bff;
  top: 50%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  color: #1a1a1a;
  animation: fadeInLeft 1s ease-out;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: #e3f2fd;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid #bbdefb;
  color: #007bff;
}

.hero-content h1 {
  font-size: 64px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;  
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  margin-bottom: 40px;
  color: #555;
  max-width: 540px;
}

.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeInRight 1s ease-out;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 123, 255, 0.2);
  border: 6px solid #e3f2fd;
  z-index: 3;
  animation: pulse 3s infinite ease-in-out;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.05);
  border: 2px solid rgba(0, 123, 255, 0.1);
}

.circle-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: rotate 30s linear infinite;
}

.circle-2 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 5%;
  z-index: 1;
  animation: float 8s infinite ease-in-out;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.stat-card {
  position: absolute;
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 4;
  animation: floatCard 6s infinite ease-in-out;
}

.stat-card.card-1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.stat-card.card-2 {
  bottom: 15%;
  left: -10%;
  animation-delay: 1s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.stat-card .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

@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);
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .main-image {
    width: 350px;
    height: 350px;
  }

  .circle-1 {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 968px) {
  .hero-section {
    max-height: auto;
    padding: 80px 5% 20px; 
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    margin: 0 auto 40px;
  }

  .hero-visual {
    height: 320px;
  }

  .main-image {
    width: 320px;
    height: 320px;
  }

  .circle-1 {
    width: 400px;
    height: 400px;
  }

  .stat-card.card-1 {
    right: 5%;
  }

  .stat-card.card-2 {
    left: 5%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 20px 10px;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-top: 25px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-visual {
    height: 260px; 
  }

  .main-image {
    width: 260px;
    height: 260px;
  }

  .circle-1 {
    display: none;
    width: 320px;
    height: 320px;
  }

  .circle-2 {
    width: 120px;
    height: 120px;
  }

  .stat-card {
    display: none;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .stat-card p {
    font-size: 12px;
  }
}

/* About Us Section */
.about-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.about-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}

.about-images {
  position: relative;
  height: 600px;
  opacity: 0;
  transform: translateX(-50px);
}

.about-section.animate .about-images {
  animation: slideInLeft 1s ease forwards;
}

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

.image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 1rem;
  height: 100%;
  position: relative;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.img-wrapper:hover::before {
  opacity: 1;
}

.img-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 119, 182, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1);
}

.img-main {
  grid-column: 1 / 10;
  grid-row: 1 / 8;
  opacity: 0;
  transform: scale(0.95);
}

.about-section.animate .img-main {
  animation: fadeInScale 0.8s ease 0.2s forwards;
}

.img-left {
  grid-column: 8 / 13;
  grid-row: 3 / 7;
  opacity: 0;
  transform: scale(0.95);
}

.about-section.animate .img-left {
  animation: fadeInScale 0.8s ease 0.4s forwards;
}

.img-right {
  grid-column: 3 / 10;
  grid-row: 7 / 13;
  opacity: 0;
  transform: scale(0.95);
}

.about-section.animate .img-right {
  animation: fadeInScale 0.8s ease 0.6s forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.img-right img {
  object-position: center 20%;
}

.img-wrapper:hover img {
  transform: scale(1.05);
}

.about-content {
  opacity: 0;
  transform: translateX(50px);
}

.about-section.animate .about-content {
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
}

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

.about-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.1), rgba(0, 180, 216, 0.1));
  color: #0077b6;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.about-content h2 {
  font-size: 2.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin-top: 1rem;
  border-radius: 2px;
}

.about-content p {
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  text-align: justify;
  color: #475569;
  margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .about-container {
    gap: 4rem;
  }

  .about-images {
    height: 500px;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 400px;
    order: 2;
  }

  .about-content {
    order: 1;
  }

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

  .about-content p {
    font-size: 1rem;  
    line-height: 1.7;
  }
}

/* Achievements Sections  */
.achievements {
  position: relative;
  width: 100%; 
  height: 550px;
  padding: 2rem 2rem;
  text-align: center;
  background-color: #f5f5f5;
  overflow: hidden; 
  margin: 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.achievements.animate {
  opacity: 1;
  transform: translateY(0);
}

.achievements h2{
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 20px;
}

.element-left,
.element-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%; 
  object-fit: contain; 
  z-index: 1;
}

.element-left {
  left: 0;
}

.element-right {
  right: 0;
}

.part1,
.stats {
  position: relative;
  z-index: 2; 
}

.part1{
  padding: 50px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
  z-index: 3;
  border-radius: 8px; 
}

.content-wrapper p {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 0;
  position: relative;
}

.stats p {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.stats > div {
  width: 20%;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  border-right: 2px solid #266eb6; 
}

.stats > div h3{
  font-size: 50px;
  color: #266eb6;
  margin-bottom: 25px;
  padding: 10px;
}

.stats > div:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .achievements {
    height: auto;
    padding: 2rem 1rem;
  }

  .element-left,
  .element-right {
    display: none;
  }

  .content-wrapper {
    padding: 0rem;
    text-align: center;
  }

  .part1{
    padding: 10px;
  }

  .stats{
    padding-top: 50px;
  }

  .stats > div {
    width: 100%;
    border-right: 1px solid #266eb6;
    padding: 0 1.5rem;
  }
  
  .stats > div h3{
    font-size: 25px;
    color: #266eb6;
    margin-bottom: 2px;
    padding: 10px;
  }

  .stats > div p{
    font-size: 10px;
  }

  .stats > div:last-child {
    border-bottom: none;
  }
}

/* Journey Section */
.timeline-section {
  padding: 80px 20px;
  background: white;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.timeline-section.animate {
  opacity: 1;
  transform: translateY(0);
}

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

.timeline-header {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
}

.timeline-section.animate .timeline-header {
  animation: fadeIn 0.8s ease forwards;
}

.timeline-header h2 {
  font-size: 30px;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.timeline-header .subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.timeline-wrapper {
  position: relative;
  padding: 60px 0;
}

.timeline-line {
  position: absolute;
  top: 95px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #2563eb;
}

.timeline-section.animate .timeline-progress {
  animation: progressLine 2s ease forwards 0.5s;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  position: relative;
  z-index: 1;
}

.timeline-item {
  text-align: center;
  opacity: 0;
}

.timeline-section.animate .timeline-item {
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-section.animate .timeline-item:nth-child(1) { animation-delay: 0.8s; }
.timeline-section.animate .timeline-item:nth-child(2) { animation-delay: 1s; }
.timeline-section.animate .timeline-item:nth-child(3) { animation-delay: 1.2s; }
.timeline-section.animate .timeline-item:nth-child(4) { animation-delay: 1.4s; }

.timeline-dot {
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid #2563eb;
  border-radius: 50%;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
}

.timeline-content {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.timeline-item:hover .timeline-content {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.year {
  display: inline-block;
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.description {
  font-size: 15px;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  flex-grow: 1;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-item:hover .icon-wrapper {
  background: #2563eb;
}

.icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.timeline-item:hover .icon-wrapper img {
  filter: brightness(0) invert(1);
}

@media (max-width: 968px) {
  .timeline-section {
    padding: 60px 20px;
  }

  .timeline-header h2 {
    font-size: 36px;
  }

  .timeline-header .subtitle {
    font-size: 14px;
  }

  .timeline-wrapper {
    padding: 40px 0 40px 50px;
  }

  .timeline-line {
    top: 50px;
    left: 5px;
    width: 2px;
    height: 95%;
    right: auto;
  }

  .timeline-progress {
    width: 100%;
    height: 0;
  }

  .timeline-section.animate .timeline-progress {
    animation: progressLineVertical 2s ease forwards 0.5s;
  }

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

  .timeline-item {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .timeline-dot {
    margin: 0;
    flex-shrink: 0;
    margin-left: -55px;
    margin-top: 8px;
  }

  .timeline-content {
    flex: 1;
  }

  .icon-wrapper {
    margin: 0 0 16px 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressLine {
  to { width: 100%; }
}

@keyframes progressLineVertical {
  to { height: 100%; }
}

/* Leadership Quotes Section  */
.quote-section {
  position: relative;
  padding: 80px 40px;
  background: #eeeded;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.quote-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.section-label {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 600;
}

.quote-container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 60px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.quote-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.quote-card.active {
  opacity: 1;
  transform: translateX(0);
}

.quote-card.slide-from-right {
  transform: translateX(100px);
}

.quote-card.slide-from-left {
  transform: translateX(-100px);
}

.quote-card.slide-out-left {
  transform: translateX(-100px);
}

.quote-card.slide-out-right {
  transform: translateX(100px);
}

.card-left {
  position: relative;
}

.leader-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e8e8e8;
}

.leader-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.quote-card:hover .leader-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.leader-details {
  margin-top: 20px;
}

.leader-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.leader-title {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.card-right {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-icon {
  font-size: 48px;
  color: rgba(0, 136, 255, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -8px;
}

.quote-title {
  font-size: 32px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.quote-text {
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.65);
  max-width: 680px;
  text-align: justify;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-button {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-button:hover::before {
  transform: translateX(0);
}

.nav-button:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-button svg {
  width: 18px;
  height: 18px;
  stroke: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.progress-indicators {
  display: flex;
  gap: 12px;
  flex: 1;
}

.progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.progress-bar.active.animate-right .progress-fill {
  transform: scaleX(1);
  transform-origin: left;
}

.progress-bar.active.animate-left .progress-fill {
  transform: scaleX(1);
  transform-origin: right;
}

.progress-bar.shrink-left .progress-fill {
  transform: scaleX(0);
  transform-origin: right;
}

.progress-bar.shrink-right .progress-fill {
  transform: scaleX(0);
  transform-origin: left;
}

.counter {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
  letter-spacing: 1px;
  min-width: 60px;
  text-align: right;
}

@media (max-width: 1200px) {
  .quote-card {
    grid-template-columns: 280px 1fr;
    gap: 50px;
  }

  .quote-title {
    font-size: 28px;
  }

  .quote-text {
    font-size: 14px;
  }
}

@media (max-width: 968px) {
  .section-label {
    top: 200px;
  }

  .container {
    padding-left: 0;
  }

  .quote-section {
    padding: 60px 30px;
  }

  .quote-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .leader-image-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .card-right {
    padding: 0;
  }

  .quote-title {
    font-size: 26px;
  }

  .quote-text {
    font-size: 14px;
    text-align: left;
  }

  .nav-button {
    display: none;
  }

  .carousel-controls {
    margin-top: 30px;
  }
}

@media (max-width: 640px) {
  .progress-bar {
    height: 5px;
  }

  .quote-section {
    padding: 50px 20px;
  }

  .leader-image-wrapper {
    max-width: 240px;
  }

  .quote-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .quote-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .progress-indicators {
    gap: 10px;
  }

  .carousel-controls {
    margin-top: 24px;
  }
}

/* Vision Mission */
.vision-mission {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  background: #ffffff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.vision-mission.animate {
  opacity: 1;
  transform: translateY(0);
}

.vm-title {
  font-size: 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a4bb8;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 80px;
}

.vm-section {
  position: relative;
}

.vm-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 24px;
}

.vm-heading {
  font-size: 48px;
  font-weight: 300;;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.vm-heading strong {
  font-weight: 700;
  color: #1a4bb8;
}

.vm-text {
  font-size: 18px;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
  color: #475569;
  text-align: justify;
  font-weight: 400;
}

.mission-points {
  list-style: none;
  margin-top: 40px;
}

.mission-points li {
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
  padding-left: 40px;
  position: relative;
}

.mission-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 2px;
  background: #1a4bb8;
}

.principles-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 80px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-top: 60px;
}

.principle {
  position: relative;
}

.principle-number {
  font-size: 72px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.principle-title {
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.principle-desc {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #64748b;
}

.accent-line {
  position: absolute;
  left: 40px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #1a4bb8 0%, transparent 100%);
  opacity: 0.2;
}

@media (max-width: 1024px) {
  .vm-grid {
    gap: 60px;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .vision-mission {
    padding: 60px 20px;
  }

  .vm-title {
    font-size: 20px;
    text-align: center;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }

  .vm-heading {
    font-size: 36px;
  }

  .vm-text {
    font-size: 16px;
  }

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

  .accent-line {
    display: none;
  }
}

/* Partners Section */
.partners {
  background-color: #FAFAFA;
  padding: 20px 0;
  text-align: center;
}

.partners .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partners h2 {
  margin-bottom: 12px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.partners h2::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 45px;
  height: 3px;
  background-color: #266EB6;
  border-radius: 2px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin-top: 30px;
  padding: 0;
  margin-bottom: 30px;
}

.partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.partner-logos a:hover {
  opacity: 0.75;
}

.partner-logos img {
  height: 42px;
  width: auto;
  object-fit: contain;
  max-width: 150px;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partners {
    padding: 35px 0;
  }
  
  .partners h2 {
    font-size: 19px;
  }
  
  .partner-logos {
    gap: 36px;
    margin-top: 26px;
  }
  
  .partner-logos img {
    height: 38px;
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  .partners {
    padding: 30px 0;
  }
  
  .partners .container {
    padding: 0 1.5rem;
  }
  
  .partners h2 {
    font-size: 18px;
  }
  
  .partner-logos {
    gap: 30px;
    margin-top: 24px;
  }
  
  .partner-logos img {
    height: 34px;
    max-width: 110px;
  }
}

/* Footer Section */
footer {
  background-color: #266EB6;
  color: white;
  background-image: url('./assets/footervector.png'); 
  background-repeat: no-repeat;
  background-position: right top;
  background-size: fill;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 5px;
}

.footer-logo p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: white;
}

.vertical-line {
  width: 1px;
  height: 140px;
  background-color: white;
}

.social-media {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

.social-media a {
  color: white;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #4a9fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-info {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 250px;
}

.contact-item i {
  margin-top: 5px;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.5;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  font-size: 0.85rem;
}

@media (max-width: 1110px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .footer-logo img {
    height: 70px;
  }

  .vertical-line {
    display: none;
  }

  .social-media {
    font-size: 1.5rem;
    justify-content: center;
    gap: 20px;
  }

  .footer-right {
    padding-left: 0;
    width: 100%;
  }

  .contact-info {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
  }

  .contact-item {
    max-width: 220px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-item i {
    font-size: 1rem;
    margin-top: 5px;
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    height: 60px;
  }

  .social-media {
    font-size: 1.3rem;
  }

  .copyright {
    font-size: 0.75rem;
    padding: 15px;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    overflow-x: auto;  
    gap: 25px;
  }

  .contact-item {
    min-width: 200px;
    flex-shrink: 0;
  }

  .contact-info-scroll {
    overflow-x: scroll; 
    -webkit-overflow-scrolling: auto; 
    scrollbar-width: thin;
    scrollbar-color: #aaa #eee; 
  }

  .contact-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    min-width: max-content;
  }

  .contact-item {
    min-width: 200px;
    flex-shrink: 0;
  }

  .contact-info-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .contact-info-scroll::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
  }

  .contact-info-scroll::-webkit-scrollbar-track {
    background-color: #eee;
  }
}