* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-container {
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
    position: relative;
}

/* Slider Wrapper */
.slides {
    display: flex;
    width: 500%; /* 5 images = 500% width */
    height: 100%;
    animation: slideAnimation 20s infinite; /* 20 seconds total cycle */
}

/* Individual Slide Style */
.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Overlay Text Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark shade for text readability */
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.content h1 {
    color: white;
    font-family: sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Slider Animation Logic */
@keyframes slideAnimation {
    0% { transform: translateX(0%); }
    15% { transform: translateX(0%); }   /* Image 1 Stay */
    20% { transform: translateX(-20%); } /* Slide to Image 2 */
    35% { transform: translateX(-20%); } /* Image 2 Stay */
    40% { transform: translateX(-40%); } /* Slide to Image 3 */
    55% { transform: translateX(-40%); } /* Image 3 Stay */
    60% { transform: translateX(-60%); } /* Slide to Image 4 */
    75% { transform: translateX(-60%); } /* Image 4 Stay */
    80% { transform: translateX(-80%); } /* Slide to Image 5 */
    95% { transform: translateX(-80%); } /* Image 5 Stay */
    100% { transform: translateX(0%); }  /* Back to Start */
}
/* Container Background */
.about-section {
    background-color: #fffdf5; /* Light cream background as seen in image */
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1100px; /* Text ko center mein rakhne ke liye width limit */
}

.about-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c7fb8; /* Deep blue color for the main text */
    font-size: 1.4rem;
    line-height: 1.8; /* Paragraph lines ke beech ki gap */
    font-weight: 400;
}

/* Specific highlight color (Lighter blue from image) */
.highlight {
    color: #00aeef; 
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #f0f4f7;
    padding: 40px 0;
}

/* SECTION 1: INTRO */
.section-intro {
    background-color: #fffdf5; /* Off-white / Cream background */
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1c5b96; /* Dark blue text */
}

.blue-highlight {
    color: #00aeef; /* Bright blue highlight */
    font-weight: 600;
}

/* CARDS COMMON STYLING */
.section-campus, .section-vision {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.card-wrapper {
    display: flex;
    background: #ffffff;
    max-width: 1150px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Logic for reversing the layout in Section 3 */
.row-reverse {
    flex-direction: row-reverse;
}

.card-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-image-area {
    flex: 1;
}

.card-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARD HEADERS */
.card-header {
    padding: 35px;
    color: #ffffff;
}

.blue-bg { background-color: #00aeef; }
.green-bg { background-color: #a3d133; }

.card-title {
    font-size: 2rem;
    font-weight: 700;
}

.card-body-area {
    padding: 40px;
    flex-grow: 1;
}

.card-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #777777;
    margin-bottom: 30px;
}

/* BUTTONS */
.btn-action {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.blue-btn { 
    background-color: #00aeef; 
    box-shadow: 0 8px 20px rgba(0,174,239,0.3); 
}

.green-btn { 
    background-color: #a3d133; 
    box-shadow: 0 8px 20px rgba(163,209,51,0.3); 
}

.btn-action:hover {
    transform: translateY(-3px);
}

.arrow {
    font-size: 1.2rem;
    margin-left: 5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .card-wrapper, .card-wrapper.row-reverse {
        flex-direction: column;
    }
    
    .card-image-area {
        height: 300px;
        order: -1; /* Always puts the image on top in mobile */
    }

    .card-title {
        font-size: 1.5rem;
    }
}
/* Container styling */
.faculty-card {
  display: flex;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 25px; /* Softer corners like your screenshot */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 40px auto;
}

/* Left Content Area */
.content-side {
  flex: 1.1; /* Gives the text a bit more room */
  display: flex;
  flex-direction: column;
}

.header-banner {
  background-color: #f7941e; 
  padding: 35px 45px;
}

.header-banner h2 {
  color: white;
  margin: 0;
  font-size: 38px;
  letter-spacing: 0.5px;
}

.text-body {
  padding: 45px;
  color: #7a7a7a;
  line-height: 1.7;
  font-size: 16px;
}

/* Button Styling */
.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  background-color: #f7941e;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 10px rgba(247, 148, 30, 0.3);
}

.read-more:hover {
  background-color: #e68512;
  transform: translateY(-2px);
}

.arrow {
  margin-left: 12px;
  font-size: 20px;
}

/* Right Image Area */
.image-side {
  flex: 0.9;
  overflow: hidden;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This keeps the aspect ratio perfect */
  display: block;
}

/* Responsive design */
@media (max-width: 850px) {
  .faculty-card {
    flex-direction: column;
    margin: 20px;
  }
  .image-side {
    height: 300px;
    order: -1; /* Image appears first on mobile */
  }
}
/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
}

.principal-section {
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}

/* The Wavy Top */
.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: -1;
}

.wave-container svg {
  width: 100%;
  height: auto;
}

/* Content Layout */
.content {
  margin-top: 100px; /* Adjust based on where you want the head to sit on the wave */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circular Image Container */
.profile-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff; /* Optional: adds a white border around the head */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title Styling */
.title {
  color: #003366; /* Deep blue color from screenshot */
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .title {
    font-size: 1.8rem;
    padding: 0 20px;
  }
  .profile-circle {
    width: 150px;
    height: 150px;
  }
}
/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
}

/* Header & Wave */
.header-container {
    position: relative;
    text-align: center;
    padding-top: 50px;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.wave-bg svg {
    width: 100%;
    height: 280px;
}

/* Profile Image */
.profile-section {
    margin-top: 40px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-title {
    color: #004282; /* Deep blue from screenshot */
    font-size: 32px;
    margin: 10px 0 40px;
}

/* Main Content Layout */
.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 80px;
    text-align: justify;
}

.salutation {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.highlight {
    color: #00aeef; /* Light blue link color */
    font-weight: 500;
}

.signature {
    margin-top: 50px;
    text-align: left;
    line-height: 1.3;
}

.signature p {
    margin: 5px 0;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 24px;
        padding: 0 15px;
    }
    .content-container {
        text-align: left;
    }
}