.btn,
.dropdown,
.section-title,
.section-title h2 {
    position: relative
}

.btn:before,
.nav-link:after {
    content: '';
    position: absolute;
    left: 0
}

.about-image img,
.btn:hover:before,
.container,
.nav-link.active:after,
.nav-link:hover:after {
    width: 100%
}

.btn,
.nav-link {
    font-size: 1rem;
    text-decoration: none
}

.hero h1,
.stat-text {
    text-transform: uppercase
}

.btn,
.btn-gradient,
.dropdown-item,
.nav-link {
    text-decoration: none
}

*,
.programs .container {
    padding: 0
}

.about-wow,
.btn,
.gallery-item,
.hero {
    overflow: hidden
}

.academic-excellence,
.form-section,
.vision-mission-modern {
    font-family: Poppins, sans-serif
}

#lightbox-close,
.btn,
.call-btn,
.close-tour-btn,
.dropdown-toggle,
.faq-question,
.form-submit,
.menu-toggle,
.program-tab {
    cursor: pointer
}

:root {
    --primary-yellow: #f6bc21;
    --primary-red: #e41f1c;
    --primary-dark: #000000;
    --primary-light: #ffffff;
    --secondary-dark: #1a1a1a;
    --secondary-light: #f8f9fa;
    --accent-blue: #2a5c8b;
    --accent-green: #28a745;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --border-radius: 12px
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: Montserrat, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

html {
    scroll-behavior: smooth
}

body {
    background-color: var(--primary-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3
}

.container {
    padding: 0 20px
}

section {
    padding: 100px 0
}

.section-title h2 {
    color: var(--primary-dark);
    display: inline-block;
    padding-bottom: 15px
}

.section-subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    text-align: center;
    gap: 10px;
    letter-spacing: .5px;
    z-index: 1
}

.hero .tagline,
.hero h1,
.new-hero-title,
.stat-text {
    letter-spacing: 1px
}

.btn:before {
    top: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
    z-index: -1;
    transition: width .5s
}

.btn-primary {
    background: #000;
    color: var(--primary-light);
    border: 2px solid #fff
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(228, 31, 28, .35)
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark)
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    transform: translateY(-5px)
}

.dropdown-item:hover,
.nav-link.active,
.nav-link:hover {
    color: var(--primary-yellow)
}

.btn-outline {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 2px solid var(--primary-light)
}

.call-btn,
.dropdown-item,
.hero,
.menu-toggle,
.nav-link,
.navbar {
    color: var(--primary-light)
}

.navbar {
    background-color: rgba(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    transition: .3s
}

.call-btn,
.dropdown-item,
.dropdown-menu,
.nav-link {
    transition: var(--transition)
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, .98);
    height: 80px;
    border-bottom: 1px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px
}

.hero-btns,
.logo-text {
    justify-content: center
}

.logo {
    height: 60px;
    width: auto;
    display: block
}

.logo-text {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center
}

.dropdown-toggle,
.nav-items {
    display: flex;
    align-items: center
}

.logo-text img {
    height: 70px;
    width: auto;
    object-fit: contain
}

.nav-items {
    gap: 30px
}

.nav-link {
    font-weight: 600;
    padding: 10px 0;
    position: relative
}

.nav-link:after {
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width .3s
}

.admissions-banner:before,
.hero:before {
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    content: ''
}

.dropdown-toggle {
    gap: 8px
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background-color: rgba(0, 0, 0, .9);
    min-width: 250px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 1001;
    border-top: 3px solid var(--primary-yellow);
    padding: 10px 0
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-item {
    display: block;
    padding: 12px 25px;
    border-left: 3px solid transparent
}

.dropdown-item:hover {
    background-color: rgba(246, 188, 33, .1);
    border-left: 3px solid var(--primary-yellow)
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(228, 31, 28, .3)
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(228, 31, 28, .4)
}

.menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    font-size: 1.8rem;
    z-index: 1002
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .9)) center/cover fixed, url('https://t3.ftcdn.net/jpg/02/15/07/36/360_F_215073683_zydmhw7Xhj31P7ZWtw0veYv6fG5uX2NN.jpg') center/cover fixed;
    padding: 200px 0 150px;
    text-align: center;
    margin-top: 90px;
    position: relative
}

