/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {

  --theme-color1: rgba(3, 15, 49, 0.9);
  --theme-color2: #94683B;

  --primary-color: #0c2e8a;
  --primary-light: #1844c6;
  --secondary-color: #ffc107;
  --text-color: #444444;
  --heading-color: #0c2e8a;
  --light-bg: #f8f9fa;
  --dark-bg: #222222;
  --white: #ffffff;
  --border-color: #e4e4e4;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --transition: all 0.3s ease-in-out;


  
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background-color: var(--light-bg);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color, orange);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: #777777;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: var(--transition);
  background: rgba(12, 46, 138, 0.9);
}


.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white) !important;
}

.school-logo {
  font-size: 32px;
  line-height: 0;
  margin-right: 8px;
}








.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: var(--transition);
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--white);
}



.portal-btn {
  margin-left: 15px;
  background: var(--secondary-color);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 20px !important;
  border-radius: 30px;
  transition: var(--transition);
  text-align: center;
}


.portal-btn:hover {
  background: var(--white);
  color: var(--primary-color) !important;
}



.transcript-btn {
  margin-left: 15px;
  background: var(--white);
  color: var(--primary-color) !important;
  font-weight: 600;
  padding: 8px 20px !important;
  border-radius: 30px;
  transition: var(--transition);
}

.transcript-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
}

.portal-btn, .transcript-btn {
  width: 172px;
  
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .carousel-content {
  text-align: center;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#hero p {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--secondary-color);
}

#hero .btn-get-started, #hero .btn-visit {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: var(--white) !important;
  animation-delay: 0.8s;
  border: none;
}

#hero .btn-get-started {
  background: gold !important;
  border-color: var(--primary-color);
}

#hero .btn-get-started:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

#hero .btn-visit:hover {
  background: var(--theme-color1);
  color: var(--primary-color);
  border: 1.5px solid var(--white);
}

/*--------------------------------------------------------------
# Quick Info
--------------------------------------------------------------*/
#quick-info {
  background-color: var(--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  margin-top: 30px;
  padding: 40px 0;
}

.info-box {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.info-box .icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.info-box h3 {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.info-box p {
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 15px;
}

.info-box a {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition);
}

.info-box a:hover {
  color: var(--primary-light);
}

.info-box a i {
  font-size: 12px;
  margin-left: 5px;
  transition: var(--transition);
}

.info-box a:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-content p {
  color: var(--text-color);
  line-height: 1.7;
}

.stat-item {
  text-align: center;
  padding: 20px 15px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.stat-item h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.about-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  text-align: center;
}

.about-overlay h3 {
  color: var(--white);
  font-size: 22px;
}

/*--------------------------------------------------------------
# Academics
--------------------------------------------------------------*/
.program-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}

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

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  margin-bottom: 20px;
}

.program-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.program-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.program-card p {
  color: var(--text-color);
  margin-bottom: 20px;
}

.program-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.program-card ul li {
  margin-bottom: 8px;
  position: relative;
}

.program-link {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition);
}

.program-link i {
  font-size: 12px;
  margin-left: 5px;
  transition: var(--transition);
}

.program-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Faculty
--------------------------------------------------------------*/
.faculty-card {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

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

.faculty-img {
  overflow: hidden;
}

.faculty-img img {
  width: 100%;
  transition: transform 0.5s ease;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.faculty-card:hover .faculty-img img {
  transform: scale(1.1);
}

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

.faculty-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.faculty-info span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.faculty-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary-color);
  margin: 0 5px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--primary-color);
}

