@import url('https://fonts.googleapis.com/css2?family=Cause:wght@100..900&family=Maven+Pro:wght@400..900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

:root {
  --primary-color: #033E8A;
  --secondary-color: #033E8A;
  --accent-color: #CCA04D;
  --background-color: #F5F5F5;
  --text-color: #333333;
  --font-size: 16px;
  --line-height: 1.5;


}

.font {
  font-family: "Maven Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.top-bar {

  color: white;
  text-align: center;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  background-color: white;
}

.social-link {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--primary-color);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;

}

.hide-logo {
  opacity: 0;
  width: 10px;
}

.navbar-brand img {
  width: 230px;
}

.abs-logo {
  position: absolute;
  left: 17px;
  top: 17px;
  z-index: 10;
  width: 360px;
}

.logo2 img {
  width: 260px;

}

.top-bar-left ul {
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin: 0px;
  padding: 0px;
  font-size: 18px;
}

.top-bar-right {
  background-color: var(--primary-color);
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0px;
  padding: 0px;
  font-size: 16px;

}

.top-bar-right a {
  text-decoration: none;
  color: var(--background-color);
  font-size: 18px;

}

.top-bar-right i {

  color: var(--primary-color);
  font-size: 16px;
  background-color: var(--background-color);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

/* Smooth scroll for ID-based navigation */
html {
    scroll-behavior: smooth;
}

/* Navbar link */
.nav-link {
    position: relative;

}

/* Hover effect */
.nav-link:hover {
    color: #e63946;
}

/* "New" badge */
.nav-link .new {
    background: #e63946;
    color: #fff;
    font-size: 10px;
        margin-top: -10px;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 1px;
    animation: pulse 1.5s infinite;
    /* position: absolute;
    top: -13px;
    right: -6px; */
}
.white-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff;
    color: #222222; /* Text color */
    font-weight: 600;
    border: 2px solid white; /* Border color */
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Pulse animation for New badge */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Target section spacing fix (for fixed header) */
#events {
    scroll-margin-top: 100px; /* adjust based on header height */
}


.navbar {

  background-color: white !important;
  padding: 10px 0px !important;
}

.phone-navbar {
  background-color: white !important;
  position: fixed !important;
  top: 0px !important;
  width: 100%;
  z-index: 9999 !important;
}


.main-header,
.second-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}


.header2 {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  background: white;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.6px);
  -webkit-backdrop-filter: blur(9.6px);
  padding: 6px 0px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);


}

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

.header2 nav {
  padding: 5px;
}



.nav-links i {
  font-size: 12px;
  color: #62A4D2;
}

.nav-link {
  font-size: 16px !important;
  color: var(--text-color) !important;

}

.nav-links ul li a {
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.3s ease;
}