.admissions-banner,
.gallery .container a {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow))
}

.hero .tagline,
.stat-number {
    color: var(--primary-yellow)
}

.hero:before {
    height: 100%;
    background: linear-gradient(45deg, rgba(228, 31, 28, .15), rgba(246, 188, 33, .15));
    z-index: 0
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800
}

.hero .tagline {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 600
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: .9;
    font-weight: 300
}

.banner-text h3,
.section-header h2,
.stat-number {
    margin-bottom: 10px
}

.section-header h2,
.wow-title {
    font-weight: 800;
    font-size: 3rem
}

.hero-btns {
    display: flex;
    gap: 25px;
    flex-wrap: wrap
}

.banner-btns,
.hero-stats {
    justify-content: center;
    display: flex
}

.hero-stats {
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1
}

.trust .container .section-title h2,
.wow-title {
    margin-bottom: 20px;
    position: relative
}

.stat-text {
    font-size: 1.1rem;
    opacity: .9
}

.admissions-banner {
    color: var(--primary-light);
    padding: 40px 0;
    position: relative;
    overflow: hidden
}

.admissions-banner:before {
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: .1
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 30px
}

.banner-text h3 {
    font-size: 2.2rem
}

.banner-text p {
    font-size: 1.2rem;
    opacity: .9
}

.banner-btns {
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.trust {
    padding: 50px 0
}

.trust .container .section-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 2px;
    background: linear-gradient(to right, gold, #ff4500)
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px
}

.trust-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: .7;
    transition: .3s
}

.btn-gradient,
.wow-subtitle,
.wow-title {
    opacity: 0;
    transform: translateY(30px)
}

.trust-logo:hover {
    opacity: 1;
    transform: scale(1.05)
}

.about-wow {
    position: relative;
    background: #000;
    padding: 50px 10px;
    color: #fff
}
.about-wow .container{
    padding: 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap
}

.about-image,
.about-text,
.form-left {
    flex: 1;
    min-width: 300px
}

.wow-title {
    line-height: 1.2;
    transition: 1s
}

.wow-title .underline {
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, red, #ff0);
    border-radius: 2px;
    margin-top: 10px
}

.wow-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    transition: 1s .3s
}

.btn-gradient {
    display: inline-block;
    padding: 14px 50px;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(90deg, red, #fc0);
    color: #fff;
    border-radius: 50px;
    transition: .6s .6s
}

.btn-gradient:hover,
.center-card {
    transform: scale(1.05)
}

.btn-gradient:hover {
    filter: brightness(1.1)
}

.vision-mission-modern {
    background-color: #000;
    padding: 0 20px 60px;
    color: #fff
}
.vision-mission-modern .container{
    padding: 0;
}

.new-facility-red .new-facility-icon,
.new-why-choose-us-card[data-color="#e41f1c"]:hover .new-why-choose-us-icon,
.new-why-choose-us-card[data-color="#e41f1c"]:hover h3,
.new-why-choose-us-card[data-color="#e41f1c"]:hover p,
.programs p,
.vision-mission-modern div div h2,
.vision-mission-modern div div p {
    color: #fff
}

.section-header {
    max-width: 900px;
    margin: 0 auto 60px
}

.gradient-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #e41f1c, #f6bc21);
    margin: 15px auto 25px;
    border-radius: 2px
}

.vm-cards-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap
}

.vm-card {
    position: relative;
    border-radius: 25px;
    padding: 50px 30px;
    max-width: 300px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15)
}

.vm-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .25)
}

.card-red,
.red-card .learn-more-btn:hover,
.red-card .program-header {
    background-color: #e41f1c;
    color: #fff
}

.card-yellow,
.yellow-card .learn-more-btn:hover {
    background-color: #f6bc21;
    color: #000
}

.card-yellow p {
    color: #000 !important
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    transition: .4s
}

.vm-card:hover .icon-wrapper {
    transform: scale(1.2);
    background: rgba(255, 255, 255, .3)
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.7
}

.section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1c1c1c
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6
}

.programs {
    background: #000;
    color: #fff;
    padding: 20px 20px 50px
}

.programs .container .section-title h2 {
    color: #fff;
    position: relative;
    margin-bottom: 15px
}

