/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

:root {
    --deep-navy: #0D1B2A;
    --teal-blue: #1B4965;
    --silver-grey: #C5C6C7;
    --emerald-green: #16A085;
    --crimson: #B33939;
    --off-white: #F7F7F7;
    --charcoal: #2E2E2E;

    /* Main colors for easy reference */
    --primary-color: #1B4965; /* Teal Blue */
    --secondary-color: #F7F7F7; /* Off-White */
    --accent-color: #16A085; /* Emerald Green */
    --accent-alt: #B33939; /* Crimson */
    --text-dark: #0D1B2A; /* Deep Navy */
    --text-light: #C5C6C7; /* Silver Grey */
    --text-medium: #2E2E2E; /* Charcoal */
    --white: #FFFFFF;
    --border-color: #C5C6C7;
}

body {
    font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-medium);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}


h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

@media screen and (max-width:768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1.125rem;
    }
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent layout shift */
img[width][height] {
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}
.btn-primary:hover svg path {
    fill:var(--primary-color);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-tertiary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 30px;
    border: 2px solid var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}
.btn-tertiary:hover {
    color:var(--white);
    border: 2px solid var(--white);
    background: transparent;
}
.main-header.scrolled .btn-tertiary.header-contact-page {
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
}
.main-header.scrolled .btn-tertiary.header-contact-page:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.text-center {
    text-align: center;
}

.label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Header */
.main-header {
    background: transparent;
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    width: 100%;
    transition: all 0.3s ease;
}
.main-header .container {
    padding-inline: 20px;
}

.main-header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(13,27,42,0.15);
    position: fixed;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.header-content .btn-header-primary {
    white-space: nowrap;
}

.logo {
    flex: 0 0 auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.main-header .logo-text .logo-green {
    display: none;
}
.main-header.scrolled .logo-text .logo-green {
    display: block;
}
.main-header.scrolled .logo-text .logo-white {
    display: none;
}

.logo-small {
    font-size: 10px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}
.main-header.scrolled .logo-text > *,
.main-header.scrolled .main-nav a,
.main-header.scrolled .header-phone > *,
.main-header.scrolled .mobile-menu-toggle{
    color: var(--text-dark);
}

.main-header.scrolled .header-phone{
    border: 2px solid  var(--text-dark);
}
.logo-large {
    font-size: 11px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: normal;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: normal;
    font-family: "Quicksand", sans-serif;
    font-style: normal;
}

.main-nav a:hover {
    color: rgba(255,255,255,0.7);
    font-weight: bold;
}

.has-dropdown .dropdown-arrow,
.has-mega-menu .dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.has-mega-menu:hover .dropdown-arrow{
    transform: rotate(180deg);
}

.mega-menu-content .has-submega:hover .dropdown-arrow{
    transform: rotate(90deg);
}


.why-choose-section {
    background: rgba(27, 73, 108, 0.7);
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.why-choose-section .icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 50px;
}

.why-choose-section .section-title {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.why-choose-section .icons-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.why-choose-section .icons-item:nth-child(1) { animation-delay: 0.1s; }
.why-choose-section .icons-item:nth-child(2) { animation-delay: 0.2s; }
.why-choose-section .icons-item:nth-child(3) { animation-delay: 0.3s; }
.why-choose-section .icons-item:nth-child(4) { animation-delay: 0.4s; }

.why-choose-section .icon-box {
    background: #B33939;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.why-choose-section .icon-box::before {
    content: '';
    width: 66px;
    background: transparent;
    height: 66px;
    position: absolute;
    border: 2px solid white;
    left: -6px;
    top: -6px;
}

.why-choose-section .icon-box svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.why-choose-section .stat-content {
    text-align: left;
}

.why-choose-section .stat-number {
    color: white;
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.why-choose-section .stat-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Mega Menu Styles */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    box-shadow: 0 15px 50px rgba(13,27,42,0.2);
    padding: 30px 20px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 10px;
    border-top: 3px solid #1B496C;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}
li.has-mega-menu:hover:after {
    content: '';
    position: absolute;
    padding-bottom: 40px;
    width: 100%;
    top: 100%;
    z-index: 2000;
}
.nav-menu .menu-wrap .mega-menu.active {
    opacity: 1;
    visibility: visible;
}
.nav-menu .menu-wrap {
    position: absolute;
    bottom: 0;
    padding: 0rem;
    top: 100%;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    width: 100%;
    z-index: 1001;
}

.header-nav-menu .header-nav-main-child {
    padding: 10px 20px;
    border-radius: 25px;
}
.main-header .main-nav .header-nav-menu {
    gap: 6px;
}
.has-mega-menu:hover .header-nav-main-child {
    background: white;
    color: #0D1B2A;
    font-weight: bold;
}
.main-header .main-nav .header-nav-main-child:hover {
    background: white;
    color: #0D1B2A;   
}

.mega-menu-content {
    display: grid;
    gap: 60px;
    margin-inline: auto;
}
.mobile-nav-menu {
    display: none;
}

.mega-menu-column {
    position: relative;
}

.mega-menu-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.1) 20%,
        rgba(0,0,0,0.1) 80%,
        rgba(0,0,0,0) 100%
    );
}

.mega-menu-column h4 {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.mega-menu-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-direction: column;
}

.mega-menu-column ul li {
    margin-bottom: 0;
}
.sub-submenu {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.inline-menu.active .sub-submenu {
   max-height: fit-content;
}

.mega-menu-content .sub-megamenu .inline-menu.active .dropdown-arrow  {
    transform: rotate(90deg);
}
.mega-menu-content .sub-megamenu .inline-menu .dropdown-arrow  {
    transform: rotate(0deg);
}
.mega-menu-column ul li .inline-lead-link {
    display: flex;
}
.mega-menu-column ul li.inline-menu a:hover {
    background: rgba(27, 73, 108, 0.2);;
}

.mega-menu-column ul li a {
    color: #666;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    padding: 4px 10px 4px 10px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
    /* padding-left: 0; */
}

.mega-menu-column ul li a::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #1B496C;
    transition: width 0.3s ease;
}

.mega-menu-column ul li a:hover {
    color: var(--text-dark);
    font-weight: bold;
    /* padding-left: 20px; */
}

.mega-menu-column ul li:hover,
 .partner-logos .university-logos img:hover{
    background-color: rgba(27, 73, 108, 0.2);
}
.mega-menu-column ul li a:hover::before {
    width: 6px;
    left: 2spx;
}

/* sub mega-menu*/
.has-submega {
    position: relative;
}

.partner-logos .university-logos {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
}

.partner-logos .university-logos img {
    height: 60px;
    object-fit: contain;
}

@media screen and (min-width: 769px) {
    .has-submega .sub-megamenu {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        background: var(--white);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 10px 40px rgba(0,0,0,0.15);
        min-width: max-content;
        z-index: 1000;
        white-space: nowrap;
        border-top: 3px solid #1B496C;
    }

    .scroll-menu.sub-megamenu {
        overflow-y: auto;
        max-height: 500px;
    }

    .has-submega .sub-megamenu li {
        width: 100%;
    }

    .has-submega .sub-megamenu li a {
        width: 100%;
        white-space: normal;
    }

    .has-submega:hover .sub-megamenu {
        display: block;
    }

    .partner-logos .university-logos img{
        cursor: pointer;
    }
}

/* Scrolled header mega menu adjustment */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-phone {
    text-decoration: none;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--white);
    border-radius: 25px;
}

.btn-header-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-header-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 700px;
    height: 100vh;
    display: flex;
    /* align-items: center; */
    color: var(--white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-section .hero-content {
   text-align: left;
}
#text::before {
    content: 'A';
    position: relative;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    visibility: hidden;
    margin-left: -42px;
}
#text {
    position: relative;
    color: #16A085;
}
.hero-slider .swiper-slide .hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}
.hero-slider .swiper-slide::after {
    content: '';
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    z-index: 0;
    width: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.76), rgba(27, 73, 101, 1));
    height: 100%;
}
.hero-section .container {
    width: 100%;
}
.hero-slider {
    height: auto;
    padding-top: 133px;
}
.hero-slider .swiper-pagination  {
    display: flex;
    gap: 10px;
    justify-content: center;
    bottom: 16px !important;
    padding-inline: 30px;
}
.hero-slider .swiper-pagination .swiper-pagination-bullet {
   margin: 0 !important;
   background: #16A085;
}
.hero-slider .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 133px;
}
.hero-slider .swiper-slide .main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    /* max-width: 600px; */
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-slider  .swiper-button-next,.hero-slider  .swiper-button-prev {
  color: white;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}
.hero-content h2, .hero-content h3 {
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.stats-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* margin-bottom: 60px; */
}

.stats-left-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.9;
}

.stats-left-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--white);
}

.stats-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.stats-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: var(--white);
}

.stat-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.stats-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

 /* hero setion stats*/

 .hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 24px;
    margin-top: 50px;
}
.hero-stats .state-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.hero-stats .stat-item{
    display: block;
    text-align: center;
    align-items: center;
    max-width: 33%;
    width: 100%;
    padding: 0px 8px;
    background-color: var(--white);
    color: var(--text-dark);
}


.hero-stats .stat-item:last-child{
    border: unset;
    margin-right: 0;
}

.hero-stats .stat-text span {
    font-weight: 600;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-icon{
    height: 35px;
    width: 35px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.stat span {
    font-size: 16px;
    opacity: 0.9;
}

.features-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.feature-item .icon {
    font-size: 20px;
}

.feature-item p {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.feature-item .icon-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border: 2px solid var(--white);
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Programs Section */
.programs-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.programs-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    line-height: 1.3;
}

.programs-section .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.program-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.program-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.program-card > p {
    color: #404142;
    margin: 0 24px 24px;
    font-size: 15px;
    line-height: 1.6;
}

.program-card .instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #F0F0F0;
    background-color: #FAFAFA;
}

.program-card .instructor img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.program-card .instructor .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.program-card .instructor .title {
    font-size: 13px;
    color: #404142;
    margin-bottom: 0;
}

.programs-section .text-center {
    margin-top: 20px;
}

.programs-section .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
}

