/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   SWIPER SLIDER
   ============================================ */
.swiper {
  width: 100%;
  height: 600px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  background-color: rgba(128, 128, 128, 0.5) !important;
  border-radius: 50% !important;
  width: 35px !important;
  height: 35px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(100, 100, 100, 0.8) !important;
}

/* Pagination Bullets */
.swiper-pagination-bullet {
  background-color: #a7e6ff !important;
  opacity: 0.7 !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  background-color: #2b3282 !important;
  opacity: 1 !important;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
  padding: 10px;
  background-color: #f5f5f5;
}

.intro-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #2b3282;
  padding: 30px 35px;
  border-radius: 15px;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.intro-line {
  width: 60px;
  height: 3px;
  background-color: #e74c3c;
  margin-bottom: 15px;
}

.intro-title {
  color: white;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.intro-content {
  flex: 1;
  padding: 20px 0;
}

.intro-content p {
  color: #2b3282;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.intro-content p strong {
  font-weight: 800;
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #fafafa 100%);
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.vision-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: 20px;
  padding: 60px 30px 35px;
  position: relative;
  box-shadow: 0 10px 30px rgba(43, 50, 130, 0.1);
  transition: all 0.4s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(43, 50, 130, 0.15);
}

.mission-card {
  background: linear-gradient(135deg, #fff5e6 0%, #ffecd1 100%);
}

.values-card {
  background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
}

.vision-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2b3282 0%, #4a5cb8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(43, 50, 130, 0.3);
  transition: all 0.4s ease;
}

.vision-card:hover .vision-icon {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(43, 50, 130, 0.4);
}

.vision-icon i {
  font-size: 32px;
  color: #ffffff;
}

.vision-content h3 {
  color: #2b3282;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.vision-content p {
  color: #2b3282;
  font-size: 19px;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.vision-content p strong {
  font-weight: 700;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 80px 20px;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.services-intro p {
  font-style: italic;
  font-size: 21px;
  line-height: 1.8;
  color: #2b3282;
  max-width: 900px;
  margin: 0 auto;
}

.services-intro strong {
  font-weight: 700;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(43, 50, 130, 0.08);
  transition: all 0.4s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(43, 50, 130, 0.12);
}

.service-item:nth-child(even) .service-content {
  order: 2;
}

.service-item:nth-child(even) .service-image {
  order: 1;
}

.service-content h3 {
  text-align: center;
  color: #2b3282;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

/* Dropdown Styles */
.dropdown-toggle {
  background: #2b3282;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(43, 50, 130, 0.3);
}

.dropdown-toggle:hover {
  background: #3d45a8;
  transform: scale(1.1);
}

.dropdown-toggle i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active i {
  transform: rotate(180deg);
}

.service-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.service-dropdown.active {
  max-height: 500px;
  padding-top: 20px;
}

.dropdown-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(43, 50, 130, 0.1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sub-service {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.sub-service:hover {
  background: linear-gradient(135deg, #2b3282 0%, #3d45a8 100%);
  border-color: #2b3282;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(43, 50, 130, 0.3);
}

.sub-service i {
  font-size: 28px;
  color: #2b3282;
  min-width: 35px;
  transition: color 0.3s ease;
}

.sub-service:hover i {
  color: #ffffff;
}

.sub-service span {
  color: #2b3282;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sub-service:hover span {
  color: #ffffff;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.leadership-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2b3282 0%, #e74c3c 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-title {
  color: #2b3282;
  font-size: 45px;
  font-weight: 800;
  letter-spacing: 2px;
}

.leader-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: center;
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(43, 50, 130, 0.12);
  transition: all 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(43, 50, 130, 0.18);
}

.leader-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leader-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(43, 50, 130, 0.7) 0%, transparent 100%);
  pointer-events: none;
}

.leader-info {
  padding: 10px 0;
}

.leader-name {
  color: #2b3282;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.leader-position {
  color: #e74c3c;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leader-role {
  color: #2b3282;
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8eeff;
}

.leader-bio {
  margin-top: 25px;
}

.leader-bio p {
  color: #2b3282;
  font-size: 19px;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 20px;
}

.leader-bio p:last-child {
  margin-bottom: 0;
}

.leader-bio p strong {
  font-weight: 800;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #4c1d95 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(167, 230, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.contact-logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.contact-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-slogan {
  color: #a7e6ff;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 2.8fr;
  gap: 30px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: #ffffff;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2b3282 0%, #3d45a8 100%);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(43, 50, 130, 0.3);
  transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0) scale(1.1); }
  25% { transform: translateX(-5px) scale(1.1); }
  75% { transform: translateX(5px) scale(1.1); }
}

.contact-icon i {
  font-size: 30px;
  color: #ffffff;
}

.contact-details h4 {
  color: #2b3282;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details p {
  color: #2b3282;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a {
  color: #2b3282;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-details a:hover {
  color: #e74c3c;
  transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet & Large Mobile */
@media (max-width: 992px) {
  .intro-container,
  .vision-container {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    grid-template-columns: 1fr !important;
  }
  
  .service-item:nth-child(even) .service-content,
  .service-item:nth-child(even) .service-image {
    order: 0;
  }
  
  .dropdown-content {
    grid-template-columns: 1fr;
  }
  
  .leader-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 35px;
  }
  
  .leader-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .leader-image img {
    height: 450px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-item {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .vision-card {
    max-width: 500px;
    margin: 0 auto;
    gap: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .intro-section,
  .leadership-section,
  .contact-section {
    padding: 60px 15px;
  }
  
  .services-section,
  .vision-section {
    padding: 60px 15px;
  }
  
  .intro-overlay {
    left: 20px;
    padding: 20px 25px;
    max-width: calc(100% - 40px);
  }
  
  .intro-title {
    font-size: 24px;
  }
  
  .intro-content {
    padding: 20px 10px;
  }
  
  .intro-content p,
  .services-intro p {
    font-size: 16px;
  }
  
  .service-item {
    padding: 30px 20px;
  }
  
  .service-content h3 {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .leader-card {
    padding: 30px 20px;
  }
  
  .leader-name {
    font-size: 28px;
  }
  
  .leader-position {
    font-size: 18px;
  }
  
  .leader-role,
  .leader-bio p {
    font-size: 16px;
  }
  
  .contact-title {
    font-size: 32px;
  }
  
  .contact-slogan {
    font-size: 20px;
  }
  
  .contact-logo {
    width: 100px;
    height: 100px;
  }
  
  .contact-item {
    padding: 30px 25px;
  }
  
  .contact-details h4 {
    font-size: 20px;
  }
  
  .contact-details p {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .intro-overlay {
    left: 15px;
    padding: 15px 20px;
    max-width: calc(100% - 30px);
  }
  
  .intro-title {
    font-size: 20px;
  }
  
  .intro-line {
    width: 50px;
    margin-bottom: 10px;
  }
  
  .intro-content p {
    font-size: 15px;
  }
  
  .vision-card {
    padding: 50px 25px 30px;
  }
  
  .vision-content h3 {
    font-size: 20px;
  }
  
  .vision-content p {
    font-size: 14px;
  }
  
  .vision-icon {
    width: 60px;
    height: 60px;
    top: -30px;
  }
  
  .vision-icon i {
    font-size: 28px;
  }
  
  .service-content h3 {
    font-size: 20px;
  }
  
  .sub-service span {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .leader-image img {
    height: 400px;
  }
  
  .leader-name {
    font-size: 24px;
  }
  
  .leader-position {
    font-size: 16px;
  }
  
  .leader-bio p {
    font-size: 15px;
  }
  
  .contact-title {
    font-size: 26px;
  }
  
  .contact-slogan {
    font-size: 18px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 26px;
  }
  
  .contact-details h4 {
    font-size: 18px;
  }
  
  .contact-details p {
    font-size: 15px;
  }
}