.programs .container .section-title h2::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(to right, gold, #ff4500)
}

.programs-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px
}

.program-body,
.program-card {
    flex-direction: column;
    display: flex
}

.program-card {
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    width: 100%;
    height: fit-content;
    max-width: 350px;
    transition: transform .3s, box-shadow .3s
}

.program-header {
    padding: 20px 15px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600
}

.yellow-card .program-header {
    background-color: #f6bc21;
    color: #fff
}

.program-body {
    padding: 20px 15px;
    gap: 10px;
    border-left: 5px solid;
    border-bottom: 5px solid;
    border-right: 5px solid;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px
}

.gallery .container a,
.learn-more-btn {
    padding: 10px 20px;
    text-decoration: none
}

.red-card .program-body {
    border-color: #e41f1c;
    color: #fff
}

.yellow-card .program-body {
    border-color: #f6bc21;
    color: #fff
}

.program-body ul {
    list-style: none
}

.program-body li {
    margin-bottom: 8px;
    line-height: 1.5;
    text-align: center
}

.learn-more-btn {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    transition: .3s;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: medium;
}

.gallery {
    background-color: var(--secondary-light);
    padding: 40px 20px
}

.gallery .container .section-title h1,
.gallery .container .section-title h2 {
    margin: 0 0 ;
    padding: 0;
    position: relative;
    display: inline-block
}

.academic-excellence .section-header h2::after,
.gallery .container .section-title h2::after,
.leadership-container .section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 2px;
    background: linear-gradient(to right, gold, #ff4500)
}

.gallery .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px
}

.gallery-container {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.gallery-item {
    border-radius: var(--border-radius);
    height: 250px;
    width: 320px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.gallery-item:hover {
    box-shadow: var(--shadow-hover)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s
}

.gallery-item:hover img {
    transform: scale(1.1)
}

#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

#lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    transition: .3s
}

#lightbox-close:hover {
    color: #ff4081
}

.gallery .container a {
    height: fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #fff;
    font-weight: 500
}

.academic-excellence {
    padding: 50px 20px;
    background: linear-gradient(180deg, #f9f9f9, #fff)
}

.container,
.leadership-container {
    max-width: 1200px;
    margin: auto
}

.section-header {
    text-align: center;
    margin-bottom: 70px
}

.section-header .tag {
    display: inline-block;
    background: #ffe6e6;
    color: #e41f1c;
    padding: 6px 14px;
    font-size: .85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px
}

.academic-excellence .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    text-align: center;
    position: relative;
    margin-bottom: 20px
}

.section-header p {
    color: #555;
    max-width: 600px;
    margin: 10px auto 0
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px
}

.excellence-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 15px 40px #b6b6b6;
    transition: transform .4s, box-shadow .4s
}

.excellence-card:hover {
    box-shadow: 0 15px 40px rgb(182, 182, 182, .7);
    transform: translateY(-12px)
}

.form-main:hover,
.form-submit:hover {
    transform: translateY(-2px)
}

.progress-ring {
    transform: rotate(-90deg);
    margin-bottom: 20px
}

.ring-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 12
}

.ring-progress {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 1.6s
}

.footer-links a,
.program-tab,
.social-links a {
    transition: var(--transition)
}

.ring-progress.red {
    stroke: linear-gradient(#e41f1c, #ff6b6b);
    stroke: #e41f1c
}

.ring-progress.gold {
    stroke: #f8b909
}

.value {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
    margin-top: -115px
}

.excellence-card h4 {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 600
}

.excellence-card .year {
    font-size: .9rem;
    color: #777
}

.international-programs {
    background-color: var(--secondary-light)
}

.program-content,
.program-tab {
    background-color: var(--primary-light)
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap
}

.program-tab {
    padding: 15px 35px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-weight: 700
}

.program-tab.active {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--primary-light);
    border-color: transparent
}

.program-content {
    border-radius: var(--border-radius);
    padding: 50px;
    margin-top: 40px;
    box-shadow: var(--shadow)
}

.form-section {
    padding: 40px 20px;
    background: #f9f9f9
}

.form-section-title h1,
.form-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-align: center
}

.form-title-line {
    width: 60px;
    height: 4px;
    margin: 10px auto 20px;
    background: linear-gradient(90deg, #e41f1c, #f8b909);
    border-radius: 2px
}

.form-section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    text-align: center
}