.nav-links ul li a:hover {
  color: #007bff;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  padding-right: 30px;
  background: var(--primary-color);
  color: var(--background-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.main-btn .btn-text {
  white-space: nowrap;
}

.main-btn .btn-icon {
  width: 36px;
  height: 36px;
  background: var(--background-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}


.main-btn:hover .btn-icon {
  transform: translateX(5px);
  background: #e9f4ff;
}


/* Navbar */
.custom-navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0d1117;
  display: flex;
}

/* Nav item */
.custom-item {
  position: relative;
}

/* Nav link */
.custom-link {
  color: var(--primary-color);
  text-decoration: none;

  font-size: 15px;
}

/* Arrow */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Dropdown box */
.custom-dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.35s ease;
}

/* Dropdown links */
.custom-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.custom-link li a svg {
  transition: transform 0.3s ease;
}

.custom-dropdown li a:hover {
  background: #f0f6ff;
  color: #007bff;
}

/* Align text + icon */
.custom-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron default state */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Rotate chevron when dropdown is active */
.custom-item:hover .custom-link svg {
  transform: rotate(180deg);
}

/* Hover effects */
.custom-item:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-item:hover .arrow {
  transform: rotate(-135deg);
}


.poster {
  background-color: #033E8A;
  height: 740px;

}
.npo{
  background-color: #86A08F;
  width: max-content;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 19px;
}

.poster-wrapper {
  background-color: white;
  height: 740px;
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 90px;
  align-items: start; 
}

.poster-left img {
  width: 100%;
  height: 740px;
  object-fit: cover;
}

.poster-right {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 0px 30px;
  background-color: var(--primary-color);
  border-radius: 0px 0px 70px 0px;
  height: 740px;

}

.poster-content {
  margin-top: 100px;
  color: white;
}

.tagline {
  display: inline-block;
  padding: 3px 16px;
  background: rgba(237, 208, 126, 0.15);
  color: #EDD07E;
  border: 1px solid #EDD07E;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

.tagline2 {
  display: inline-block;
  padding: 3px 16px;
  background: var(--accent-color);
  color: var(--background-color);
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  font-weight: 500;
}

.poster-content h1 {
  font-size: 55px;
  line-height: 1.1;
}

.shine {
  font-size: 3em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  display: inline-block;
  position: relative;

  /* Gradient overlay */
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.675) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.522) 100%);
  background-size: 200% auto;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Animation */
  animation: shine 2s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 150% center;
  }

  100% {
    background-position: -150% center;
  }
}

.poster-content p {
  font-size: 20px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.773);

}

.cta .call-btn {
  text-decoration: none;
  padding: 10px 20px;
  color: var(--primary-color);
  border-radius: 5px;
  background-color: white
}

.read-btn {
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  background-color: var(--accent-color)
}

.cta {
  margin-top: 30px;
  display: flex;
  gap: 20px;

}

.download-btn {
  text-decoration: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid white;
}

.cta .call-btn2 {
  text-decoration: none;
  padding: 10px 20px;
  color: var(--background-color);
  border-radius: 5px;
  background-color: var(--primary-color)
}



.download-btn2 {
  text-decoration: none;
  padding: 10px 20px;
  color: var(--primary-color);
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.point-main {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: start;
}

.point-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 130px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.671);
  padding: 10px;
  border-radius: 5px;

}

    .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.point-box p {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.point-box img {
  width: 80px;
  object-fit: contain;
  aspect-ratio: 3/2;
}



.about-section {
  padding: 80px 0px;

}

.heading-section {
  text-align: center;
  margin-bottom: 80px;
}

.heading-section h2 {
  font-size: 116px;
  color: var(--primary-color);
  margin: 0px;
  padding: 0px;
  opacity: 4%;
  word-spacing: 1px !important;
  margin-top: -70px;
}

.heading-section h3 {
  font-size: 46px;
  color: var(--primary-color);
  margin: 0px;
  padding: 0px;
  margin-top: -70px;
  font-weight: bold;

}

.about-image {
  position: relative;
  text-align: center;
}

.about-image img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  object-position: bottom;
  border-radius: 20px;

}

.detail-box {
  position: absolute;
  bottom: -50px;
  right: 30px;
  background-color: rgb(255, 255, 255);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  text-align: left;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  transform-origin: top right;
  animation: slideLR 2.5s ease-in-out infinite;

}

@keyframes slideLR {
  0% {
    transform: translateX(20px);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(20px);
  }
}

.detail-box p {
  padding: 0px;
  margin: 0px;
  font-size: 19px;
  color: var(--accent-color);
}

.detail-box h3 {
  padding: 0px;
  margin: 0px;
  font-size: 43px;
  color: var(--primary-color);
}

.detail-box i {
  height: 60px;
  width: 60px;
  background-color: var(--primary-color);
  color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border-radius: 50px;

}




/* Media Card */
.timeline-media {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: absolute;
  width: 200px;
  height: 160px;
  top: -70px;
  background-color: white;
  left: 0px;
  padding: 16px;
  animation: slideSwing 2.5s ease-in-out infinite;
}

