/* Base Styles */
html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), 
              url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 1.5s ease-in-out;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 25px;
  color: #4fc3f7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #4fc3f7;
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #4fc3f7 0%, #003366 100%);
  z-index: 1;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, rgba(79, 195, 247, 0) 70%);
  z-index: 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeIn 1s ease-out;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #003366;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #4fc3f7 0%, #003366 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 150px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #4fc3f7;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 1s ease-out 0.2s forwards;
  opacity: 0;
}

/* About Card */
.about-card {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 51, 102, 0.15);
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-text p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
}

.about-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  background-color: #4fc3f7;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-text p:hover::before {
  background-color: #003366;
  transform: scale(1.2);
}

/* About Image */
.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95);
  transform-origin: center center;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.2) 0%, rgba(79, 195, 247, 0.1) 100%);
  transition: background 0.3s ease;
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.mv-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mv-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mv-card:hover {
  background-color: #003366;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mv-image {
  height: 250px;
  overflow: hidden;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mv-card:hover .mv-image img {
  transform: scale(1.05);
}

.mv-content {
  padding: 30px;
  transition: all 0.3s ease;
}

.mv-card:hover .mv-content {
  color: #fff;
}

.mv-content h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  color: #003366;
  text-align: center;
  font-weight: 600;
}

.mv-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #4fc3f7;
}

.mv-card:hover .mv-content h2 {
  color: #fff;
}

.mv-card:hover .mv-content h2::after {
  background-color: #fff;
}

.mv-content p {
  margin-bottom: 15px;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  color: #555;
}

.mv-card:hover .mv-content p {
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-text {
    padding: 40px;
  }
  
  .about-image {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    height: auto;
    min-height: 60vh;
    padding: 100px 30px;
  }
  
  .about-section {
    padding: 70px 0;
  }
  
  .about-text {
    padding: 40px 30px;
  }
  
  .about-image {
    height: 400px;
  }
  
  .mv-cards {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 25px;
    min-height: 50vh;
  }
  
  .about-card {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    height: 350px;
    min-height: auto;
  }
  
  .about-text {
    padding: 30px 25px;
  }
  
  .mv-card {
    max-width: 100%;
  }
  
  .mv-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 20px;
    min-height: 70vh;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-image {
    height: 300px;
  }
  
  .about-text {
    padding: 30px 20px;
  }
  
  .about-text p {
    padding-left: 20px;
    font-size: 0.95rem;
  }
  
  .mv-content {
    padding: 25px 20px;
  }
  
  .mv-image {
    height: 200px;
  }
}

@media (max-width: 400px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .about-text {
    padding: 25px 15px;
  }
  
  .about-image {
    height: 250px;
  }
  
  .mv-content {
    padding: 20px 15px;
  }
  
  .mv-image {
    height: 180px;
  }
  
  .section-title::after {
    width: 80px;
  }
  
  .section-title:hover::after {
    width: 100px;
  }
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}


html {
  scroll-behavior: smooth;
}


:focus {
  outline: 3px solid #4fc3f7;
  outline-offset: 3px;
}