.form-input,
.form-label,
.form-submit {
    font-size: 1rem;
    transition: .3s
}

.form-image-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 80px
}

.form-main {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 20px #80808099;
    transition: .3s
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.form-group {
    position: relative;
    flex: 1
}

.full-width {
    flex: 1 1 100%
}

.form-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: inherit;
    outline: 0;
    background: #fff
}

.form-input:focus {
    border-color: #000;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

textarea.form-input {
    resize: none
}

.form-label {
    position: absolute;
    top: 14px;
    left: 15px;
    color: #888;
    pointer-events: none
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: -10px;
    left: 10px;
    font-size: .85rem;
    color: #000;
    background: #fff;
    padding: 0 5px
}

.form-submit {
    padding: 14px 30px;
    background: linear-gradient(90deg, #e41f1c, #f8b909);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600
}

.form-submit:hover {
    opacity: .9
}

.form-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center
}

.form-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    object-fit: cover
}

.footer {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 100px 0 40px;
    position: relative
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-yellow))
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 70px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px
}

.footer-logo img {
    height: 70px;
    width: auto
}

.footer-logo-text {
    height: 250px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.footer-logo-text img {
    height: 100%;
    width: auto;
    object-fit: contain
}

.footer-about p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.05rem
}

.footer-links h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--primary-yellow);
    position: relative;
    padding-bottom: 10px
}

.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow)
}

.footer-links ul {
    list-style-type: none
}

.footer-links li {
    margin-bottom: 15px
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px)
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px
}

.social-links a {
    width: 45px;
    text-decoration: none;
    height: 45px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem
}

.campus-tour-content video,
.campus-tour-wrapper video {
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5)
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px
}

.contact-item i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-top: 5px
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #888;
    font-size: .95rem
}

@media (max-width:1200px) {
    .hero h1 {
        font-size: 3.5rem
    }

    .hero .tagline {
        font-size: 2rem
    }
}

@media (max-width:992px) {
    .navbar {
        padding: 0 25px
    }

    .menu-toggle {
        display: block
    }

    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, .98);
        flex-direction: column;
        overflow-y: auto;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: right .5s;
        z-index: 1001;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .2)
    }

    .nav-items.active {
        right: 0
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background-color: transparent;
        padding: 0;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s
    }

    .dropdown:hover .dropdown-menu {
        max-height: 500px
    }

    .hero {
        padding: 150px 0 100px
    }

    .hero h1 {
        font-size: 2.8rem
    }

    .hero .tagline {
        font-size: 1.8rem
    }

    .section-title h2 {
        font-size: 2.2rem
    }

    .about-content {
        grid-template-columns: 1fr
    }

    .banner-content {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width:768px) {

    .hero h1,
    .section-header h2 {
        font-size: 2.3rem
    }

    .form-right {
        display: none
    }

    .form-row {
        flex-direction: column
    }

    .form-image-wrapper {
        padding: 0
    }

    .hero .tagline {
        font-size: 1.5rem
    }

    .hero p {
        font-size: 1.1rem
    }

    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 10px 0;
        font-size: small
    }

    .hero-stats {
        gap: 40px
    }

    .stat-number {
        font-size: 2.8rem
    }

    .section-title h2 {
        font-size: 1.9rem
    }
}

@media (max-width:576px) {
    .navbar {
        padding: 0 15px;
        height: 80px
    }

    .logo {
        height: 50px
    }

    .hero {
        padding: 130px 0 80px;
        margin-top: 80px
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero-stats {
        gap: 30px
    }

    .stat-item {
        flex: 0 0 calc(50% - 30px)
    }

    .section-title h2 {
        font-size: 35px
    }

    section {
        padding: 70px 0
    }
}

.new-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    color: #fff
}

.new-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1
}

.new-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(246, 188, 33, .5), rgba(0, 0, 0, .1) 0, rgba(0, 0, 0) 100%);
    z-index: 2
}

.new-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: 1s forwards fadeUp
}

.new-hero-title {
    font-size: 70px;
    font-weight: 900;
    color: #f6bc21;
    animation: 1s .2s forwards fadeUp;
    opacity: 0
}

