* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --primary: hsl(217, 89%, 35%);
      --primary-dark: hsl(217, 89%, 25%);
      --primary-light: hsl(210, 100%, 97%);
      --gold: hsl(45, 95%, 55%);
      --gold-dark: hsl(40, 90%, 45%);
      --foreground: hsl(220, 25%, 15%);
      --muted: hsl(220, 15%, 45%);
      --background: hsl(210, 20%, 98%);
      --card: hsl(0, 0%, 100%);
      --border: hsl(210, 25%, 90%);
      --success: hsl(142, 70%, 45%);
      --gradient-hero: linear-gradient(135deg, hsl(217, 89%, 35%) 0%, hsl(217, 80%, 45%) 50%, hsl(210, 70%, 50%) 100%);
      --shadow-card: 0 4px 20px -2px hsla(217, 89%, 35%, 0.08);
      --shadow-card-hover: 0 12px 30px -4px hsla(217, 89%, 35%, 0.15);
    }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      margin:0;
      padding:0;
      overflow-x:hidden;
    }
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
    }
    .container {
      width:100%;
      max-width:1200px;
      margin:auto;
      padding:0 15px;
      box-sizing:border-box;
    }
    img{
      max-width:100%;
      height:auto;
    }
    .logo a {
      text-decoration: none !important;
      color: var(--primary-dark);
    }
    .hero {
      background: var(--gradient-hero);
      color: white;
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(10px);
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .hero p {
      font-size: 1.125rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }
    .section {
      padding: 3rem 0;
    }
    .section-alt {
      background: var(--card);
    }
    .section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 3rem;
    }
    .section-tag {
      display: inline-block;
      color: var(--primary);
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      color: var(--foreground);
      margin-bottom: 1rem;
    }
    .section-desc {
      color: var(--muted);
    }
    .director-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
    }
    .director-card {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      align-items: center;
      background: var(--card);
      border-radius: 1.5rem;
      padding: 3rem;
      box-shadow: var(--shadow-card-hover);
      border: 1px solid var(--border);
    }
    .director-image {
      position: relative;
    }
    .director-avatar {
      background: linear-gradient(135deg, #0d47a1, #1976d2);
      border-radius: 24px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.18);
      overflow: hidden;
      width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 24px;
  margin: 0 auto;
    }
    .director-avatar-img {
      width: 110%;
      height: 110%;
      object-fit: cover;
      border-radius: 24px;
    }
    .director-badge {
      position: absolute;
      bottom: -1rem;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: var(--foreground);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.875rem;
      white-space: nowrap;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .director-info h2 {
      font-size: 2rem;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }
    .director-title {
      color: var(--primary);
      font-weight: 600;
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }
    .director-bio {
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.8;
    }
    .director-credentials {
      display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  justify-content:center;
  margin-bottom: 20px;
    }
    .credential {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: var(--primary-light);
      border-radius: 50px;
      font-size: 0.875rem;
      color: var(--primary);
      font-weight: 500;
      max-width:100%;
  font-size:0.8rem;
  text-align:center;
    }
    .director-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .director-stat {
      text-align: center;
      padding: 1rem;
      background: var(--background);
      border-radius: 0.75rem;
    }
    .director-stat-number {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Playfair Display', serif;
    }
    .director-stat-label {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }
    .faculty-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .faculty-card {
      background: var(--card);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      transition: all 0.4s ease;
      position: relative;
    }
    .faculty-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-card-hover);
    }
    .faculty-card:hover .faculty-overlay {
      opacity: 1;
    }
    .faculty-image-wrapper {
      position: relative;
      overflow: hidden;
    }
    .faculty-image {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}
.faculty-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4fd8, #1e7bff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(30, 115, 255, 0.35);
  border: 6px solid #ffffff;
  margin: 0 auto;
  margin-top: 40px;
}
.faculty-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.faculty-avatar-text {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
.faculty-avatar-img[src]:not([src=""]) + .faculty-avatar-text {
  display: none;
}
    .faculty-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
      padding: 2rem 1.5rem 1rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .faculty-quote {
      color: white;
      font-style: italic;
      font-size: 0.875rem;
      line-height: 1.5;
    }
    .faculty-subject-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gradient-hero);
      color: white;
      padding: 0.375rem 1rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .faculty-info {
      padding: 1.5rem;
    }
    .faculty-name {
      font-size: 1.375rem;
      color: var(--foreground);
      margin-bottom: 0.25rem;
    }
    .faculty-role {
      color: var(--primary);
      font-weight: 500;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .faculty-details {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .faculty-detail {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--muted);
    }
    .faculty-detail-icon {
      width: 32px;
      height: 32px;
      background: var(--primary-light);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .faculty-specializations {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .specialization {
      padding: 0.375rem 0.75rem;
      background: var(--background);
      border-radius: 0.375rem;
      font-size: 0.75rem;
      color: var(--muted);
      border: 1px solid var(--border);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .feature-card {
      background: var(--card);
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-card-hover);
    }
    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--primary-light);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1.25rem;
    }
    .feature-title {
      font-family: 'Inter', sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }
    .feature-desc {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .cta {
      background: var(--gradient-hero);
      color: white;
      padding: 5rem 0;
      text-align: center;
    }
    .cta h2 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 1rem;
    }
    .cta p {
      opacity: 0.9;
      max-width: 500px;
      margin: 0 auto 2rem;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    .btn-primary {
      background: white;
      color: var(--primary);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: white;
    }
    /* Footer */
    .footer {
      background: var(--foreground);
      color: white;
      padding: 3rem 0;
      text-align: center;
    }
    .footer p {
      opacity: 0.7;
    }
    i.fa-solid {
  margin-right: 6px;
}
.feature-icon i,
.faculty-detail-icon i {
  font-size: 1.2rem;
  color: #2563eb;
}
.hero-badge i,
.director-badge i {
  margin-right: 8px;
}
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @media (max-width: 992px) {
      .director-card {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .director-avatar {
        max-width: 200px;
      }
      .director-credentials {
        justify-content: center;
      }
    }
    @media (max-width: 768px) {
      .hero {
        padding: 3rem 0;
      }
      .section {
        padding: 3rem 0;
      }
      .director-card {
        padding: 2rem;
      }
      .director-stats {
        grid-template-columns: repeat(3, 1fr);
      }
      .faculty-grid {
        grid-template-columns: 1fr;
      }
      .director-avatar{
    max-width:220px;
    margin:0 auto;
}
.director-card{
    padding:1.5rem;
}
.director-info h2{
  font-size: 1.2rem;
}
.director-title{
  font-size: 1rem;
}
.director-bio{
  font-size: 0.8rem;
}
.faculty-avatar{
    width:110px;
    height:110px;
}
.faculty-image{
    height:180px;
}
.section{
padding:2.5rem 0;
}
.section-header{
margin-bottom:2rem;
}
.container{
padding-left:15px;
padding-right:15px;
}
.container p{
font-size:0.8rem;
};
.section{
padding:2rem 0;
}
.director-stats{
    grid-template-columns:repeat(2,1fr);
    gap:0.8rem;
  }
  .director-stats{
  grid-template-columns:repeat(auto-fit,minmax(80px,1fr));
}
.section-desc{
  font-size:0.8rem;
}
.faculty-quote{
  font-size:0.7rem;
}
.faculty-detail span{
  font-size:0.8rem;
}
.faculty-subject-badge{
  font-size:0.6rem;
}
    }