.btn-primary-outline {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/*--------------------------------------------------------------
# News and Events
--------------------------------------------------------------*/
.news-container, .events-container {
  height: 100%;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.news-container h3, .events-container h3 {
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.news-container h3::after, .events-container h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.news-item, .event-item {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}

.news-item:last-child, .event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.news-date, .event-date {
  min-width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.news-date .day, .event-date .day {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.news-date .month, .event-date .month {
  font-size: 14px;
  color: var(--text-color);
}

.news-content, .event-content {
  flex: 1;
}

.news-content h4, .event-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-content p {
  margin-bottom: 10px;
  font-size: 14px;
}

.news-content a {
  color: var(--primary-color);
  font-weight: 500;
}

.news-content a i {
  font-size: 12px;
  margin-left: 5px;
  transition: var(--transition);
}

.news-content a:hover i {
  transform: translateX(5px);
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

.event-details span {
  display: flex;
  align-items: center;
}

.event-details span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.btn-calendar {
  display: inline-block;
  padding: 6px 16px;
  background: var(--light-bg);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
}

.btn-calendar:hover {
  background: var(--primary-color);
  color: var(--white);
}

/*--------------------------------------------------------------
# Achievements
--------------------------------------------------------------*/
.achievement-box {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
}

.achievement-img {
  overflow: hidden;
}

.achievement-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.achievement-box:hover .achievement-img img {
  transform: scale(1.1);
}

.achievement-content {
  padding: 25px;
}

.achievement-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.achievement-content p {
  margin-bottom: 15px;
}

.achievement-content ul {
  padding-left: 20px;
}

.achievement-content ul li {
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-box {
  text-align: center;
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
}

.testimonial-box:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  margin-bottom: 20px;
}

.testimonial-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 15px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 24px;
  color: var(--secondary-color);
  line-height: 0;
}

.testimonial-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.testimonial-content span {
  font-size: 14px;
  color: #777;
}

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/
#cta {
  padding: 60px 0;
  background: var(--primary-color);
  color: var(--white); 
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
 
}

#cta h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 10px;
}

#cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.btn-cta {
  display: inline-block;
  padding: 12px 35px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-cta:hover {
  background: var(--white);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  color: var(--primary-color);
  background: var(--light-bg);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.info-item p {
  margin-bottom: 0;
  color: #777;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.btn-submit {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-light);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dark-bg);
  color: var(--white);
  font-size: 14px;
  padding: 0;
}

.footer-top {
  padding: 60px 0 30px;
}

.footer-info {
  margin-bottom: 30px;
}

.footer-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer-links ul li:first-child {
  padding-top: 0;
}

.footer-links ul li i {
  margin-right: 5px;
  color: var(--secondary-color);
  font-size: 12px;
  line-height: 0;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter form {
  margin-top: 20px;
  position: relative;
}

.footer-newsletter form input[type="email"] {
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  width: 100%;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
}

.footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 500;
  padding: 0 20px;
  border: 0;
  border-radius: 0 50px 50px 0;
  transition: var(--transition);
}

.footer-newsletter form input[type="submit"]:hover {
  background: var(--white);
}

.copyright {
  text-align: center;
  padding: 25px 0;
  background: #1a1a1a;
  font-size: 14px;
}

.copyright strong {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-light);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 28px;
  }
  .portal-btn{
     margin-top: 14px;
  }

  
  
  #hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .portal-btn{
     margin-top: 14px;
  }
  
  .navbar-collapse {
    background-color: rgba(12, 46, 138, 0.95);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .about-image {
    margin-top: 30px;
  }
  
  .faculty-card {
    margin-bottom: 30px;
  }
  
  .news-container, .events-container {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .portal-btn{
     margin-top: 14px;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .info-box {
    margin-bottom: 20px;
  }
  
  #cta h2 {
    font-size: 24px;
  }
  
  .btn-cta {
    margin-top: 20px;
  }
  
  .footer-info, .footer-links, .footer-newsletter {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 24px;
  }
  .portal-btn{
     margin-top: 14px;
  }
  
  #hero p {
    font-size: 16px;
  }
  
  .btn-get-started, .btn-visit {
    padding: 10px 24px;
    font-size: 13px;
  }
  
  .about-content h3 {
    font-size: 18px;
  }
  
  .program-card, .faculty-card, .testimonial-box {
    margin-bottom: 20px;
  }
}