@keyframes slideSwing {
  0% {
    transform: translateX(20px) rotate(6deg);
  }

  50% {
    transform: translateX(-20px) rotate(-6deg);
  }

  100% {
    transform: translateX(20px) rotate(6deg);
  }
}

.timeline-media img {
  width: 100%;
  height: 100%;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: #edd07e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Timeline Content */
.timeline-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.timeline-item {
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.timeline-item .time {
  font-weight: 700;
  color: #edd07e;
  display: block;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #555;
  line-height: 1.6;
}


.about-des p {

  color: #20265B !important;
  font-size: 18px !important;


}

.about-des span {

  color: #a6a6a6 !important;

}

.about-des span {

  color: #fff !important;

}

.ab-text {
  color: var(--primary-color);
  font-size: 33px;
  font-weight: 500;

}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.tick-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #edd07e;
  color: #fff;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.course-section {
  background-color: var(--primary-color);
  padding: 80px 0px;
  border-radius: 70px 0px 70px 0px;
}

.course-section h1 {
  color: white;
  font-size: 45px;
}




.heading-section2 h2 {
  font-size: 116px;
  color: white;
  margin: 0px;
  padding: 0px;
  opacity: 4%;
  word-spacing: 1px !important;
  margin-top: -70px;
}

.heading-section2 h3 {
  font-size: 46px;
  color: white;
  margin: 0px;
  padding: 0px;
  margin-top: -70px;
  font-weight: bold;

}

.course-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  background-color: white;
  padding: 5px;
}

.course-section .course-content p {
  color: rgba(255, 255, 255, 0.618);
  font-weight: 300;
  font-size: 20px !important;

}

.course-content h2 {
  color: var(--accent-color);
  font-size: 39px;
}

.course-points {
  color: #fff;
}

.course-points h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
}

.tick-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-points li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.618);
  ;
}

.tick-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: #edd07e;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.university-line {

  padding-left: 15px;
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 19px;
}

.course-section .cta a {
  font-weight: 300;
}


.lead {
  color: rgba(219, 219, 219, 0.718) !important;
}


.course-stats-card {
  background: white;

  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.stat-item:last-child {
  border: none;
}

.feature-box {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;

  transition: 0.3s;
}

.feature-box strong {
  font-size: 22px;
  font-weight: 600;
}

.feature-box p {
  font-size: 19px;
  font-weight: 400;
  color: #7f7f7f;
}

.feature-box:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-gold);
}

.listed-box h3 {
  font-size: 29px;
  color: white;
}

.listed-box p {
  font-weight: 300;
  font-size: 19px;
  color: #e9f4ffb5;
}

.listed-box li {
  font-weight: 300;
  font-size: 19px;
  color: #e9f4ffb5;
}

.feature-box i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: block;
}