/* image with events */
.image-with-event .image-section {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.image-with-event {
    padding-block: 100px;
}
.image-with-event .container {
    display: grid;
    align-items: center;
    grid-template-columns: 500px 1fr;
}

.image-with-event .concert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-with-event  .events-section {
    background: white;
    padding: 0 0 0 50px;
}

.image-with-event  .subtitle {
    margin-bottom: 20px;
}

.image-with-event .event-card {
    padding: 30px 0;
    border-bottom: 1px solid #C5C6C7;
}

.image-with-event .event-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.image-with-event .event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.image-with-event .event-info {
    display: flex;
    gap: 30px;
        align-items: flex-start;
    justify-content: space-between;
    flex: 1;
}

.image-with-event .date {
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}
.image-with-event  .event-btn {
    text-decoration: none;
}


.icons-with-text .info-card {
    background: white;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
}
.icons-with-text .container {
    display: flex;
    gap: 50px;
}
.icons-with-text {
    padding-block: 50px;
}

.icons-with-text .icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icons-with-text .icon {
    width: 28px;
    height: 28px;
}

.icons-with-text .info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.icons-with-text .info-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.image-gallery-swiper .gallary-swiper {
    max-width: 768px;
}
.image-gallery-swiper .gallary-swiper .swiper-slide {
    aspect-ratio: 768 / 450;
}
.image-gallery-swiper .gallary-swiper .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.image-gallery-swiper .swiper-btn-prev {
    position: absolute;
    z-index: 999;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    left: 0;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}
.image-gallery-swiper .swiper-btn-next {
    position: absolute;
    z-index: 999;
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    right: 0;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.image-gallery-swiper .swiper-btn-next svg , 
.image-gallery-swiper .swiper-btn-prev svg  {
    width: 24px;
    height: 24px;
}
.image-gallery-swiper .swiper-btn-prev svg path , 
.image-gallery-swiper .swiper-btn-next svg path {
    fill: white;
}
.image-gallery-swiper .swiper-btn-prev.swiper-button-disabled ,
.image-gallery-swiper .swiper-btn-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.image-gallery-swiper {
    padding-block: 100px;
    background: rgba(27, 73, 101, 0.3);
}
.image-gallery-swiper .header-section {
    text-align: center;
    margin-bottom: 40px;
}
.image-gallery-swiper .swiper-btn-next:hover ,
.image-gallery-swiper .swiper-btn-prev:hover {
    background-color: var(--primary-color);
}
.image-gallery-swiper .swiper-btn-next {
    right: -25px;
} 
.image-gallery-swiper .swiper-btn-prev {
    left: -25px;
} 
.more-events {
    padding-block: 100px;
}
.more-events .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.more-events .view-more-btn {
   text-decoration: none;
}
.more-events .event-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.more-events .event-card {
    background: rgba(27, 73, 101, 0.3);
    border-radius: 30px;
    padding: 20px 30px 20px 20px;
    display: grid;
    grid-template-columns: auto 1fr 170px;
    gap: 30px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.more-events .decoration-none {
    text-decoration: none;
    justify-content: center;
}

.more-events .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.more-events .event-image {
    width: 214px;
    height: 192px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.more-events .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.more-events .event-card:hover .event-image img {
    transform: scale(1.05);
}

.more-events .event-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.more-events .event-name {
    margin-bottom: 8px;
}

.more-events .event-datetime ,.more-events  .event-location{
    margin: 0;
}

.more-events .event-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.more-events .event-btn {
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}


/* about event */

.about-event .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-event .content-section {
    padding-right: 0px;
}
.about-event .content-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-event .description p:last-child {
   margin-bottom: 0;
}
.about-event {
    padding-block: 100px;
}

.about-event .image-section {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-event .event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-event  .description p {
    line-height: 1.5;
    margin-bottom: 20px;
}


/* Campus Section */
.campus-section {
    background-color: var(--white);
    padding-block: 60px;
}

.campus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.campus-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.campus-img-large-wrapper {
  grid-row: span 2;
}

.campus-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    /* grid-row: span 2; */
}

.campus-img-small-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-row: span 2;
}

.campus-img-small {
    /* width: 100%; */
    /* height: calc((100% - 15px) / 2); */
    /* min-height: 200px; */
    object-fit: cover;
    border-radius: 16px;
}

.campus-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.campus-img-wrapper img{
    transition: all 0.6s ease;
}

.campus-img-wrapper img:hover {
  transform: scale(1.06);
}

/* .campus-label {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
} */

.campus-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-dark);
}

.campus-text p {
    color: #404142;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.campus-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campus-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.campus-features .feature-icon {
    font-size: 18px;
    color: var(--text-dark);
}

.btn-campus-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-campus-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 93, 0.3);
}

.btn-campus-primary .arrow {
    font-size: 18px;
}

/* Combined Testimonial & Campus Section */
.testimonial-campus-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.testimonial-campus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Top Left: Testimonial Heading */
.testimonial-heading-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
}

.testimonial-label {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.testimonial-heading-box h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.testimonial-nav {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--text-dark);
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.nav-btn.next {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Top Right: Testimonial Quote Card */
.testimonial-quote-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.testimonial-quote-card blockquote {
    margin: 0 0 25px 0;
}

.testimonial-quote-card blockquote p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: #404142;
}

/* Bottom Left: Student Image with Badge */
.testimonial-image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-image-box img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.quality-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
}

.badge-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-top,
.badge-bottom {
    font-size: 8px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.badge-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Bottom Right: Campus CTA Box */
.campus-cta-box {
    background-color: var(--white);
    border-radius: 16px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.campus-cta-label {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.campus-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.btn-campus-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-campus-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 93, 0.3);
}

.btn-campus-cta .arrow {
    font-size: 18px;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.event-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* Left: Green Event Info Card */
.event-info-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.play-button-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--primary-color);
}

.play-button-icon span {
    padding-left: 4px;
}

.event-info-card h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 30px;
}

.event-details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.event-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.detail-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.detail-value {
    color: var(--white);
    font-weight: 600;
}

.event-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.event-host {
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-host img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.event-host strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.event-host span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Right: Event Image */
.event-image-box {
    border-radius: 16px;
    overflow: hidden;
}

.event-image-box img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.faq-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* .faq-question:hover {
    background-color: var(--secondary-color);
} */

.faq-question .icon {
    font-size: 24px;
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #404142;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

/* News Section */
.accordion-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    margin-top: 60px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.accordion-header h2 {
    font-size: 36px;
    color: var(--white);
}

.acco-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.acco-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.acco-list .item-wrapper {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
}
.acco-item.active .acco-content {
    max-height: var(--content-height);
}
.acco-item.active .arrow-btn {
    transform: rotate(90deg);
}

.acco-item .date {
    font-size: 14px;
    font-weight: 600;
    min-width: 100px;
}

.acco-item p {
    flex: 1;
    font-size: 18px;
    margin: 0 30px 0 0;
}

.arrow-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.acco-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s all ease;
}
.acco-content p {
    padding-bottom: 20px;
}

/* .arrow-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
} */

/* Newsletter Section */
.newsletter-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* join-university */

.join-university .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.join-university {
    padding-block: 100px;
    position: relative;
}
.join-university .description.call-to-action {
    display: flex;
    gap: 10px;
    margin-top: 21px;
    margin-bottom: 0;
}
.join-university .description.call-to-action img {
    margin-bottom: 5px;
}
.join-university .description.call-to-action  a {
    text-decoration: none;
    color: #1B4965;
}

.join-university .content {
    padding-right: 40px;
}

.join-university .logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B33939 0%, #B33939 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.join-university .logo::before {
    content: '🎓';
    font-size: 24px;
}

.join-university .tagline {
    color: #B33939;
    font-weight: 600;
    margin-bottom: 36px;
}

.join-university .heading {
    margin-bottom: 40px;
}

.join-university .description {
    line-height: 1.7;
    margin-bottom: 0;
}

.join-university .images-grid {
    display: grid;
    grid-template-columns: 90px 1fr 1fr 1fr;
    grid-template-rows: 190px 140px 140px 140px;
    gap: 20px;
    position: relative;
}

.join-university .image-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.join-university .image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.join-university .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-university .image-card.img-one {
    grid-row: 2 / span 2;
    grid-column: 1 / span 2;
}

.join-university .image-card.img-two {
    grid-row: 1 / span 2;
    grid-column: 3 / span 2;
}

.join-university .image-card.img-three {
    grid-column: 3 / span 2;
    grid-row: 3 / span 2;
    padding-right: 36px;
}
.semi-circle-one {
    grid-row: 1;
    grid-column: 2;
    margin-left: auto;
    margin-top: auto;
    width: 80px;
    height: 80px;
    background: #fff0ec;
    border-radius: 100px 0 0 0;
}
.semi-circle-two {
    max-width: 140px;
    max-height: 140px;
    height: 100%;
    width: 100%;
    background: #eeeeff;
    border-radius: 0px 0 0 140px;
    grid-row: 4;
    margin-left: auto;
    grid-column: 2;
    position: relative;
}
.semi-circle-three {
    grid-row: 3;
    grid-column: 4;
    margin-left: auto;
    margin-top: -10px;
    margin-right: -18px;
    width: 50px;
    height: 50px;
    background: rgb(239, 236, 240);
    border-radius: 0px 0 50px 0;
    position: relative;
    margin-bottom: auto;
}

