/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: #1a3064;
}

p {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Header Styles */
header {
  background-color: white;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.headcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: auto;
}

.logo img {
  height: auto;
  max-width:250px;
}

.contact-button .contact-us {
  background-color: #ffc905;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.contact-button .contact-us:hover {
  background-color: #fad85f;
  text-decoration: none;
}

/* Hero Section Styles */
.hero {
  background-color: #f0f4f8;
  padding: 60px 0;
  background-image: url("images/mainbanner.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 48, 100, 0.7);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 0 0 55%;
  color: white;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  color: white;
}

.imggrid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0px;
}

.imggrid-item {
  flex: 1 0 80px;
  margin: 10px;
  max-width: 200px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.imggrid-item:hover {
  transform: translateY(-5px);
}

.imggrid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background-color: white;
  padding: 20px;
}

.hero-form {
  flex: 0 0 40%;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1a3064;
  font-size: 24px;
}

.label {
  display: block;
  margin-bottom: 5px;
}
select option {
  color: black !important;
}

input {
  margin-bottom: 10px !important;
  width: 100%;
  padding: 8px;
}
select {
  width: calc(100%);
  margin-bottom: 10px;
  box-sizing: border-box;
  padding: 8px;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}

input[type="submit"] {
  background-color: #1e4b60 !important ;
  margin-top: 5px;
  color: #fff !important;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* Statistics Section Styling */
.statistics {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #0D3862;
  transform: skewY(-2deg);
  z-index: 1;
}

.statistics .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(13, 56, 98, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(13, 56, 98, 0.15);
}

.stat-card h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0D3862;
}

.stat-card p {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin: 0;
}

.stat-card.green::after {
  background-color: #2ecc71;
}

.stat-card.blue::after {
  background-color: #0D3862;
}

.stat-card.yellow::after {
  background-color: #FCCC04;
}

.stat-card.red::after {
  background-color: #e74c3c;
}

/* Custom icon for each card */
.stat-card::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
}

.stat-card.green::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232ecc71' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

.stat-card.blue::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230D3862' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.stat-card.yellow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FCCC04' d='M12 3L1 9l11 6 9-4.91V17h2V9L12 3z M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82z'/%3E%3C/svg%3E");
}

.stat-card.red::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e74c3c' d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

/* Mobile Responsive */
@media screen and (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .statistics {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-card h2 {
    font-size: 28px;
  }
  
  .stat-card p {
    font-size: 14px;
  }
}

/* Career Enhancement Section Styles */
.career {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.career-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.career-content {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.career h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.career p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
}

.career-image {
  flex: 1;
}

.career-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Program Fees Section Styling */
.program-fees {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.program-fees::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #0D3862;
  transform: skewY(-2deg);
  z-index: 1;
}

.program-fees .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.fees-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(13, 56, 98, 0.1);
  overflow: hidden;
  position: relative;
}

.admissions-banner {
  background-color: #FCCC04;
  color: #0D3862;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.admissions-banner::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FCCC04;
}

.fees-content {
  padding: 40px 30px;
}

/* Fee Highlights */
.fees-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.fee-highlight-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(13, 56, 98, 0.05);
  transition: transform 0.3s ease;
}

.fee-highlight-item:hover {
  transform: translateY(-5px);
}

.fee-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.fee-icon.green {
  background-color: rgba(46, 204, 113, 0.1);
}

.fee-icon.blue {
  background-color: rgba(13, 56, 98, 0.1);
}

.fee-icon.yellow {
  background-color: rgba(252, 204, 4, 0.1);
}

.fee-icon svg {
  width: 36px;
  height: 36px;
  stroke: #0D3862;
}

.fee-details h3 {
  font-size: 24px;
  color: #0D3862;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.fee-details p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Semester Fees */
.semester-fees {
  margin-bottom: 50px;
  position: relative;
  padding-top: 20px;
}

.semester-fees::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #FCCC04;
}

.semester-fees h2 {
  font-size: 26px;
  color: #0D3862;
  margin-bottom: 25px;
  font-weight: 700;
}

.semester-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.semester-column {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  background-color: rgba(13, 56, 98, 0.03);
  border: 1px solid rgba(13, 56, 98, 0.1);
  transition: all 0.3s ease;
}

.semester-column:hover {
  background-color: #0D3862;
}

.semester-column:hover h3,
.semester-column:hover p {
  color: white;
}

.semester-column h3 {
  font-size: 22px;
  color: #0D3862;
  margin: 0 0 8px 0;
  font-weight: 700;
  transition: color 0.3s ease;
}

.semester-column p {
  font-size: 15px;
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
}

/* Eligibility Criteria */
.eligibility-criteria {
  position: relative;
  padding-top: 20px;
}

.eligibility-criteria::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #FCCC04;
}

.eligibility-criteria h2 {
  font-size: 26px;
  color: #0D3862;
  margin-bottom: 25px;
  font-weight: 700;
}

.eligibility-criteria ul {
  padding-left: 20px;
  margin: 0;
}

.eligibility-criteria li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
}

.eligibility-criteria li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FCCC04;
}

