.about-cta-title,
.principal-img-box,
.value-item {
  text-align: center;
}
.hero-section {
  background-color: #1f517a;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 15px;
}
.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.hero-subtitle,
.school-overview p {
  font-family: Inter, sans-serif;
  font-weight: 400;
}
.hero-subtitle {
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}
.badge,
.title {
  color: #1f517a;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}


.contact-info {
    background-color: #F9F9F6;
    font-family: 'Inter', sans-serif;
    padding-top: 50px;
    padding-bottom: 50px;
}

.badge-primary {
    display: inline-flex;
    border-radius: 9999px;
    background-color: #E3E8E9;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1F519A;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #1F517A;
    margin-bottom: 0.5rem;
}

.divider-gold {
    width: 80px;
    height: 4px;
    background-color: #C4A14F;
    border-radius: 9999px;
     margin: 0 0 1.5rem 0;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid #E8ECEF;
    border-radius: 12px;
    background: #fff;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 24px;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper, .icon-wrapper-alt {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper { background: #F0F3F2; }
.icon-wrapper-alt { background: #F9F5ED; }

.icon, .contact-icon { width: 28px; height: 28px; }
.icon { color: #6C9181; }
.contact-icon { color: #C4A14F; }

.text-content h3 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1F517A;
}

.text-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #595959;
    line-height: 1.5;
}

.text-content a {
    text-decoration: none;
    color: #595959;
    transition: color 0.3s;
}



.contact-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 900px;
    width: 100%;
}

.contact-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 32px;
    color: #1F517A;
    font-weight: 600;
    margin-bottom: 40px;
    font-style: normal;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width { grid-column: 1 / -1; }

label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color:#1F517A;;
}

label .required { color: #e74c3c; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1F517A;;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}

textarea { min-height: 160px; resize: vertical; }

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.submit-btn {
    background: #1F517A;;
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #173B59;;
    
}

.submit-btn svg { width: 18px; height: 18px; }

/* === Responsive Design === */
@media (max-width: 992px) {
    .form-row { grid-template-columns: 1fr; gap: 20px; }
    .contact-card { padding: 20px; gap: 12px; }
}

@media (max-width: 768px) {
    .contact-container { padding: 30px 25px; }
    
}

@media (max-width: 576px) {
    .section-title { font-size: 1.75rem; }
    .divider-gold { width: 60px; }
    input, select, textarea { padding: 12px 15px; font-size: 14px; }
    .submit-btn { width: 100%; justify-content: center; padding: 14px 24px; }
}


/* Social Icons Container */
.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Individual Icon Style */
.social-icon.facebook,
.social-icon.instagram {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  background-color: #1F517A;;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}
.social-icon.whatsapp {
     display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
    background-color: #29E870;
}

/* Hover Effects */
.social-icon:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

/* Optional: Different color per platform */
.social-icon.facebook:hover { background-color: #4B7392; }
.social-icon.instagram:hover { background-color:#4B7392; }
.social-icon.whatsapp:hover { background-color: #29E870; }

/* Responsive */
@media (max-width: 600px) {
  .social-icon {
    width: 35px;
    height: 35px;
  }
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}


.map-container {
  width: 100%;
  max-width: 100%;
  height: 500px;
  border-radius: 24px;
  background-color: #fff;

  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 8px;
  padding: 50px 20px;
}