/* Files List */
.files-list {
    padding-block: 100px;
}
.files-list .files-list-wrapper ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.files-list .files-list-wrapper ul li a {
    text-decoration: none;
    color: inherit;
}
.files-list .files-list-wrapper ul li  {
    display: flex;
    align-items: center;
    gap: 6px;
}
.files-list .files-list-wrapper ul li .pdf-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}
.files-list .files-list-wrapper ul li .tab-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--off-white);
    color: var(--text-medium);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    /* margin-bottom: 50px; */
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* About Us Hero */
.hero-image {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}
/* .section-hero .container {
    height: 100%;
} */
.section-hero {
    height: 100%;
    position: relative;
    padding-top: 133px;
    min-height: 80vh;
    display: flex;
}
.section-hero .description {
    max-width: 1024px;
}
.section-hero   .hero-text-content.text-center {
   text-align: center;
    gap: 20px;
}
.section-hero   .hero-text-content.text-center p {
    margin-inline: auto;
}
.section-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(13,27,42,0.76), rgba(27,73,101,0.60));
}
.section-hero .hero-text-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 99;
    color: white;
    text-align: left;
}
.section-hero .hero-text-content p {
    opacity: 1;
}
.section-hero .hero-text-content .pre-heading {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-hero .hero-text-content h1 {
  margin-bottom: 0;
  color: inherit;
}
/* mission  */
.mission-container {
    padding-block: 100px;
}
.mission-container.reverse-section .mission-grid {
    grid-template-columns: 1fr 1.2fr;
}
.mission-container .mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.mission-container .image-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 500px;
}
.mission-container.reverse-section .image-group {
    grid-column: 2;
    grid-row: 1;
} 

.mission-container .image-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    margin-top: 40px;
}
.mission-container.reverse-section .image-large {
    grid-column: 2 / 3;
}
.mission-container .image-box.grid-part-2 {
    margin-right: 50px;
}
.mission-container.reverse-section .image-box.grid-part-2 {
   margin-right: 0px;
   margin-left: 50px;
}
.mission-container .image-box.grid-part-3 {
    margin-bottom: 40px;
}
.mission-container .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-container .image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-container .image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-container .mission-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px;
}
.mission-container .section-text-content {
    margin-block: auto;
}
.mission-container .section-text-content ul {
   padding-left: 20px;
}

.mission-container .mission-title {
    margin-bottom: 30px;
}

.mission-container .mission-text {
    margin-bottom: 20px;
    margin-right: 40px;
}

.mission-container .feature-card {
    background: #B33939;
    padding: 40px;
    margin-left: -100px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.mission-container.reverse-section .feature-card {
    margin-left: 0;
    margin-right: -100px;
}

.mission-container .icon-box {
    background: #1B4965;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.mission-container .icon-box svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.mission-container .feature-text {
   margin: 0;
   color: white;
}

.key-points {
    padding-block: 100px;
}
.key-points .image-content-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
}
.key-points .section-right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: fit-content;
    position: sticky;
    top: 133px;
    gap: 20px;
}

.key-points .section-right-column img:nth-child(odd) {
    margin-left: 0;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.key-points .section-right-column img:nth-child(even) {
    width: 100%;
    margin-right: 0;
    aspect-ratio: 1;
    object-fit: cover;
    grid-row: 1 / span 2;
}

.key-points .section-left-column {
   display: flex;
   flex-direction: column;
   gap: 30px;
}
.key-points .program-overview {
    margin-bottom: 0;
}
.key-points .header {
    margin-bottom: 36px;
}
.key-points .secondary-title-description h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.key-points .secondary-title-description .program-overview {
    padding-left: 46px;
}
.key-points .title-points-wrapper h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.key-points .icon-title-description h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.key-points .title-points-wrapper .points-wrapper {
    padding-left: 46px;
}
.key-points .icon-title-description .icon-description-wrapper {
    padding-left: 46px;
}
.key-points .title-icons-wrapper h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.key-points .title-icons-wrapper .description {
    padding-left: 46px;
}
.key-points .title-icons-wrapper .icon-with-text {
    padding-left: 46px;
}
.key-points .points-cover ul {
    padding-left: 0px;
    list-style: none;
}
.key-points .points-cover p {
    padding-left: 24px;
}
.key-points .points-cover li.text-point p {
   margin-bottom: 0;
   padding: 0;
}
.points-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.key-points .icon-with-text {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.key-points .icon-with-text p a {
    text-decoration: none;
    color: #1B4965;
}
.key-points .description {
   margin-bottom: 8px;
}
.key-points .icon-with-text p {
    margin-bottom: 8px;
}
.key-points .points-wrapper .points-cover h4 {
    margin-bottom: 8px;
}
.key-points .points-cover ul li {
    position: relative;
    padding-left: 24px;
}
.key-points .points-cover ul li::after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    background: black;
    border-radius: 50%;
    top: 7px;
    left: 0;
}
.key-points .points-cover ul li.text-point::after {
    top: 9px;
}
.key-points .icon-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.key-points .icon-description-wrapper .points-cover {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.key-points .icon-description-wrapper .partner-icon {
    max-width: 180px;
    max-height: 100px;
    width: auto;
}
.key-points .icon-description-wrapper .points-cover p {
    max-width: 900px;
    padding-left: 0;
}

.icon-with-description .icon-description-wrapper .partner-icon {
    max-width: 180px;
    max-height: 100px;
    width: auto;
}
.icon-with-description .heading {
    margin-bottom: 36px;
}
.icon-with-description .icon-description-wrapper .points-cover {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.icon-with-description {
    padding-block: 60px;
}
.icon-with-description .icon-description-wrapper  {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.icon-with-description .icon-description-wrapper .points-cover p {
    max-width: 900px;
}
.title-description .icon-with-text {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.title-description .icon-with-text p a {
    text-decoration: none;
    color: #1B4965;
}
.title-description {
    padding-block: 60px;
}
.title-description .heading {
    margin-bottom: 36px;
}
.title-description .icon {
  margin: 0;
  width: 22px;
}

.our-values {
   padding-block: 100px;
}
.our-values .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.our-values .values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.our-values .value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: calc((100% - 90px) / 4);
    transition: transform 0.3s ease;
}

.our-values .value-item:hover {
    transform: translateY(-10px);
}

.our-values .icon-circle {
    width: 100px;
    height: 100px;
    background: #1B4965;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.our-values .value-item:hover .icon-circle {
    background: #29b6f6;
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.5);
    transform: scale(1.05);
}

.our-values .icon-circle svg {
    width: 55px;
    height: 55px;
    fill: #1a237e;
}

.workshop-list {
    padding-block: 100px;
    background: rgba(27,73,101,0.3);
}
.workshop-list .heading {
   margin-bottom: 40px;
}

.workshop-list .event-card {
    background: white;
    border-radius: 4px;
    padding: 40px 30px;
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid #C5C6C7;
}

.workshop-list .date-box {
    background: rgba(27, 73, 101, 0.1);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    text-align: center;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-right: 12px;
    max-width: 195px;
    display: flex;
    max-height: 185px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.workshop-list .date-number {
    font-size: 30px;
    line-height: 48px;
    font-weight: bold;
}

.workshop-list .date-month {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.workshop-list .event-image {
    max-width: 308px;
    width: 100%;
    max-height: 185px;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 24px;
}

.workshop-list .event-details {
    display: flex;
    flex-direction: column;
    height: fit-content;
    margin-right: 24px;
    max-width: 411px;
    width: 100%;
    gap: 10px;
}

.workshop-list .event-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.6;
}

.workshop-list .event-category {
    display: flex;
    font-size: 1rem;
    line-height: 1.625;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.workshop-list .category-label {
    color: #B33939;
}

.workshop-list .event-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}
.workshop-list .event-location span {
    font-size: 1rem;
    line-height: 26px;
}

.workshop-list .location-icon {
    color: #ef4444;
    flex-shrink: 0;
}

.workshop-list .event-btn {
    padding-inline: 20px;
    min-width: max-content;
    white-space: nowrap;
    margin-left: auto;
    text-decoration: none;
}
.workshop-list .workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.workshop-list .arrow-icon {
    font-size: 1.25rem;
}

.event-btn .arrow-icon svg {
    width: 16px;
    height: 16px;
    display: block;
} 
.event-btn .arrow-icon svg path {
    fill: white;
}
.event-btn:hover .arrow-icon svg path {
   fill: var(--primary-color);;
}



.workshop-details .main-event-image {
    width: 100%;
    object-fit: cover;
    height: auto;
    aspect-ratio: 1 / 0.6;
    border-radius: 4px;
    margin-bottom: 60px;
}
.workshop-details {
    padding-block: 100px;
    background: rgba(27, 73, 101, 0.3);
}

.workshop-details .workshop-details-wrapper {
    display: flex;
    gap: 40px;
}

.workshop-details .info-box {
    background: white;
    padding: 40px 35px;
    border: 1px solid #C5C6C7;
    border-radius: 4px;
}
.workshop-details .sidebar {
    flex: 0 0 390px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.workshop-details .info-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.workshop-details .info-box p {
    margin: 0 0 14px 0;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}
.workshop-details .main-content .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}
.workshop-details .main-content .logo::before {
    content: '🎓';
    font-size: 24px;
}
.workshop-details .main-content h2 {
    margin-bottom: 30px;
}

.workshop-details .info-box p svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: block;
    margin-top: 4px;
}
.workshop-details .info-box p:last-child {
   margin-bottom: 0;
}

.workshop-details .info-box .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.7;
}

.workshop-details .info-box .label {
    font-weight: 600;
    display: block;
    margin-bottom: 0px;
    line-height: 30px;
    font-size: 20px;
    letter-spacing: 0;
    text-transform: capitalize;
}

.workshop-details .info-box .workshop-data p {
    margin-bottom: 14px;
    margin-top: 2px;
    font-size: 16px;
    line-height: 1.625;
}

.workshop-details .main-content {
    flex: 1;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.workshop-details .category-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.workshop-details .category-icon {
    width: 24px;
    height: 24px;
    fill: #7f8c8d;
}

.workshop-details .main-content p {
    margin: 0 0 20px 0;
}


.workshop-details .form-group {
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    min-height: 56px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B4965;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    min-height: 136px;
    resize: vertical;
}

.form-group .submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}

/* contact form */

.contact-form .image-section ,.contact-form .form-section {
    max-width: calc(50% - 20px);
    width: 100%;
}
.contact-form .container {
    display: flex;
    gap: 40px;
}
.contact-form .image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-form  {
    padding-block: 100px;
}
.contact-form  .form-section {
    padding: 0;
}


.contact-form  .form-group {
    margin-bottom: 25px;
}

.contact-form  label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
}

.contact-form  input,.contact-form  select,.contact-form  textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    transition: border-color 0.3s;
}