.btn-apply {
  background: var(--primary-blue);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-brochure {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  margin-left: 10px;
}


.faculty-section {
  padding: 80px 20px;
  background: #033E8A;
  border-radius: 70px 0px 70px 0px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.container {
  max-width: 1200px;
  margin: auto;
}






.faculty-group {
  margin-bottom: 60px;
}

.faculty-group h3 {
  font-size: 26px;
  color: white;
  margin-bottom: 30px;
  border-left: 4px solid #edd07e;
  padding-left: 12px;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.faculty-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  width: 330px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-8px);
}

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

.faculty-info {
  padding: 20px;
  text-align: center;
}

.faculty-info h4 {
  font-size: 23px;
  color: #0b2c4d;
  margin-bottom: 10px;

}

.faculty-info span {
  display: block;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.faculty-info p {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

.faculty-note {
  margin-top: 40px;
  padding: 22px;
  background: #0b2c4d;
  color: #ffffff;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
}

.read-more a {
  background-color: #033E8A;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none
}





.review-o {
  padding: 80px 0px;
}



.line {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.sm-line {
  width: 60px;
  height: 4px;
  background: #edd07e;
  border-radius: 2px;
}

/* Review Card */
.review-box {
  padding: 20px;
}

.review {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  min-height: 260px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-image {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #edd07e;
}

.user-info h4 {
  font-size: 17px;
  margin-bottom: 3px;
  color: #0b2c4d;
}

.review-date {
  font-size: 12px;
  color: #888;
}

/* Stars */
.review-rating {
  margin-top: 5px;
}

.review-rating i {
  color: #f4c150;
  font-size: 14px;
  margin-right: 2px;
}

/* Review text */
.review-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  margin-top: 10px;
}

/* Owl controls */
.owl-nav {
  margin-top: 30px;
}

.owl-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #0b2c4d !important;
  font-size: 18px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.owl-nav button:hover {
  background: #edd07e !important;
  color: #000 !important;
}

/* Dots */
.owl-dots {
  margin-top: 20px;
}

.owl-dot span {
  background: #ccc !important;
}

.owl-dot.active span {
  background: #edd07e !important;
}


.main-btn:hover {
  background: #fff;
  color: #0b2c4d;
}


.site-footer {
  background: var(--primary-color);
  color: #e5e5e5;
  padding: 80px 0 0;
  border-radius: 70px 0px 0px 0px;
  font-size: 15px;
}

.footer-logo {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  width: 200px;
}

.footer-logo img {
  width: 100%;
}


.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}



/* Boxes */
.footer-box h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #EDD07E;
}

.footer-box p {
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.footer-box .highlight {
  color: #EDD07E;
  font-weight: 500;
}

/* Lists */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-weight: 300;
}

.footer-box ul.links li a {
  color: #e5e5e5;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 300;

}

.footer-box a {
  color: #e5e5e5;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 300;

}

.footer-box ul.links li a:hover {
  color: #EDD07E;
  padding-left: 5px;
}

/* Button */
.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #EDD07E, #f6e39a);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237, 208, 126, 0.4);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(237, 208, 126, 0.2);
  font-size: 14px;
  color: #aaa;
}

.phone-navbar {
  display: none !important;
}


.faq-section {
  padding: 80px 0px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: #f7f9fc;
}

/* ===== HEADING ===== */
.heading-section {
  text-align: center;
  margin-bottom: 50px;
}




/* ===== ACCORDION ===== */
.connect-data {
  margin-top: 40px;
}

.accordion {
  --bs-accordion-border-width: 0;
}

/* ITEM */
.accordion-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* HEADER BUTTON */
.accordion-button {
  background: #ffffff;
  color: #033E8A;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

/* ACTIVE */
.accordion-button:not(.collapsed) {
  background: #033E8A;
  color: #ffffff;
}

/* CUSTOM ICON */
.accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 22px;
  font-weight: 600;
  color: #033E8A;
  transition: 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: "–";
  color: #ffffff;
  transform: rotate(180deg);
}

/* BODY */
.accordion-body {
  padding: 20px 24px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* MOBILE HEADING */
@media (max-width: 991px) {
  .heading-section h2 {
    font-size: 32px;
  }

  .heading-section h3 {
    font-size: 16px;
  }
}



.contact-section-blue {

  padding: 80px 0;
}

/* FORM CARD */
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid #033E8A;
  pointer-events: none;
}

.contact-form-card h2 {
  color: #033E8A;
  font-weight: 700;
  margin-bottom: 5px;

}

.contact-form-card .subtitle {
  color: #555;
  margin-bottom: 25px;
}

/* INPUTS */
.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccd6e4;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #033E8A;
}

/* BUTTON */
.btn-primary-blue {
  background: #033E8A;
  color: #fff;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;

}

.btn-primary-blue:hover {
  background: #022f68;
}

/* CONTACT INFO */
.contact-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 45px 35px;
  height: 100%;
  border-left: 6px solid #033E8A;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.contact-info-card h3 {
  color: #033E8A;
  font-weight: 700;
  margin-bottom: 30px;
}

