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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 80px;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.logo-circle {
  width: 40px;
  height: 40px;
  background-color: #3b4a87;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
  color: #666 !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3b4a87 !important;
}

.btn-primary {
  background-color: #3b4a87;
  border-color: #3b4a87;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2d3660;
  border-color: #2d3660;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 1rem;
}

.hero-brand {
  font-size: 3.5rem;
  font-weight: 700;
  color: #3b4a87;
  margin-bottom: 3rem;
}

.image-card {
  background-color: white;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.placeholder-image {
  width: 100%;
  height: 200px;
  background-color: #e9ecef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 1.2rem;
}

.description-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  margin-top: 2rem;
}

/* Vision & Mission Section */
.vision-mission-section {
  background-color: #3b4a87;
  color: white;
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.section-title strong {
  font-weight: 700;
  display: block;
}

.vision-content, .mission-content {
  padding: 2rem;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.quote-icon-right {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  margin-top: 1rem;
}

.vision-text, .mission-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: white;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #3b4a87;
}

.service-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 250px;
  overflow: hidden;
}

.service-image .placeholder-image {
  height: 100%;
  border-radius: 0;
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.learn-more-btn {
  background-color: #3b4a87;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  background-color: #3b4a87;
  padding: 4rem 0;
  color: white;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
}

.contact-card {
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #3b4a87;
  font-weight: 500;
}

.contact-form .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #3b4a87;
  box-shadow: 0 0 0 0.2rem rgba(59, 74, 135, 0.25);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: #2d3660;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-text {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-brand {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .contact-heading {
    font-size: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