.contact-form  input:focus,.contact-form  select:focus,.contact-form  textarea:focus {
    outline: none;
    border-color: #0d6efd;
}

.contact-form input::placeholder,.contact-form  select::placeholder,.contact-form  textarea::placeholder {
    color: #adb5bd;
}

.contact-form select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236c757d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    cursor: pointer;
}

.contact-form  textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.contact-form  .submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #1B4965;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: #1B4965;
}

.contact-form .submit-btn:active {
    transform: translateY(1px);
}

/* contact card */

.contact-section {
    background: #1B4965;
    padding: 100px 0px;
}

.contact-section .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.contact-section .contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-section .icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(27,73,101, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-section .icon {
    width: 32px;
    height: 32px;
    stroke: #1B4965;
    stroke-width: 2;
    fill: none;
}

.contact-section .description {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-section .contact-link {
    color: #1B4965;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-section .contact-link:hover {
    text-decoration: underline;
}

/* programs card */

.programs-cards {
    padding-block: 100px;
    background: #F7F7F7;
    margin-bottom: 60px;
}
.programs-cards  .card-with-header {
    display: flex;
    align-items: center;
}

.programs-cards .header-section {
    margin-bottom: 40px;
}

.programs-cards .subtitle {
    font-size: 1.2rem;
    margin-bottom: 38px;
    line-height: 1.6;
}

.programs-cards .button-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.programs-cards .btn {
    padding: 8px 24px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.programs-cards .btn svg {
    width: 18px;
    display: block;
}

.programs-cards .btn-secondary {
    background-color: transparent;
}
.programs-cards .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}
.programs-cards .btn-secondary  svg path {
    fill: #0D1B2A;
}

.programs-cards .btn-secondary:hover svg path {
    fill: #ffffff;
}

.programs-cards .arrow {
    font-size: 1.2rem;
}

.programs-cards .programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.programs-cards .program-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: fit-content;
}

.programs-cards .program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.programs-cards .program-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.programs-cards .program-content {
    padding: 30px 0 0;
}

.programs-cards .program-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.programs-cards .program-description {
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.programs-cards .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.programs-cards .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #2E2E2E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.programs-cards .contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.programs-cards .icon-blue {
    color: #0d6efd;
}


/* Our Leardership */

    .our-leardership {
       padding-block: 100px;
    }
    .our-leardership .heading {
       margin-bottom: 2.5rem;
    }

    h2 span {
        color: #B33939;
    }

    .leadership-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1.5rem;
    }

    .leader-card {
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
        cursor: pointer;    
        display: flex;
        justify-content: center;
        background-color: #0D1B2A;
    }

    .leader-card img {
        width: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: transform 0.3s ease-in-out;
    }

    .leader-card:hover img {
        filter: grayscale(0%);
    }

    .leader-info {
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
        background: linear-gradient(90deg, rgb(88 88 88 / .5832) 0%, rgb(73 73 73 / .5508) 50.64%, rgb(75 75 75 / .5103) 100%);
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: Calc(100% - 32px);
        border: 1px solid;
        border-image-source: linear-gradient(90deg, #6c6c6c 0%, #535353 100%);
        border-radius: 16px;
        opacity: 0;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        flex-direction: column;
        transition: all 0.3s  ease-in-out;
    }

    .leader-card:hover .leader-info {
        opacity: 1;
    }

    .leader-info h4 {
        color: white;
        font-weight: 500;
        margin-bottom: 0rem;
    }

    .leader-info h4 .lastname {
        color: #ef4444;
    }

    .leader-info p {
        color: white;
        margin-top: 4px;
        line-height: 1.2;
        font-weight: 300;
        margin-bottom: 0;
    }

/* Our Program */
.eduation-program {
    padding-block: 100px;
}
.eduation-program .image-content-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1.3fr 1fr;
}
.eduation-program .section-right-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: fit-content;
    position: sticky;
    top: 133px;
    gap: 20px;
}
.eduation-program .section-right-column img:nth-child(odd) {
    margin-left: 0;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.eduation-program .section-right-column img:nth-child(even) {
    width: 100%;
    margin-right: 0;
    aspect-ratio: 1;
    object-fit: cover;
    grid-row: 1 / span 2;
}
.eduation-program .program-duration-wrap h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .key-features h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eduation-program .program-type h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .core-heighlighte h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .career-pathways h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .admission-requirements h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .program-duration-wrap h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .what-we-offer h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .core_features h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .purposer h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .why_it_matters h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .what_we_enable h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .types_of_projects h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.eduation-program .outcomes h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eduation-program.custom-class  {
    padding-block: 60px;
}
.eduation-program .program-description {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.eduation-program .program-key-decription {
    margin-bottom: 0;
    padding-left: 46px;
}
.eduation-program .key-list {
    padding-left: 32px;
}
.eduation-program .program-duration-wrap p {
    padding-left: 46px;
}
.purposer .purpose-intro {
    padding-left: 46px;
}
ul li.feature-key {
    list-style: none;
}
ul li.feature-key {
    padding-left: 34px;
    position: relative;
}
ul li.feature-key::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0D1B2A;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}
ul.key-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* program carousel */

.program-carousel .swiper-container {
    width: 100%;
    padding-top: 50px;
    position: relative;
}
.program-carousel {
    padding-bottom: 100px;
}

.program-carousel .swiper-slide {
    height: auto;
}

.program-carousel .description {
    max-width: 768px;
    margin: 0;
}

.program-carousel .education-program-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-carousel .program-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.program-carousel .program-content {
    padding: 30px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-carousel .program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 26px;
}

.program-carousel .apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.program-carousel .apply-btn:hover {
    gap: 12px;
}

.program-carousel .apply-btn svg {
    width: 25px;
    height: 25px;
}

.program-carousel .navigation {
    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.program-carousel .nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #C5C6C7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.program-carousel .nav-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.program-carousel .nav-btn svg {
    width: 24px;
    height: 24px;
    transition: stroke 0.3s ease;
}

.subtitle {
    font-size: 1.125rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 270px 270px 270px;
    gap: 30px;
}
.gallery .grid-span-two {
        grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}
.forensic-photo-gellary .header {
    text-align: center;
}
.forensic-photo-gellary {
    padding-bottom: 100px;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 20px;
    font-size: 0.95rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* Quote */

.quote-section {
    background: var(--primary-color);
    padding-block: 100px;
    margin-top: 60px;
}
.quote-section .cta-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}
.quote-section .cta-wrapper .btn {
    text-decoration: none;
    border: 2px solid  var(--white);
}
.quote-section .cta-wrapper .btn:hover {
   border-color: var(--white);
}
.quote-section .quote-image {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.quote-section .quote-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 80%;
    color: white;
    margin-inline: auto;
}
.quote-section .quote-text h3, .quote-section .quote-text h2  {
   color: white;
   font-family: "Space Grotesk", sans-serif;
}
.quote-section .quote-text .quote-person {
    font-size: 28px;
    line-height: 1.5;
} 

.image-grid {
    padding-block: 100px;
}

.image-grid .gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.image-grid .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.image-grid .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: #e5e7eb;
}

.image-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Acadamics */

.acadamics-accordion .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.acadamics-accordion {
    padding-block: 100px;
}
.acadamics-accordion .program-section-title  {
    margin-bottom: 70px;
    margin-top: 70px;
}
.acadamics-accordion .program-section-title h3 {
   color: #16A085;
}
.acadamics-accordion .header h2 {
  margin-bottom: 0;
}

.acadamics-accordion .accordion {
    border-top: 1px solid #d1d5db;
}

.acadamics-accordion .accordion-item {
    border-bottom: 1px solid #d1d5db;
    padding-block: 40px;
}

.acadamics-accordion .accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}


.acadamics-accordion .accordion-title {
    font-weight: 900;
    margin: 0;
}

.acadamics-accordion .icon-circle.active {
    transform: rotate(180deg);
}

.acadamics-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.acadamics-accordion .accordion-content.active {
    max-height: 500px;
    opacity: 1;
}

.acadamics-accordion .accordion-text {
    line-height: 1.5;
    max-width: 700px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}
.acadamics-accordion .btn-primary {
    text-decoration: none;
    margin-inline: 8px;
}
.acadamics-accordion  .btn-primary svg path {
    stroke: white;
}
.accordion .accordion-item.active .accordion-button .circle-svg {
    transform: rotate(45deg); 
    background: #0D1B2A;
}
.accordion .accordion-item .accordion-button .circle-svg {
    transition: all 0.4s  ease;
    border-radius: 50%;
}
.accordion .accordion-item.active .accordion-button .circle-svg  .path-arrow {
   fill: white;
}
.total-visiors-panel {
    background: white;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    gap: 6px;
}
.total-visiors-panel svg {
    display: block;
 }
.total-visiors-panel p {
    margin: 0;
}
.total-visiors-panel p .visitor-count {
    font-weight: 700;
    color: var(--primary-color);
}