.new-hero-subtitle {
    font-size: 35px;
    font-weight: 500;
    color: #f0f0f0;
    animation: 1s .4s forwards fadeUp;
    opacity: 0
}

.new-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    font-weight: 500;
    animation: 1s .6s forwards fadeUp;
    opacity: 0
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    animation: 1s .8s forwards fadeUp;
    opacity: 0
}

@keyframes fadeUp {
    0% {
        transform: translateY(30px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@media (max-width:991px) {
    .new-hero-section {
        align-items: flex-start
    }

    .new-hero-title {
        font-size: 60px
    }

    .new-hero-subtitle {
        font-size: 25px
    }

    .new-hero-text {
        font-size: medium
    }

    .new-hero-content {
        padding: 0 20px
    }
}

@media (max-width:768px) {
    .new-hero-subtitle {
        font-size: 20px
    }

    .new-hero-text {
        font-size: small
    }

    .new-hero-content {
        margin-bottom: 50px
    }

    .new-hero-title {
        font-size: 40px
    }
}

.campus-tour-content,
.campus-tour-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 80vh
}

.campus-tour-content video {
    width: 100%;
    max-height: 80vh
}

.campus-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px
}

.campus-tour-wrapper video {
    width: 100%;
    max-height: 80vh;
    display: block
}

.close-tour-btn {
    line-height: 35px;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 35px;
    width: 45px;
    height: 45px;
    color: #fff;
    background: rgba(0, 0, 0, .3);
    border: none;
    border-radius: 50%;
    z-index: 10;
    transition: .3s
}

.close-tour-btn:hover {
    background: rgba(0, 0, 0, .6)
}

@media(max-width:768px) {

    .campus-tour-content,
    .campus-tour-wrapper {
        max-width: 95%
    }

    .close-tour-btn {
        top: -50px;
        right: -10px;
        font-size: 28px;
        width: 35px;
        height: 35px
    }
}

.new-why-choose-us {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    font-family: Arial, sans-serif
}

.new-why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto
}

.new-why-choose-us-header h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative
}

.new-why-choose-us-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #e41f1c, #f6bc21)
}

.new-why-choose-us-header p {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px
}

.new-why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.new-why-choose-us-card {
    background-color: #111;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-top: 4px solid transparent;
    transition: transform .4s;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px
}

.new-why-choose-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: currentColor;
    z-index: 0;
    border-radius: 10px;
    transition: height .6s
}

.new-why-choose-us-card:hover::before {
    height: 100%
}

.new-why-choose-us-card .new-why-choose-us-icon,
.new-why-choose-us-card h3,
.new-why-choose-us-card p {
    position: relative;
    z-index: 1;
    transition: color .4s, transform .4s
}

.new-why-choose-us-icon i {
    font-size: xx-large
}

.new-why-choose-us-card:hover .new-why-choose-us-icon {
    transform: scale(1.2)
}

.new-why-choose-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff
}

.new-why-choose-us-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6
}

.about-chairman-list strong,
.new-facility-yellow .new-facility-icon,
.new-why-choose-us-card[data-color="#f6bc21"]:hover .new-why-choose-us-icon,
.new-why-choose-us-card[data-color="#f6bc21"]:hover h3,
.new-why-choose-us-card[data-color="#f6bc21"]:hover p {
    color: #000
}

.faq-section {
    padding: 20px
}

.faq-container {
    max-width: 900px;
    margin: auto
}

.faq-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px
}

.faq-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(135deg, #e41f1c, #f6bc21);
    display: block;
    margin: 15px auto 0;
    border-radius: 10px
}

.faq-item {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
}

.faq-question {
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #e41f1c, #f6bc21);
    color: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-question .icon {
    font-size: 28px;
    transition: transform .3s
}

.faq-item.active .icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s;
    position: relative;
    padding: 2px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(135deg, #e41f1c, #f6bc21)
}

.faq-answer p {
    background: #fff;
    padding: 10px;
    margin: 0;
    border-radius: 0 0 10px 10px;
    font-size: 16px;
    color: #000;
    line-height: 1.8
}

@media (max-width:600px) {
    .faq-title {
        font-size: 35px
    }

    .faq-question {
        font-size: 13px;
        padding: 10px 18px
    }

    .faq-answer p {
        padding: 5px;
        font-size: 10px
    }
}

.leadership-section {
    padding: 40px 20px;
    background: #f9f9f9
}

.leadership-container .section-title {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    position: relative
}

.leader-cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center
}

