.communication-section {
  background: #fdfaf0;
  padding: 40px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.communication-container {
  max-width: 900px;
  margin: auto;
}

.communication-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px 60px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  border: 1px solid rgba(163, 177, 138, 0.3);
  transition: 0.4s ease;
}

.communication-card:hover {
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.communication-symbol {
  font-size: 40px;
  margin-bottom: 20px;
  color: #8aa513;
}

.communication-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1f2937;
}

.communication-text {
  font-size: 17px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 18px;
}

.communication-text a {
  color: #8aa513;
  font-weight: 600;
  text-decoration: none;
}

.communication-text a:hover {
  text-decoration: underline;
}

.communication-sub {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 35px;
}

.communication-motto {
  margin-top: 20px;
}

.sanskrit {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #6b8e23;
  margin-bottom: 6px;
}

.translation {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .communication-card {
    padding: 40px 25px;
  }

  .communication-card h2 {
    font-size: 24px;
  }

  .communication-text {
    font-size: 15px;
  }
}

/* ============================= LEADERSHIP CONTACT SECTION =================   */

:root {
    --brand-cream: #fdfaf0;
    --brand-orange: #d97706;
    --brand-brown: #8d6e63;
    --glass-white: rgba(255, 255, 255, 0.95);
}

.contact-leadership-premium {
    background-color: var(--brand-cream);
    padding: 40px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container { max-width: 1100px; margin: 0 auto; }

/* Header Styling */
.section-intro { text-align: center; margin-bottom: 60px; }
.eyebrow { color: var(--brand-orange); font-weight: 800; letter-spacing: 3px; font-size: 0.8rem; }
.main-heading { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--brand-brown); }

/* Split Contact Section */
.primary-contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    margin-bottom: 80px;
    align-items: center;
}

.philosophy-icon { font-size: 2rem; margin-bottom: 15px; }
.contact-philosophy h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--brand-brown); }
.contact-philosophy p { line-height: 1.8; color: #555; }

.email-focus-card {
    background: var(--brand-cream);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f3e8d2;
}

.channel-tag { background: var(--brand-orange); color: white; padding: 5px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 800; }
.email-wrapper { margin: 25px 0; padding: 15px; border: 2px dashed #d9770650; border-radius: 10px; }
.email-wrapper a { color: var(--brand-orange); font-weight: 700; font-size: 1.1rem; text-decoration: none; }

/* Leadership Grid */
.leadership-header { text-align: center; margin-bottom: 40px; }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.leader-profile-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    text-align: center;
}

.leader-profile-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(217, 119, 6, 0.1); }
.leader-icon { font-size: 2rem; margin-bottom: 20px; }
.contact-pill { font-size: 0.65rem; color: var(--brand-orange); font-weight: 800; border: 1px solid; padding: 4px 10px; border-radius: 20px; margin-bottom: 15px; display: inline-block; }

.leader-profile-card h4 { font-size: 1.4rem; color: var(--brand-brown); margin: 10px 0 5px; }
.leader-profile-card h5 { color: var(--brand-orange); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.phone-link { display: block; font-size: 1.2rem; font-weight: 700; color: #333; text-decoration: none; margin: 20px 0; }

.leader-motto, .sanskrit-sub { font-size: 0.95rem; color: var(--brand-orange); font-weight: 600; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; }
.leader-motto span, .sanskrit-sub span { font-size: 0.8rem; color: #94a3b8; font-weight: 400; font-style: italic; }

/* =========Reponsive Design =========  */
@media (min-width: 1400px) {

  .container {
    max-width: 1200px;
  }

  .primary-contact-split {
    padding: 60px;
    gap: 50px;
  }

  .leader-profile-card {
    padding: 60px 50px;
  }

}

@media (max-width: 1399px) {

  .primary-contact-split {
    padding: 45px;
    gap: 35px;
  }

  .main-heading {
    font-size: 2.5rem;
  }

}

@media (max-width: 1199px) {

  .primary-contact-split {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }

  .leadership-grid {
    gap: 25px;
  }

  .leader-profile-card {
    padding: 40px 30px;
  }

  .main-heading {
    font-size: 2.2rem;
  }

}

@media (max-width: 991px) {

  .primary-contact-split {
    grid-template-columns: 1fr;
    padding: 35px;
    border-radius: 25px;
  }

  .email-focus-card {
    margin-top: 30px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-profile-card {
    padding: 35px 25px;
  }

  .main-heading {
    font-size: 2rem;
  }

}

@media (max-width: 767px) {

  .contact-leadership-premium {
    padding: 60px 20px;
  }

  .primary-contact-split {
    padding: 30px 25px;
    gap: 25px;
  }

  .contact-philosophy h3 {
    font-size: 1.5rem;
  }

  .email-focus-card {
    padding: 30px 20px;
  }

  .email-wrapper a {
    font-size: 1rem;
    word-break: break-word;
  }

  .leader-profile-card {
    padding: 30px 20px;
  }

  .phone-link {
    font-size: 1.05rem;
  }

}


@media (max-width: 480px) {

  .section-intro {
    margin-bottom: 40px;
  }

  .main-heading {
    font-size: 1.6rem;
  }

  .primary-contact-split {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .email-focus-card {
    padding: 25px 15px;
  }

  .leader-profile-card {
    padding: 25px 18px;
  }

  .leader-profile-card h4 {
    font-size: 1.2rem;
  }

  .leader-profile-card h5 {
    font-size: 0.8rem;
  }

  .phone-link {
    font-size: 1rem;
  }

}

 

/* ==================== INSTITUTIONAL FOUNDATION SECTION ==================   */

.office-section {
  /* background: linear-gradient(180deg, #f7f3e3, #f1edd6); */
   background-color: var(--brand-cream);
  padding: 10px 20px 20px;
  font-family: "Inter", system-ui, sans-serif;
}

.office-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.office-header {
  text-align: center;
  margin-bottom: 60px;
}

.office-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #d97706;
  margin-bottom: 6px;
}

.office-header .hindi {
  font-size: 18px;
  color: #6b7280;
}

/* Grid Layout */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

/* Left Column Cards */
.office-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.info-card h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

/* Right Global Card */
.global-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  position: relative;
}

.global-icon {
  font-size: 40px;
  color: #f97316;
  margin-bottom: 20px;
}

.global-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 20px;
}

.global-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 40px;
}

/* Motto */
.motto .sanskrit {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 6px;
}

.motto .translation {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .office-grid {
    grid-template-columns: 1fr;
  }

  .global-card {
    padding: 40px 25px;
  }

  .office-header h2 {
    font-size: 32px;
  }
}


/* ================== contact section ==================== */

.collab-section {
  background-color: var(--brand-cream);
  padding: 10px 20px 40px;
  font-family: "Inter", system-ui, sans-serif;
}

.collab-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Header */
.collab-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #b45309;
  margin-bottom: 6px;
}

.hindi-title {
  display: block;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 14px;
}

.collab-header p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 50px;
}

/* Grid */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}

/* Cards */
.collab-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.collab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.collab-icon {
  font-size: 30px;
  color: #f97316;
  margin-bottom: 14px;
}

.collab-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.collab-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hindi-label {
  font-size: 13px;
  color: #d97706;
  font-weight: 600;
}

/* Quote Card */
.collab-quote-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid #f97316;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
  max-width: 850px;
  margin: auto;
}

.quote-icon {
  font-size: 36px;
  color: #f97316;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sanskrit {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #b45309;
  margin-bottom: 6px;
}

.translation {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .collab-header h2 {
    font-size: 28px;
  }

  .collab-quote-card {
    padding: 35px 20px;
  }
}