/* Program Overview Section Styles */
.program-overview {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.8rem;
}

.section-header h2 span {
  color: #666;
  font-weight: normal;
  font-size: 1.4rem;
}

.overview-image {
  flex: 0 0 30%;
}

.semester-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.semester-col {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.semester-col h4 {
  margin-bottom: 15px;
  color: #1a3064;
}

.semester-col ul {
  list-style-type: none;
}

.semester-col ul li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.semester-col ul li:last-child {
  border-bottom: none;
}

/* Why Choose Section Styles */
.why-choose {
  padding: 60px 0;
  background-color: #f0f4f8;
  text-align: center;
}

.why-choose h2 {
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Why Choose Section Styles (continued) */
.feature-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  height: 60px;
  width: 60px;
  background-color: #f1f5fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a3064;
  font-size: 24px;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  font-size: 14px;
}

/* Accreditations Section Styles */
.accreditations {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.accreditations h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.accreditations > .container > p {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.accreditation-logos {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.accreditation-item {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  text-align: center;
}

.logo-circle {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.logo-circle img {
  max-width: 80%;
  max-height: 80%;
}

.accreditation-item p {
  max-width: 260px;
  color: #444;
  font-size: 16px;
  line-height: 1.4;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: #1a3c6e;
}

/* Faculty Section Styles */
h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1a365d;
}

.faculty-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}

.faculty-intro p {
  max-width: 500px;
  color: #4a5568;
  line-height: 1.6;
}

.faculty-slider-container {
  position: relative;
  overflow: hidden;
  margin: 0 -10px;
}

.faculty-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.faculty-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.faculty-content {
  display: flex;
  height: 100%;
}

.faculty-quote {
  flex: 1;
  padding: 25px;
  background: #fff;
}

.faculty-quote blockquote {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.faculty-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faculty-info {
  padding: 20px;
  background: #fff;
}

.faculty-name {
  font-size: 22px;
  margin-bottom: 5px;
  color: #1a365d;
}

.faculty-department {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 5px;
}

.faculty-slider-nav {
  text-align: center;
  margin-top: 30px;
}

.faculty-slider-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faculty-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e0;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faculty-slider-dot.active {
  background: #2b6cb0;
  transform: scale(1.2);
}

.faculty-slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
}

.faculty-slider-arrow {
  background: rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
}

.faculty-slider-arrow:hover {
  background: white;
}

/* Testimonials Section Styles */
.testimonials {
  padding: 60px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 10px;
}

.testimonials > p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
}

.testimonial-image {
  flex: 0 0 30%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 0 0 70%;
  padding: 20px;
  position: relative;
}

.testimonial-content h4 {
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.video-play {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #1a3064;
  font-size: 20px;
  cursor: pointer;
}

.video-play:hover {
  color: #ff5a5f;
}

/* FAQ Section Styles */
.faq {
  padding: 60px 0;
  background-color: #f0f4f8;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 16px;
  color: #1a3064;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

/* Footer Styles */
footer {
  background-color: #1a3064;
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff5a5f;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .accreditation-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-form {
    flex: 0 0 100%;
  }

  .hero-text {
    margin-bottom: 40px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .semester-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faculty-card {
    flex: 0 0 calc(50% - 20px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .accreditation-logo {
    flex: 0 0 45%;
  }
  
  .fees-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .semester-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .imggrid-item {
    flex: 1 0 calc(50% - 20px);
  }
  .imgstats-grid {
    grid-template-columns: 1fr;
  }

  .fees-content {
    padding: 30px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .accreditation-item {
    flex: 0 0 100%;
  }
  .section-header {
    flex-direction: column;
  }

  .overview-image {
    margin-top: 20px;
  }

  .testimonial-card {
    flex-direction: column;
  }

  .testimonial-image {
    flex: 0 0 200px;
  }

  .footer-content {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 20px;
  }

  .footer-links a {
    margin: 0 10px;
  }
  .career-container {
    flex-direction: column;
  }

  .career-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .faculty-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .faculty-intro p {
    margin-top: 15px;
  }

  .faculty-card {
    flex: 0 0 calc(100% - 20px);
  }

  .faculty-content {
    flex-direction: column-reverse;
  }

  .faculty-image,
  .faculty-quote {
    flex: none;
  }

  .faculty-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header h2 span {
    font-size: 1.2rem;
  }

  .semester-columns {
    grid-template-columns: 1fr;
  }

  .semester-grid {
    grid-template-columns: 1fr;
  }

  .accreditation-logo {
    flex: 0 0 100%;
  }
  
  .program-fees {
    padding: 60px 0;
  }
  
  .fees-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .semester-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .fee-highlight-item {
    padding: 15px;
  }
  
  .fee-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 15px;
  }
  
  .fee-details h3 {
    font-size: 20px;
  }
  
  .fee-details p {
    font-size: 14px;
  }
  
  .semester-column h3 {
    font-size: 20px;
  }
  
  .eligibility-criteria li {
    font-size: 15px;
  }
  
  .contact-button{
      font-size:14px;
  }
  
  .logo img {
  max-width:150px;
}
}