.leader-message-card {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    gap: 20px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
    padding: 30px;
    transition: transform .3s, box-shadow .3s
}

.leader-message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .18)
}

.leader-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dcdcdc, #dcdcdc);
    padding: 4px;
    margin-right: 25px;
    flex-shrink: 0
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff
}

.leader-message-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000
}

.leader-message-content span {
    font-size: 15px;
    font-weight: 600;
    color: #e41f1c;
    display: block;
    margin-bottom: 15px
}

.leader-message-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 12px
}

.leader-message-text h4 {
    color: #e41f1c;
    margin: 15px 0 10px
}

.leader-message-text ul {
    margin-left: 20px;
    margin-bottom: 12px
}

.leader-message-text ul li {
    margin-bottom: 6px
}

@media (max-width:1024px) {
    .leader-message-card {
        flex: 1 1 100%;
        flex-direction: column;
        padding: 20px 10px;
        gap: 10px
    }

    .leader-image {
        width: 100px;
        height: 100px;
        padding: 2px;
        margin: 0 0 15px
    }

    .leader-message-content h3 {
        font-size: 18px
    }

    .leader-message-content span,
    .leader-message-text h4 {
        font-size: 14px
    }

    .leader-message-text p,
    .leader-message-text ul {
        text-align: left;
        font-size: 12px
    }
}

.about-chairman-section {
    padding: 60px 0
}

.about-chairman-container {
    max-width: 1200px;
    margin: auto;
    color: #333;
    line-height: 1.8;
    font-family: Arial, sans-serif
}

.about-chairman-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: flex-start
}

.about-chairman-image-wrapper {
    position: sticky;
    top: 100px
}

.about-chairman-image {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    display: block;
    margin: auto
}

.about-chairman-title {
    font-size: 35px;
    font-weight: 700;
    color: black;
    text-align: center;
    margin-bottom: 20px;
    position: relative
}

.about-chairman-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, gold, #ff4500)
}

.about-chairman-name {
    font-size: 25px;
    font-weight: 600;
    text-align: center
}

.about-chairman-tagline {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
    font-size: small;
    color: gray
}

.about-chairman-subtitle {
    font-weight: 600;
    margin-top: 30px;
    text-align: center;
    font-size: 1.3rem;
    color: #e41f1c
}

.about-chairman-list,
.about-chairman-quote,
.about-chairman-text {
    text-align: center;
    font-size: 13px
}

.about-chairman-list {
    padding-left: 20px;
    list-style: none
}

.about-chairman-quote {
    font-style: italic;
    margin-top: 30px;
    color: gray
}

@media(max-width:992px) {
    .about-wrapper {
        flex-direction: column-reverse;
        gap: 50px;
        text-align: center
    }

    .vm-cards-layout {
        flex-direction: column;
        align-items: center
    }

    .center-card {
        transform: scale(1)
    }

    .about-chairman-layout {
        grid-template-columns: 1fr
    }

    .about-chairman-image-wrapper {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        text-align: center
    }

    .about-chairman-image {
        max-width: 300px
    }
}

@media(max-width:600px) {
    .trust-logo {
        height: auto;
        width: 40%
    }

    .trust-logos {
        gap: 30px
    }

    .new-why-choose-us-header h2,
    .wow-title {
        font-size: 35px
    }

    .banner-text p,
    .btn-gradient,
    .new-why-choose-us-header p,
    .program-body li,
    .section-subtitle,
    .wow-subtitle {
        font-size: small
    }

    .wow-title .underline {
        margin-left: 90px
    }

    .btn-gradient {
        padding: 8px 20px
    }

    .new-hero-section {
        height: fit-content
    }

    .new-hero-content {
        margin: 0;
        padding: 50px 10px;
        padding-bottom: 0;
    }

    .about-chairman-content {
        padding: 0 10px
    }

    .about-chairman-title {
        font-size: 35px
    }

    .about-chairman-name {
        font-size: 20px
    }

    .about-chairman-tagline {
        font-size: x-small
    }

    .about-chairman-list li,
    .about-chairman-text {
        font-size: 12px
    }

    .about-chairman-subtitle {
        font-size: medium
    }

    .about-chairman-section {
        padding-bottom: 0
    }
}