.info-block {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-block span {
  font-size: 26px;
  color: #033E8A;
}

.info-block strong {
  display: block;
  font-size: 15px;
  color: #033E8A;
}

.info-block p,
.info-block a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

/* MAP */
.map-blue {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-blue iframe {
  width: 100%;
  height: 480px;
  border: 0;
}

.custom-breadcrumb-section {
  background: linear-gradient(135deg, #033E8A, #022f68);
  padding: 18px 0;
  margin-top: 153px;
}

.custom-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.custom-breadcrumb-nav {
  display: flex;
  justify-content: space-between;
}

.custom-breadcrumb-list {
  display: flex;
  align-items: center;

  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 8px 22px;

}

.current-page {
  color: white;
  background-color: transparent !important;
  font-size: 45px !important;
}

.custom-breadcrumb-list li {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

/* Home link */
.custom-breadcrumb-list a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.custom-breadcrumb-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.custom-breadcrumb-list a:hover::after {
  width: 100%;
}

/* Separator */
.custom-breadcrumb-list .separator {
  opacity: 0.7;
  font-size: 16px;
}

/* Current page */
.custom-breadcrumb-list .current {
  color: #ffffff;
  font-weight: 600;
  opacity: 0.9;
}



.tag-btn {
  margin: 5px;
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.tag-btn:hover {
  background-color: #f0f0f0;
}


.gallery-section {
  background-color: #033E8A;
  padding: 80px 0px;
  border-radius: 70px 0px 70px 0px;
}

.gallery-section-page {
  background-color: white;
  padding: 80px 0px;
  border-radius: 70px 0px 70px 0px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-content-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.close-modal-events {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

.modal-navigation {
  margin-top: 15px;
}

.modal-navigation button {
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  margin: 0 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal-navigation button:hover {
  transform: scale(1.2);
}

.gallery-img-events {
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.tag-btn.active {
  background-color: #033E8A !important;
  color: white !important;

}



.event-section {
  padding: 80px 0px;

}

.event-card {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
  padding: 10px;
  margin-top: 20px;
  position: relative;
  border-radius: 10px;
}

/* ==============================
   EVENT DETAIL PAGE
============================== */

.event-detail-section {
  background: #f9fafb;
}

.event-detail-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}



/* ==============================
   IMAGE
============================== */
.event-detail-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* ==============================
   TITLE & TEXT
============================== */
.event-detail-card h1 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

.event-detail-card .lead {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
}

.event-description {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
}




/* ==============================
   SIDEBAR
============================== */
.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 110px;
}

.sidebar-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.recent-event {
  padding-bottom: 10px;
  border-bottom: 1px dashed #e5e7eb;
}

.recent-event:last-child {
  border-bottom: none;
}

.recent-event a {
  color: #1f2933;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.recent-event a:hover {
  color: #2563eb;
}

.recent-event .small {
  font-size: 12px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 991px) {
  .event-detail-card img {
    height: 280px;
  }

  .sidebar-box {
    margin-top: 30px;
    position: relative;
    top: 0;
  }
}

@media (max-width: 576px) {
    .faculty-card{
        width: 100% !important;
    }
    
  .event-detail-card h1 {
    font-size: 24px;
  }
}

.event-card2 {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-top: 10px;
  position: relative;
  border-radius: 10px;

}

.eventimages img {
  height: 260px !important;
  object-fit: cover;
}

.event-image {
  height: 300px;
  width: 100%;
  object-fit: contain;
}

.event-card3 {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  display: flex;
  gap: 20px;
  padding: 13px;
  margin-top: 20px;
  position: relative;
  border-radius: 10px;

}




.event-card img {
  border-radius: 10px !important;
  width: 100% !important;
}

.event-card2 img {
  border-radius: 10px;
  width: 260px;
}

.event-card3 img {
  border-radius: 10px;
  width: 130px;
}

.event-card h5 {
  font-size: 23px;
  font-weight: bold;
  color: #004b73;
  margin: 10px 0px;
}

.event-status {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  border-radius: 20px;
  color: #fff;
  width: max-content;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;

}


/* Status colors */
.event-status.upcoming {
  background-color: #fd4b4b;
  /* Blue */
}

.event-status.ongoing {
  background-color: #198754;
  /* Green */
}

.event-status.completed {
  background-color: #02941df6;
  /* Gray */
}

.event-status.cancelled {
  background-color: #dc3545;
  /* Red */
}



.location {
  font-size: 13px !important;
  color: #004b73 !important;

}

.date-time {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: #828282;


}

.date-time2 {
  font-size: 13px;
  color: #828282;
    font-weight: 300;
}

.date-time span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.date{
  font-weight: 300;
}
.time{
  
  font-weight: 300;
}

.date-time i {
  color: rgb(156, 156, 156);
  font-size: 14px;
  font-weight: 300;
}

.event-card p {
  font-size: 16px;
  color: #7d7d7d;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 300;
}


.celab-btn{
  background-color: #55892d ;
  padding: 10px 0px;
  border-radius: 5px ;
  color: white;

  border: none;
font-weight: 700;
}

.event-btn{
  background-color: transparent ;
  padding: 10px 20px;
  border-radius: 5px ;
  color: #022f68;
    border: none;
border: 1px solid #022f68;
text-decoration: none;
font-weight: 700;

}

/* Responsive */
@media (max-width: 576px) {
  .custom-breadcrumb-list {
    font-size: 13px;
    padding: 6px 16px;
  }
}



/* RESPONSIVE */
@media (max-width: 991px) {

  .contact-form-card,
  .contact-info-card {
    padding: 30px;
  }

  .map-blue iframe {
    height: 320px;
  }
}


/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .review {
    min-height: auto;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .timeline-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

    .doctor-img {
        border-radius: 0 !important; /* removes rounded-circle on phone */
    }
    
    .faculty-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
  .custom-breadcrumb-section{
  margin-top: 160px !important;
  }
  .current-page{
    display: none;
  }
  .section {
    width: 100% !important;
  }

  body {
    overflow-x: hidden;
  }

  .main-header,
  .header2 {
    display: none;
  }

  .heading-section h2 {
    display: none;
  }

  .heading-section2 h2 {
    display: none;
  }

  .poster {
    height: auto;
  }

  .poster-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 155px;
    padding: 0px;
    height: auto;
  }

  .phone-navbar {
    display: block !important;
  }

  .point-main {
    flex-wrap: wrap;
  }

  .poster-left img {
    height: 300px;
  }

  .poster-right {
    text-align: center;
    height: auto;
    padding: 30px 5px;
  }

  .poster-content {
    margin-top: 20px;

  }

  .cta {
    justify-content: center;
  }

  .point-main {
    justify-content: center;

  }

  .poster-content h1 {
    font-size: 38px;
  }

  .poster-content p {
    font-size: 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: start !important;
  }

  .about-image img {
    height: 300px;
  }

  .timeline-media {
    width: 140px !important;
    height: 100px !important;
    padding: 4px;
  }

  .timeline-media img {
    width: 130px !important;
    height: 90px !important;
    object-fit: cover;


  }
   .event-card {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 12px;
    }
  .npo{
      margin: auto!important
      ;
  }

  .ab-text {
    margin-top: 100px;
  }

  .heading-section2 h3 {
    margin-top: 0px;
  }

  .course-stats-card {
    margin-top: 40px;
  }

  .heading-section h3 {
    margin-top: 10px;
    line-height: 50px;
  }

  .heading-section {
    margin-bottom: 30px;
  }

  .partnership-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .global-partnerships {
    padding: 60px 0px !important;
  }

  .partner-card {
    padding: 0px !important;
  }

  .owl-nav {
    margin-top: 0px;
  }

  .footer-container {
    text-align: center;
  }
}