/* multiple-image-text */
    .multiple-image-text {
        padding-block: 140px;
        background: #0D1B2A;
        color: white;
        margin-bottom: 60px;
    }

    .multiple-image-text .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: start;
    }

    .multiple-image-text .left-section {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .multiple-image-text .left-image {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .multiple-image-text .left-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .multiple-image-text .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .multiple-image-text .stat-item h2 {
        font-size: 64px;
        font-weight: 700;
        line-height: 1;
        color: inherit;
        margin: 0;
    }

    .multiple-image-text .stat-item p {
        font-size: 18px;
        color: inherit;
        line-height: 1.5;
    }
    .multiple-image-text .stat-item {
        gap: 10px;
    }

    .multiple-image-text .right-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .multiple-image-text .since {
        font-size: 20px;
        line-height: 1.4;
    }

    .multiple-image-text .heading {
        margin-bottom: 0;
        color: inherit;
    }

    .multiple-image-text .description {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 35px;
    }

    .multiple-image-text .mentor-image {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .multiple-image-text .mentor-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Hero Banner */



/* Footer Logo Section */
.footer-logo-section {
    max-width: 400px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-logo-small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.footer-logo-large {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.footer-tagline {
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    font-size: 14px;
    margin-top: 15px;
}

/* Footer Newsletter */
.footer-newsletter {
    padding-top: 5px;
}

.footer-newsletter h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-form input {
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 14px;
    background-color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-newsletter-form input:focus {
    border-color: var(--text-dark);
}

.btn-footer-subscribe {
    padding: 12px 25px;
    background-color: var(--primary-color); 
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-footer-subscribe:hover {
    color: var(--primary-color);
    background-color:  var(--white);
}

/* Footer Columns */
.footer-column {
    padding-top: 5px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-column a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Footer Contact Section */
.footer-contact-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-item p {
    margin: 0;
    font-size: 14px;
}

.contact-email,
.contact-phone,
.contact-address {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-location,
.contact-hours {
    color: rgba(0,0,0,0.6);
    font-size: 13px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.6);
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--text-dark);
}

.footer-social-links svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--white);
    z-index: 1001;
    position: relative;
    transition: color 0.3s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-close {
    display: none;
}
.header-contact-page {
    text-decoration: none;
    white-space: nowrap;
}
.header-actions.mobile-drawer {
   display: none;
}

/* News section */

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 0px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-title {
    margin-bottom: 12px;
}

.article-description {
    margin-bottom: 20px;
}
.article-description p {
    line-height: 1.5;
}
.read-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--primary-color);;
}

.latest-news-section {
    text-align: center;
    padding: 0 0 40px 0;
}
.latest-news-section .title {
    margin: 0;
    text-align: left;
}
.news-section {
    padding-block: 100px;
}

/* blog post */

.blog-post .blog-hero-section {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 133px;
    padding-bottom: 40px;
}

.blog-post .hero-title {
    color: white;
    margin-bottom: 30px;
}

.blog-post .hero-date {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(226, 229, 222, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
}

.blog-post .content-section {
    padding: 60px 0px;
    background: white;
}

.blog-post .content-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.blog-post .content-section p {
    margin-bottom: 1.75rem;
}
.blog-post .content-section ul {
    margin-bottom: 1.75rem;
    padding-left: 28px;
}

.blog-post  .image-wrapper {
    width: 100%;
    position: absolute;    
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.blog-post  .image-wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.blog-post  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d4d;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}


/* Enquiry form */

.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 1024px;
}
.form-wrapper {
    padding-block: 0px;
    display: flex;
    justify-content: center;
    padding-inline: 40px;
}
.form-container .declaration-field {
    display: flex;
}
.form-container .declaration-field input {
    min-height: auto;
    height: 20px;
    width: 20px;
    margin-right: 12px;
} 
.form-container .form-fields-wrapper {
    display: flex;
    column-gap: 40px;
}
.form-container .form-fields-wrapper .form-group {
   flex: 1;
}

.form-container .form-group {
    margin-bottom: 24px;
}

.form-container label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-container .required {
    color: #e53e3e;
    margin-left: 4px;
}

.form-container .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-container .input-icon {
    position: absolute;
    left: 14px;
    font-size: 18px;
}

.form-container  input[type="text"],
.form-container  input[type="email"],
.form-container  input[type="tel"],
.form-container  select {
    width: 100%;
    padding: 12px 14px 12px 16px;
    border: 1px solid #C5C6C7;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    transition: all 0.3s ease;
    background: white;
}

.form-container select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: #B33939;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-container input::placeholder {
    color: #2E2E2E;
}

.form-container .file-upload {
    position: relative;
}

.form-container input[type="file"] {
    display: none;
}

.form-container .file-label {
    display: flex;
    align-items: center;
    padding: 12px 14px 12px 16px;
    border: 2px dashed #C5C6C7;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-container .file-label:hover {
    border-color: #B33939;
}

.form-container .file-text {
    font-size: 14px;
}

.form-container .file-name {
    font-weight: 500;
    margin-top: 8px;
    font-size: 13px;
}

.form-container .submit-btn {
    width: 100%;
    justify-content: center;
}

.form-container .success-message {
    display: none;
    background: var(--accent-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

/* Student Enquiry */
.student-enquiry .form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 1024px;
}
.student-enquiry {
    padding-top: 0px;
    display: flex;
    justify-content: center;
    padding-inline: 40px;
    padding-bottom: 100px;
}
.has-bottom-space {
    margin-bottom: 100px;
}

.student-enquiry .form-group {
    margin-bottom: 24px;
}

.student-enquiry label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.student-enquiry .required {
    color: #e53e3e;
    margin-left: 4px;
}

.student-enquiry .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.student-enquiry .input-icon {
    position: absolute;
    left: 14px;
    font-size: 18px;
}

.student-enquiry input[type="text"],
.student-enquiry input[type="email"],
.student-enquiry input[type="tel"],
.student-enquiry select {
    width: 100%;
    padding: 12px 14px 12px 16px;
    border: 1px solid #C5C6C7;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.student-enquiry select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.student-enquiry input:focus,
.student-enquiry select:focus {
    outline: none;
    border-color: #B33939;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.student-enquiry input::placeholder {
    color: #2E2E2E;
}

.student-enquiry .file-upload {
    position: relative;
}

.student-enquiry input[type="file"] {
    display: none;
}


.student-enquiry .file-name {
    font-weight: 500;
    margin-top: 8px;
    font-size: 13px;
}

.student-enquiry .success-message {
    display: none;
    background: var(--accent-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

/* Responsive Design */

/* Large Desktop - 1200px and above */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}
@media screen and (max-width:1200px) {
    .container {
        padding: 0 40px;
    }
    .leadership-grid {
        grid-template-columns: 1fr 1fr;
    }
    .join-university .container {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
    }
    .join-university .content {
        padding-right: 0;
    }
    .semi-circle-two {
        max-width: 100px;
        max-height: 100px;
        border-radius: 0px 0 0 100px;
    }
    .semi-circle-three {
        margin-top: -10px;
        margin-right: -5px;
    }
    .join-university .images-grid {
        display: grid;
        grid-template-columns: 60px 1fr 1fr 1fr;
        grid-template-rows: 190px 120px 120px 120px; 
    }
    .join-university .image-card.img-three {
        padding-right: 50px;
    }
    .workshop-list .event-image {
        max-width: 250px;
        aspect-ratio: 1;
        max-height: 185px;
        margin-right: 20px;
    }
    .header-nav-menu .header-nav-main-child {
        padding: 6px 14px;
        border-radius: 25px;
    }
}

/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Header */
    .main-nav ul {
        gap: 15px;
        font-size: 13px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .header-actions {
        gap: 10px;
    }

    /* .header-phone {
        display: none;
    } */
    .header-phone {
        padding: 6px 16px;
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-header-primary {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* Mega Menu Tablet Adjustments */
    .mega-menu {
        /* min-width: 700px; */
        max-width: 281px;
        width: max-content;
        padding: 40px 20px 40px 15px ;
    }

    .mega-menu-content {
        gap: 35px;
    }

    /* .mega-menu-column {
        padding-left: 15px;
    } */

    .nav-menu.header-nav-menu .has-mega-menu:nth-child(3) .sub-megamenu {
        max-width: 210px;
    }
    .nav-menu.header-nav-menu .has-mega-menu:nth-child(2) .sub-megamenu {
        max-width: 255px;
    }

    .mega-menu-column:not(:last-child)::after {
        right: -17px;
    }

    .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .mega-menu-column h4::after {
        width: 25px;
        height: 2px;
    }

    .mega-menu-column ul {
        gap: 6px;
    }

    .mega-menu-column ul li a {
        font-size: 13px;
        padding: 7px 0px 7px 20px;
        white-space: normal;
        /* padding-left: 0; */
    }

    .multiple-image-text .content-wrapper {
        gap: 40px;
    }
    .multiple-image-text {
        padding-block: 60px;
    }
    .multiple-image-text .stats {
        gap: 24px;
        grid-template-columns: 1fr;
    }
    .multiple-image-text .left-section {
        gap: 50px;
    }
    .program-carousel .description {
        max-width: calc(100% - 200px);
        margin: 0;
    }
    .contact-form .container {
        flex-direction: column;
    }
    .contact-form .image-section, .contact-form .form-section {
        max-width: 70%;
        margin-inline: auto;
    }
    .contact-form {
        padding-block: 60px;
    }
    .contact-section .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .programs-cards .programs-grid {
        gap: 30px;
    }
    .programs-cards .program-card {
        padding: 24px;
    }
    .gallery {
        gap: 16px;
    }
    .image-with-event .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .image-with-event .events-section {
        padding: 0;
        grid-row: 1;
    }
    .image-with-event .image-section {
        max-height: 500px;
        height: 100%;
    }
    .join-university .images-grid {
        display: grid;
        grid-template-columns: 60px 1fr 1fr 1fr;
        grid-template-rows: 150px 100px 100px 100px;
        gap: 10px;
    }
    .semi-circle-three {
        margin-top: 0px;
        margin-right: -5px;
    }
    .semi-circle-two {
        max-width: 80px;
        max-height: 80px;
        border-radius: 0px 0 0 80px;
    }
    .semi-circle-one {
        width: 50px;
        height: 50px;
    }
    .acadamics-accordion .accordion-item {
        padding-block: 32px;
    }
    .accordion .accordion-item .accordion-button .circle-svg {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    .workshop-list .date-box {
        display: none;
    }
    .workshop-list .event-image {
        max-width: 300px;
    }
    .workshop-list .event-details {
        margin-right: 20px;
    }
    .workshop-list .event-card {
        padding: 30px 20px;
    }
    .workshop-details .workshop-details-wrapper {
        gap: 20px;
    }
    .workshop-details .sidebar {
        flex: 0 0 350px;
    }
    .eduation-program .image-content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .eduation-program .section-right-column {
        gap: 20px;
    }

    .key-points .section-right-column {
        gap: 20px;
    }
    .key-points .image-content-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* Hero Section */
    .hero-section {
        min-height: 600px;
        height: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Stats Section */
    .stats-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-left-content h2 {
        font-size: 32px;
    }

    .stats-numbers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 42px;
    }

    .stats-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stats-img {
        height: 220px;
    }

    .hero-stats .stat-item{
        max-width: 30%;
        margin-right: 0;
    }
    .hero-stats {
        display: flex;
        justify-content: center;
    }
    .features-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .quote-section .quote-text {
        max-width: 95%;
    }
    .quote-section .cta-wrapper {
        margin-top: 20px;
        gap: 36px;
    }

    .why-choose-section .icons-grid {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .why-choose-section .icons-item {
        max-width: calc((100% - 80px) / 3);
        width: 100%;
    }

    /* Programs */
    .programs-section h2 {
        font-size: 36px;
    }

    .programs-section .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Campus, Testimonial, Event, FAQ */
    .campus-content,
    .testimonial-campus-grid,
    .event-card-grid,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .campus-text h2,
    .testimonial-heading-box h2,
    .campus-cta-box h2,
    .event-info-card h2,
    .faq-text h2 {
        font-size: 32px;
    }

    .mission-container .image-box.grid-part-2 {
        margin-right: 0px;
    }
    .mission-container .image-box.grid-part-3 {
        margin-bottom: 30px;
    }
    .mission-container .mission-content {
        padding: 0;
    }
    .mission-container .feature-card {
        margin-left: -60px;
        padding: 34px; 
    }
    .mission-container .mission-text {
        margin-right: 0;
    }
    .mission-container .mission-title {
        margin-bottom: 20px;
    }
    .mission-container .image-group {
        gap: 16px;
    }
    .mission-container.reverse-section .feature-card {
        margin-right: -60px;
        padding: 34px; 
    }
    .mission-container .mission-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 24px; 
    }
    .mission-container.reverse-section .mission-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    .mission-container.reverse-section .image-box.grid-part-2 {
        margin-right: 0px;
        margin-left: 0px;
    }
    .our-values .value-item {       
        max-width: calc((100% - 60px) / 3);
    }
    .our-values .icon-circle {
        width: 70px;
        height: 70px;
    }
    .our-values .icon-circle img {
        width: 36px;
        height: 36px;
    }
    .our-values .values-grid {
        gap: 20px;
    }
    .our-values .value-item {
        max-width: calc((100% - 40px) / 3);
    }
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .image-gallery-swiper .gallary-swiper {
        max-width: 70%;
    }
    .image-grid .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Footer */
    .footer-top {
        gap: 20px;
    }

    .footer-contact-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .has-submega .sub-megamenu {
        width: max-content;
        min-width: auto;
        max-width: 355px;
    }
    .about-event .container {
        gap: 20px;
    }
}

@media screen and (max-width:900px) {
    .logo-text img {
        width: 110px;
    }
}


/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
    .header-nav-menu .header-nav-main-child {
        padding: 0;
        border-radius: 0;
    }
    .has-mega-menu:hover .dropdown-arrow {
        transform: rotate(0deg);
    }
    .nav-menu.header-nav-menu .has-mega-menu:nth-child(2) .sub-megamenu {
        max-width: 100%;
    }
    .nav-menu.header-nav-menu .has-mega-menu:nth-child(3) .sub-megamenu {
        max-width: 100%;
    }
    .has-submega .sub-megamenu {
        max-width: 100%;
    }
    li.has-mega-menu:hover:after {
        display: none;
    }
    .container {
        padding: 0 20px;
    }
    .multiple-image-text {
        margin-bottom: 40px;
    }
    .accordion-section {
        margin-top: 40px;
    }
    .mission-container .mission-grid {
        grid-template-columns: 1fr;
    }
    .mission-container.reverse-section .mission-grid {
        grid-template-columns: 1fr;
    }
    .mission-container {
        padding-block: 60px;
    }
    .mission-container .feature-card {
        margin-left: 0;
    }
    .mission-container.reverse-section .image-group {
        grid-column: 1;
        grid-row: 2;
    }
    .mission-container.reverse-section .feature-card {
        margin-right: 0px;
    }

    .quote-section .quote-text .quote-person {
        font-size: 20px;
    }

    .quote-section .quote-image {
        margin-bottom: 30px;
    }

    .quote-section .quote-image img {
        width: 50px;
    }

    .quote-section {
        padding-block: 40px;
        margin-top: 40px;
    }
    .program-carousel .nav-btn {
        width: 36px;
        min-width: unset;
        height: 36px;
        min-height: unset;
    }
    .program-carousel .nav-btn svg {
        width: 20px;
        height: 20px;
    }
    .program-carousel .description {
        max-width: calc(100% - 100px);
        margin: 0;
    }
    .program-carousel .swiper-container {
        padding-top: 32px;
    }
    .program-carousel .navigation {
        top: -32px; 
    }
    .gallery {
        grid-template-rows: 300px 300px 300px;
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery .grid-span-two {
        grid-row: auto;
    }
    .about-event .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-event .content-section {
        padding-right: 0px;
        grid-row: 2;
    }
    .about-event {
        padding-block: 60px;
    }
    .image-gallery-swiper .gallary-swiper {
        max-width: 65%;
    }
    .image-gallery-swiper .swiper-btn-prev ,
    .image-gallery-swiper .swiper-btn-next {
        width: 40px;
        height: 40px;
    }
    .image-gallery-swiper .swiper-btn-next svg, .image-gallery-swiper .swiper-btn-prev svg {
        width: 20px;
        height: 20px;
    }
    .image-gallery-swiper .swiper-btn-next {
        right: -20px;
    }
    .image-gallery-swiper .swiper-btn-prev {
        left: -20px;
    }
    .more-events .event-image {
        height: 142px;
        grid-row: 1;
        grid-column: 1;
    }
    .more-events .event-info {
        gap: 8px;
        grid-row: 2;
        grid-column: 1 / span 2;
    }
    .more-events .event-datetime ,.more-events .event-location {
        line-height: 1.5;
    }
    .more-events .event-card {
        grid-template-columns: 1fr 160px;
        gap: 24px;
        padding: 20px;
    }
    .join-university .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .join-university .images-grid {
        display: grid;
        grid-template-columns: 70px 1fr 1fr 1fr;
        grid-template-rows: 230px 170px 170px 170px;
        gap: 16px;
    }
    .semi-circle-one {
        width: 80px;
        height: 80px;
    }
    .semi-circle-two {
        max-width: 120px;
        max-height: 120px;
        border-radius: 0px 0 0 120px;
    }
    .join-university .image-card.img-three {
        padding-right: 70px;
    }
    .semi-circle-three {
        margin-top: 0px;
        margin-right: 15px;
        width: 50px;
        height: 50px;
    }
    .join-university {
        padding-block: 60px;
        position: relative;
    }
    .files-list {
        padding-block: 60px;
    }
    .image-grid .gallery-header {
        margin-bottom: 30px;
    }
    .image-grid {
        padding-block: 60px;
    }
    .image-grid .gallery-grid {
        gap: 16px;
    }
    .acadamics-accordion .accordion-text {
        line-height: 1.5;
        max-width: 526px; 
    }
    .acadamics-accordion .accordion-button {
        gap: 24px;
    }
    .acadamics-accordion {
        padding-block: 60px;
    }
    .acadamics-accordion .program-section-title {
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .workshop-list .event-card {
        padding: 40px 30px;
        flex-direction: column;
        gap: 30px;
    }
    .workshop-list .event-image {
        max-width: 100%;
        max-height: 320px;
        margin: 0;
    }
    .workshop-list .event-details {
        max-width: 100%;
        margin: 0;
    }
    .workshop-list .event-title {
        font-size: 18px;
    }
    .workshop-list .event-btn {
        margin-right: auto;
        margin-left: 0;
    }
    .workshop-list .workshop-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .workshop-list {
        padding-block: 60px;
    }
    .workshop-details .workshop-details-wrapper {
        flex-direction: column-reverse;
    }
    .workshop-data .submit-btn {
        width: fit-content;
        min-width: 110px;
    }
    .workshop-details {
        padding-block: 60px;
    }
    .key-points {
        padding-block: 60px;
    }
    .icon-with-description {
        padding-block: 60px;
    }
    .title-description {
        padding-block: 60px;
    }
    .workshop-details .main-content , .workshop-details .sidebar {
        position: unset;
    }
    .form-container .form-fields-wrapper {
        flex-direction: column;
    }
    .form-wrapper {
        padding-inline: 20px;
    }
    .form-container {
        padding: 30px;
    }
    .student-enquiry {
        padding-bottom: 60px;
        padding-inline: 20px;
    }
    .program-carousel {
        padding-bottom: 60px;
    }
    .student-enquiry .form-container {
        padding: 30px; 
    }
    .has-bottom-space {
        margin-bottom: 60px;
    }

    .key-points .image-content-grid {
        grid-template-columns: 1fr;
    }
    .key-points .section-right-column {
        grid-row: 1;
        position: unset;
    }

    .why-choose-section .icons-item {
        max-width: calc((100% - 40px) / 2);
        width: 100%;
    }
    .why-choose-section .icons-item {
        flex-direction: column;
    }
    .why-choose-section .stat-content {
        text-align: center;
    }
    .why-choose-section {
        padding-block: 60px;
    }
    .total-visiors-panel {
        justify-content: center;
    }

    /* Header - Show Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        max-width: 400px;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        padding: 60px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1200;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav a {
        font-size: 18px;
        color: var(--text-dark);
    }
    .main-nav a:hover {
        color: var(--text-dark);
        opacity: 0.7;
    }
    .nav-menu .menu-wrap {
        display: none;
    }
    .has-mega-menu.active .mobile-nav-menu {
        max-height: 1000px;
        margin-top: 10px;
    }
    .has-mega-menu .mobile-nav-menu {
        margin-top: 10px;
        display: block;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        transition: max-height 0.4s ease ,margin-top 0.4s ease;
    }
    .has-mega-menu .mega-menu-column {
        border: none;
        background: transparent;
    }
    .main-header {
        padding: 16px 0;
    }
    .hero-slider  .swiper-button-next,.hero-slider  .swiper-button-prev {
        width: 24px;
        height: 24px;
    }
    .header-actions.mobile-drawer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 32px;
    }
    .header-actions.mobile-drawer .header-phone {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 16px;
        border: 2px solid #000000;
        border-radius: 25px;
    }
    .header-actions.mobile-drawer .btn-header-primary.header-contact-page  {
        color: var(--white);
        padding: 10px 28px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .header-actions {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .mobile-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: var(--text-dark);
    }

    .multiple-image-text .content-wrapper {
        gap: 60px;
        grid-template-columns: 1fr;
    }
    .multiple-image-text .left-section {
        gap: 40px;
    }
    .multiple-image-text .stat-item h2 {
        font-size: 50px;
    }
    .contact-form .image-section, .contact-form .form-section {
        max-width: 100%;
        margin-inline: auto;
    }
    .contact-section .contact-card {
        padding: 20px;
        max-width: calc((100% - 24px) / 2);
        width: 100%;
        min-width: 250px;
    }
    .contact-section {
        padding: 60px 0px;
    }
    .contact-section .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .contact-section .icon {
        width: 24px;
        height: 24px; 
    }
    .contact-section .cards-grid {
        gap: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .programs-cards  {
        padding-block: 60px;
    }
    .programs-cards .programs-grid {
        grid-template-columns: 1fr;
    }
    .programs-cards .subtitle {
        margin-bottom: 30px;
    }
    .programs-cards .button-group {
        gap: 20px; 
    }

    .article-content {
        padding: 16px;
    }
    .news-section {
        padding-block: 60px;
    }
    .articles-grid {
        gap: 16px;
    }
    .image-with-event {
        padding-block: 60px;
    }
    .image-with-event .event-card {
        padding: 20px 0;
    }
    .image-with-event .event-info {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .image-with-event .event-name {
        margin-bottom: 8px;
    }
    .image-with-event .subtitle {
        margin-bottom: 14px;
    }
    .icons-with-text .container {
        display: flex;
        gap: 40px;
        flex-direction: column;
    }
    .image-gallery-swiper {
        padding-block: 60px;
    }
    .more-events .header {
        margin-bottom: 40px;
    }

    .eduation-program .image-content-grid {
        grid-template-columns: 1fr;
    }
    .eduation-program .section-right-column {
        grid-row: 1;
        position: unset;
    }
    .eduation-program .section-right-column img:nth-child(odd) {
        margin-left: 0;
        width: 100%;
    }
    .eduation-program .section-right-column img:nth-child(even) {
        margin-right: 0;
        width: 100%;
    }

    /* Mega Menu Mobile Styles */
    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        width: 100%;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease;
        border-top: none;
    }

    .has-mega-menu.active .mega-menu {
        max-height: 1500px;
        padding: 15px 0;
    }

    .has-mega-menu:hover .mega-menu {
        transform: none;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mega-menu-column {
        padding: 0;
        background-color: rgba(96, 169, 84, 0.05);
        border-radius: 8px;
        padding-left: 0;
        border-left: 3px solid var(--primary-color);
    }

    .mega-menu-column:not(:last-child)::after {
        display: none;
    }

    .mega-menu-column h4 {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
        padding-bottom: 8px;
        letter-spacing: 0.8px;
    }

    .mega-menu-column h4::after {
        width: 25px;
        height: 2px;
    }

    .mega-menu-column ul {
        gap: 6px;
    }

    .mega-menu-column ul li {
        margin-bottom: 0;
    }

    .mega-menu-column ul li a {
        font-size: 13px;
        padding: 7px 12px;
        padding-left: 0;
    }

    .mega-menu-column ul li a:hover {
        /* background-color: rgba(96, 169, 84, 0.12); */
        padding-left: 20px;
    }

    .has-mega-menu > a .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .has-mega-menu.active > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* sub mega-menu*/
    .has-submega .sub-megamenu {
        display: none;
        position: relative;
        top: 0;
        left: 0;
        padding: 12px;
        background: var(--white);
        /* box-shadow: 0px 10px 40px rgba(0,0,0,0.15); */
        width: 100%;
    }
    .has-submega .sub-megamenu ul li a{
        white-space: normal;
        word-break: break-word;
    }
    .eduation-program {
        padding-block: 60px;
    }
    .forensic-photo-gellary .header {
        margin-bottom: 26px;
    }
    .forensic-photo-gellary {
        padding-block: 60px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 500px;
    }
    .hero-slider .swiper-slide{
       padding-top: 102px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* hero */
    .section-hero {
        min-height: 600px;
        padding-top: 101px;
    }

    /* Stats Section */
    .stats-section {
        padding: 50px 0;
    }

    .stats-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .stats-left-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .stats-description {
        font-size: 14px;
    }

    .stats-numbers {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .stats-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stats-img {
        height: 200px;
    }


    .hero-stats {
        bottom: 20px;
        row-gap: 20px;
        column-gap: 20px;
    }
    .features-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .feature-item {
        flex-direction: column;
        gap: 5px;
    }

    .feature-item .icon {
        font-size: 24px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .feature-item .icon-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    /* Programs Section */
    .programs-section {
        padding: 50px 0;
    }

    .programs-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .programs-section .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-card img {
        height: 220px;
    }

    /* Campus Section */
    .campus-section.container {
        padding-block: 60px 30px;
    }

    .campus-text h2,
    .campus-text p{
        margin-bottom: 10px;
    }
    
    .campus-gallery {
        gap: 12px;
    }

    .campus-img-large {
        min-height: 350px;
    }

    .campus-img-small {
        min-height: 170px;
    }

    .campus-features li {
        font-size: 14px;
    }

    /* Combined Testimonial & Campus Section */
    .testimonial-campus-section {
        padding: 50px 0;
    }

    .testimonial-heading-box h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .testimonial-image-box img {
        min-height: 300px;
    }

    .campus-cta-box {
        padding: 40px 30px;
    }

    .campus-cta-box h2 {
        font-size: 26px;
    }

    .testimonial-quote-card {
        padding: 25px;
    }

    .testimonial-quote-card blockquote p {
        font-size: 15px;
    }

    /* Campus Info Section */
    .campus-info-section {
        padding: 60px 0;
    }

    .campus-info-text h2 {
        font-size: 32px;
    }

    /* Events Section */
    .events-section {
        padding: 50px 0;
    }

    .event-info-card {
        padding: 40px 30px;
    }

    .event-info-card h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .play-button-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 25px;
    }

    .event-image-box img {
        min-height: 400px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 50px 0;
    }

    .faq-image img {
        height: 350px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px;
    }
    .faq-answer {
        padding-inline: 15px;
        font-size: 15px;
    }
    .faq-answer p {
        margin-bottom: 0;
    }

    /* News Section */
    .accordion-section {
        padding: 50px 0;
    }
    .arrow-btn {
        width: 36px;
        height: 36px;
    }
    .arrow-btn svg {
        width: 16px;
        height: 16px;
    }
    .item-wrapper {
       align-items: center;
    }

    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
    }

    .accordion-header h2 {
        font-size: 28px;
    }

    .acco-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .acco-list .item-wrapper {
        gap: 20px;
    }

    .acco-item p {
        margin: 0;
        font-size: 16px;
    }

    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-content h3 {
        font-size: 26px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    /* Footer */
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .footer-column {
        text-align: center;
    }
    .footer-newsletter {
        max-width: 500px;
        width: 100%;
        text-align: center;
    }

    .footer-logo-section {
        max-width: 500px;
        text-align: center;
    }

    .footer-contact-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-newsletter h3,
    .footer-column h4 {
        font-size: 16px;
    }
    .footer-logo-text img {
        margin-inline: auto;
    } 
}

@media screen and (max-width:560px) {
    .contact-section .contact-card {
        max-width: 100%;
    }
    .gallery {
        grid-template-rows: repeat(6, 300px);
        grid-template-columns: 1fr;
    }
    .image-grid .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    /* .hero-section {
        min-height: 350px;
    } */

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.2;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* Stats Section */
    .stats-left-content h2 {
        font-size: 22px;
    }

    .stats-description {
        font-size: 13px;
    }

    .stats-numbers {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .stats-images-grid {
        grid-template-columns: 1fr;
    }

    .stats-img {
        height: 220px;
    }

    .hero-stats .stat-item{
        padding: 5px;
        margin-right: 0;
    }
    .eduation-program .section-right-column {
        gap: 16px;
    }
    .key-points .section-right-column {
        gap: 16px;
    }
    .why-choose-section .icons-item {
        max-width: 100%;
        width: 100%;
    }

    .programs-cards .program-card {
        padding: 16px;
    }
    .programs-cards .program-content {
        padding: 26px 0 0;
    }
    .programs-cards .program-description {
        margin-bottom: 20px;
    }
    .programs-cards .programs-grid:first-child {
        grid-row: 2;
    }
    .programs-cards  .card-with-header {
        grid-row: 1;
    }
    .semi-circle-one , .semi-circle-two ,  .semi-circle-three {
        display: none;
    }
    .join-university .images-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }
    .join-university .image-card.img-one {
        grid-row: 1;
        grid-column: 1;
        aspect-ratio: 1;
    }
    .join-university .image-card.img-two {
        grid-row: 2;
        grid-column: 1;
        aspect-ratio: 1;
    }
    .join-university .image-card.img-three {
        padding-right: 0px;
        grid-column: 1;
        aspect-ratio: 1;
    }

    /* Programs Section */
    .programs-section h2 {
        font-size: 24px;
    }

    .program-card h3 {
        font-size: 20px;
    }

    /* All Section Headings */
    .campus-text h2,
    .testimonial-heading-box h2,
    .campus-cta-box h2,
    .event-info-card h2,
    .faq-text h2,
    .accordion-header h2 {
        font-size: 24px;
    }

    .event-info-card {
        padding: 35px 25px;
    }

    .event-detail-item {
        font-size: 14px;
    }

    .play-button-icon {
        width: 55px;
        height: 55px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .event-image-box img {
        min-height: 300px;
    }

    .testimonial-image-box img {
        min-height: 250px;
    }

    .quality-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        left: 20px;
    }

    .badge-main {
        font-size: 14px;
    }

    /* Campus Gallery */
    .campus-gallery {
        grid-template-columns: 1fr;
    }

    .campus-img-large {
        min-height: 280px;
    }

    .campus-img-small-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .campus-img-small {
        min-height: 180px;
    }

    /* Event Image */
    .event-image img {
        height: 250px;
    }

    /* FAQ */
    .faq-image img {
        height: 300px;
    }

    /* News */
    .acco-item p {
        font-size: 15px;
    }

    .arrow-btn {
        font-size: 18px;
    }

    /* Newsletter */
    .newsletter-content h3 {
        font-size: 22px;
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
    .image-with-event .subtitle {
        margin-bottom: 14px;
        line-height: 1.5;
    }
    .image-with-event .event-card {
        padding: 16px 0;
    }
    .image-with-event .event-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .image-with-event .image-section {
        max-height: 450px;
        height: 100%;
    }
    .icons-with-text .container {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    .image-gallery-swiper .gallary-swiper {
        max-width: 72%;
    }
    .image-gallery-swiper .swiper-btn-prev, .image-gallery-swiper .swiper-btn-next {
        width: 36px;
        height: 36px;
    }
    .more-events .event-card {
        grid-template-columns: 1fr;
    }
    .more-events .event-info {
        grid-column: 1;
        text-align: center;
    }
    .more-events .event-image {
        height: 200px;
        grid-row: 1;
        grid-column: 1;
        width: 100%;
    }

    /* Nav buttons */
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .our-values .value-item {
        max-width: calc((100% - 20px) / 2);
    }
    .mission-container .image-large {
        grid-column: 1 / 3;
        margin-top: 0;
    }
    .mission-container .image-box.grid-part-3 {
        margin-bottom: 0;
    }
    .mission-container.reverse-section .image-large {
        grid-column: 1 / 3;
        grid-row: 2;
    }
    .mission-container .feature-card ,.mission-container.reverse-section .feature-card {
        padding: 20px;
        gap: 20px;
    }
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    .quote-section .quote-text {
        max-width: 100%;
    }
    .quote-section .quote-image {
        margin-bottom: 28px;
    }
    .program-carousel .description {
        max-width: 100%;
    }
    .program-carousel .navigation {
        top: 10px;
    }
    .program-carousel .swiper-container {
        padding-top: 70px; 
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .faq-question,
    .nav-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .main-nav a {
        padding: 0;
    }
}

/* quick-about section */
.institute-overview {
    padding-block: 60px;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}
.overview-content.about-us-page {
    align-items: flex-start;
}
.show-more-btn {
    text-align: end;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    color: var(--primary-color);
}

.overview-image {
    position: relative;
    display: inline-block;
    
}
.overview-image-cover {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overview-image img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 3;
}

.overview-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    z-index: 1;
}

.overview-image::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--text-dark);
    z-index: 2;
}

.overview-text {
    max-width: 600px;
}
.overview-text.about-us-page p {
  margin-bottom: 0;
}
.overview-text.about-us-page .text-btn-cover {
    max-height: 280.5px;
    overflow: hidden;
    transition: 0.4s all ease;
}
.overview-text.about-us-page .text-btn-cover.active {
    max-height: var(--text-wrapper-height);
}

.overview-text h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.overview-text h5 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.overview-text p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
}

.overview-btn {
    text-decoration: none;
    width: fit-content;
}

@media (max-width: 1024px) {
    .overview-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .overview-image {
        max-width: 100%;
        width: 100%;
    }

    .overview-image img {
        width: 100%;
    }

    .overview-text {
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    .overview-text p {
        width: 100%;
        max-width: 100%;
    }

    .overview-image::before {
        top: -6px;
        left: -6px;
    }

    .overview-image::after {
        bottom: -6px;
        right: -6px;
    }

    .institute-overview{
        padding-block: 60px 30px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .overview-content {
        gap: 50px;
    }

    .overview-image {
        max-width: 500px;
    }

    .overview-text {
        max-width: 580px;
    }
}

/* our-programs section*/
 .our-program-section {
     padding-block: 60px;
     text-align: center;
 }

 .our-program-section h2 {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 40px;
     color: var(--text-dark);
 }

 .our-program-cards::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 100%;
     background: linear-gradient(rgb(18 19 19 / 38%), rgb(19 22 25 / 66%));
 }

 .our-program-overlay {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 20px;
     color: var(--white);
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .our-program-overlay h3 {
     margin: 0;
     font-size: 18px;
     font-weight: 600;
     color: var(--white);
     text-align: left;
 }

 .our-program-arrow {
     min-width: 30px;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: var(--primary-color);
     color: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
 }

 .our-program-arrow svg {
     width: 20px;
     height: 20px;
 }

 @media screen and (max-width: 768px){
    .our-program-section{
        padding-block: 30px 60px;
    }
 }

/* faculties section*/
.faculty-section {
    padding-block: 60px;
    text-align: center;
    background: var(--primary-color);
    max-width: 1440px;
}

.faculty-header {
    margin-bottom: 40px;
}

.faculty-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.faculty-header p {
    margin: 0;
    color: var(--white);
    font-size: 16px;
}

.faculty-card {
    background: var(--white);
    height: 100%;
    border-radius: 12px;
    padding: 10px;
}

.faculty-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 1;
    object-fit: cover;
}

.faculty-badge {
    position: absolute;
    top: 4%;
    right: 5%;
    background: var(--crimson);
    padding: 6px 10px;
    color: var(--white);
    font-size: 14px;
    border-radius: 8px;
    font-weight: 600;
}

.faculty-info {
    padding: 22px 0;
}

.faculty-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faculty-info p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.faculty-section-pagination .swiper-pagination-bullet {
    background: var(--silver-grey);
}

.faculty-section-pagination .swiper-pagination-bullet-active {
    background: var(--white);
}

.faculty-swiper .swiper-slide {
    height: auto;
}

.faculty-section-pagination.swiper-pagination {
    margin-top: 30px;
    position: static;
}
@media screen and (max-width: 768px) {
    .faculty-section {
        padding-block: 30px;
    }

    .faculty-header{
        margin-bottom: 20px;
    }
    
    .faculty-header h2 {
        font-size: 32px;
    }

    .faculty-header p {
        line-height: 1.2;
    }

    .faculty-section-pagination.swiper-pagination {
        margin-top: 10px;
        position: static;
    }
}

/* reviews section */
.review-section {
    padding-block: 60px;
}

.review-header {
    text-align: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.review-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.16);
    transition: transform 0.6s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.16);
}

.review-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
}

.review-quote svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    opacity: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info h5 {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}

.review-author-info p {
    font-size: 14px;
    color: var(--sliver-grey);
    margin: 0;
}

.review-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.review-swiper .swiper-slide {
    height: auto;
}

.review-swiper-wrapper {
    padding-block: 10px;
}

.review-pagination .swiper-pagination-bullet {
    background: var(--silver-grey);
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
}

.review-pagination .swiper-pagination-bullet-active {
    background: var(--crimson);
}

@media screen and (max-width: 768px) {
    .review-section {
        padding-block: 30px;
    }

    .review-header {
        margin-bottom: 20px;
    }

    .review-header h2 {
        font-size: 24px;
    }

    .review-card {
        gap: 20px;
    }

    .review-quote {
        font-size: 16px;
        line-height: 1.2;
    }
}

/* news-event section */
.news-alerts-section {
    padding-block: 60px;
}

.news-alerts-header {
    margin: 0 auto 15px;
    border-bottom: 2px solid var(--crimson);
    padding-bottom: 10px;
}

.news-alerts-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: inline-block;
}

.news-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--silver-grey);
    align-items: center;
}

.news-alert-item:last-child {
    border-bottom: unset;
}

.news-alert-date {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    min-width: 139px;
    text-align: center;
}

.news-alert-date svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.news-alert-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.news-alert-title:hover {
    color: var(--crimson);
}

@media screen and (max-width: 768px) {
    .news-alerts-section {
        padding-block: 30px 60px;
    }

    .news-alerts-header {
        margin: 0 auto 20px;
    }

    .news-alerts-header h2 {
        font-size: 24px;
    }

    .news-alert-title {
        font-size: 14px;
    }
}