.new-facility-section {
    padding: 40px 0
}

.new-facility-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px
}

.new-facility-header {
    margin-bottom: 60px
}

.new-facility-title {
    font-size: 50px;
    font-weight: 700;
    position: relative;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    color: #000;
}

.new-facility-title::after {
    content: "";
    width: 70px;
    height: 3px;
    position: absolute;
    left: 50%;
    display: block;
    margin-top: 10px;
    background: linear-gradient(90deg, #f6bc21, #e41f1c)
}

.new-facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.new-facility-card {
    padding: 45px 40px
}

.new-facility-icon {
    font-size: 42px;
    margin-bottom: 20px
}

.new-facility-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px
}

.new-facility-text {
    font-size: 15px;
    line-height: 1.8
}

.new-facility-red {
    background: #e41f1c;
    color: #fff
}

.new-facility-yellow {
    background: #f6bc21;
    color: #000
}

@media (max-width:900px) {
    .new-facility-grid {
        grid-template-columns: 1fr
    }

    .new-facility-title {
        font-size: 35px
    }

    .new-facility-card {
        padding: 20px
    }
}

.article {
    padding: 0;
    padding-bottom: 50px;
}

.articles-box {
    height: 450px !important;
    width: 100% !important;
    max-width: 350px !important;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: linear-gradient(#f6bc21, #e41f1c);
    padding: 5px !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.articles-box:hover {
    box-shadow: 0 12px 25px rgba(228, 31, 28, 0.5);
    border-color: #f6bc21;
}

.article-image {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 1px 1px 5px black;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.4s ease;
}

.articles-box:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.article-title {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.article-date {
    font-size: 14px;
    color: white;
    margin: 0;
}

@media(max-width:600px) {
    .articles-box {
        height: 400px !important;

    }

    .article-title {
        font-size: 22px;
    }

    .article-date {
        font-size: 12px;
    }

}


/* Main Section */
#article-writing-section {
    padding: 60px 20px;
    padding-top: 120px;
    color: #000;
}

/* Container */
#article-writing-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Title */
#article-writing-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #e41f1c;
    text-align: center;
    -webkit-text-stroke: 1px #f6bc21;
    margin-bottom: 30px;
}

/* Feature Image */
#article-writing-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover;
}

/* Date */
#article-writing-date p {
    color: #e41f1c;
    font-weight: 600;
    text-align: right;
    margin-bottom: 25px;
}

/* Article Content Headings */
#article-writing-content h2 {
    font-size: 24px;
    -webkit-text-stroke: 0.5px orange;
    color: #f6bc21;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Article Paragraphs */
#article-writing-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #article-writing-main-title {
        font-size: 28px;
    }

    #article-writing-content h2 {
        font-size: 20px;
    }

    #article-writing-content p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    #article-writing-main-title {
        font-size: 24px;
    }

    #article-writing-content h2 {
        font-size: 18px;
    }

    #article-writing-content p {
        font-size: 14px;
    }

    #article-writing-date p {
        text-align: left;
    }
}



.home-articles-container {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    gap: 40px;
    margin: 0 auto;
    padding: 0 10px;
}

.home-articles-container h2 {
    text-align: center;
    font-size: 50px;
    position: relative;
    color: #000;
}

.home-articles-container h2::after {
    content: "";
    display: block;
    width: 150px;
    /* length of the line */
    height: 5px;
    /* thickness of the line */
    margin: 10px auto 0;
    /* center it below the h2 */
    background: linear-gradient(to right, #e41f1c, #f6bc21);
    border-radius: 5px;
    /* rounded edges */
}

.home-articles-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.home-articles-container a {
    height: fit-content;
    width: fit-content;
    padding: 5px 20px;
    background: linear-gradient(to right, #e41f1c, #f6bc21);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: medium;
}

@media(max-width:600px) {
    .home-articles-container h2 {
        font-size: 35px;
    }
    .form-section-title h2 , .academic-excellence .section-header h2 ,.banner-text h3{
        font-size: 35px;
    }
}