@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


/* Global Styles */
:root {
    --primary-color: #3e3a74;
    --secondary-color: #53bb3f;
    --accent-color: #feca57;
    --dark-color: #2c3e50;
    --light-color: #f5f6fa;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

b,
strong {
    font-weight: bolder;
    color: #3e3a74;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 40px 15px; */
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: capitalize;
    transition: var(--transition);
    margin: 5px;
}

.btn-primary {
    background-color: #53bb3f;
    color: var(--white);
    /* color: #3e3a74; */
    border: 2px solid #53bb3f;
    width: auto;
}

.btn-primary:hover {
    background-color: #53bb3f;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #3e3a74;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #53bb3f;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.vsaschool {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.1rem !important;
}

.vsa {
    font-size: 2.9rem;
    font-weight: 800;
    letter-spacing: 5px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    color: #3e3a74;
}

.school {
    font-size: 1.9rem;
    font-weight: 400;
    /* letter-spacing: 7px; */
    padding-left: 0px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    color: #53bb3f;
}

/* Top Header */
.top-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--#53bb3f);
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 8px;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}


/* Main Header */
.main-header {
    padding: 2px 0;
    position: relative;
    /* Change from fixed to relative if needed */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px !important;
    margin-right: 10px;
}

.logo h1 {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.main-nav .nav-list {
    display: flex;
}

.main-nav .nav-list li {
    margin-left: 25px;
    position: relative;
}

.main-nav .nav-list li a {
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.main-nav .nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li.active a::after {
    width: 100%;
}

.main-nav .nav-list li a:hover,
.main-nav .nav-list li.active a {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Banner - Left Aligned */
/* Corner header styles */
.corner-header {
    position: absolute;
    bottom: 0px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0;
    /* Remove gap to allow colors to touch */
    /* background: linear-gradient(90deg, #3e3a74 50%, #53bb3f 50%); */
    /* background-color: #53bb3f; */
    border-radius: 8px;
    overflow: child;
    /* Ensures rounded corners for child elements */
    width: 500px;
    /* Increased width */
    height: 90px;
    /* Increased height */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    /* flex-direction: column; */
}

.corner-info {
    font-size: 18px;
    /* Larger font */
    font-weight: bold;
    color: white;
    padding: 0 20px;
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3e3a74;
    /* Blue background */
}

.corner-apply {
    background-color: #53bb3f;
    /* Orange background */
    color: white;
    padding: 0 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 90%;
    height: 100%;
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    align-items: center;
    justify-content: center;
    font-size: 18px;
    /* Larger font */
}

.corner-apply:hover {
    background-color: #53bb3f;
    /* Darker orange on hover */
}

/* Make sure hero-banner has position relative */
.hero-banner {
    position: relative;
    /* ... your existing hero-banner styles ... */
}

.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #000;
    /* Fallback color */
}

.slide.active {
    opacity: 1;
}

.container {
    position: relative;
    z-index: 2;
    /* Above the slider */
    width: 100%;
}

/* Ensure text remains readable */
.hero-content {
    max-width: 600px;
    /* Adjust as needed */
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); */
}

/* Dark overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 0;
}

/* Content styling */
.hero-content {
    position: relative;
    /* Brings content above overlay */
    z-index: 1;
    max-width: 800px;
    padding-left: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 1;
    text-align: left;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* behind content */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

/* .features-section::after{
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #53bb3f;
    margin: 15px auto 0;
} */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(74, 107, 223, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* .feature-item h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #53bb3f;
    margin: 15px auto 0;
} */


.feature-item p {
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 30px;
    /* background-color: #53bb3f; */
    /* background: linear-gradient(rgba(170, 180, 214, 0.9), rgba(173, 255, 199, 0.9)), url('../images/cta-bg.webp') no-repeat center center/cover; */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 2.3rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 590px;
}

.about-text p {
    position: relative;
    padding-left: 40px;
}

.about-text p::before {
    content: "âž¤";
    color: #53bb3f;
    position: absolute;
    left: 0;
}

.about-text p {
    text-indent: -15px;
    text-align: left;
}

/* Classes Section */
.classes-section {
    background-image: url('../images/graduationpic.webp');
    background-size: cover;
    /* or 'contain' depending on your preference */
    background-position: center;
    background-repeat: no-repeat;
    /* Optional: add a semi-transparent overlay if text needs better contrast */
    position: relative;
}

/* Optional: Add overlay for better text readability if needed */
.classes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(59, 58, 58, 0.7);
    /* adjust color and opacity as needed */
    z-index: 0;
}

.classes-section .container {
    position: relative;
    z-index: 1;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.class-item {
    /* Keep all your existing styles */
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: #e7eee5;
    position: relative;
    /* Needed for overlay effects */
    overflow: hidden;
    /* Ensures rounded corners work with pseudo-elements */
    z-index: 1;
    /* Keeps content above the background */
}

/* First grid item - First background image */
.class-item:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(172, 172, 175, 0.9), rgba(139, 214, 195, 0.9));
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    /* Adjust transparency (0.1 to 0.5 works well) */
    z-index: -1;
    /* Places it behind the content */
}

/* Second grid item - Second background image */
.class-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../images/four.webp'); */
    background: linear-gradient(rgba(172, 172, 175, 0.9), rgba(139, 214, 195, 0.9));
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: -1;
}

.class-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.class-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(236, 236, 240, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #3e3a74;
    font-size: 30px;
}

.class-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.class-item p {
    color: var(--black);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 31, 49, 0.9), rgba(7, 22, 75, 0.9)), url('../images/cta-bg.webp') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons .btn-primary {
    border-color: var(--white);
    color: var(--primary-color);
    background-color: var(--white);
}

.cta-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.cta-buttons .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.main-footer {
    background: linear-gradient(rgba(4, 9, 30, 0.9), rgba(4, 9, 30, 0.9)),
        url('../images/libraryimg.webp') no-repeat center center/cover;
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col {
    padding: 0 15px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #53bb3f;
    border-radius: 2px;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #ddd;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding-left: 10px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #3498db;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    /* margin-bottom: 20px; */
    align-items: flex-start;
}

.contact-info i {
    margin-right: 15px;
    color: #3498db;
    font-size: 18px;
    margin-top: 5px;
}

.contact-info span {
    color: #ddd;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .row {
    justify-content: space-between;
    width: 100%;
}

.footer-bottom p {
    color: #ddd;
    font-size: 14px;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.quick-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.quick-info i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.quick-info span {
    color: #ddd;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        text-align: center;
    }

    /* .contact-info {
        margin-bottom: 10px;
    } */

    .main-header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 30px;
        right: 20px;
    }

    .main-nav .nav-list {
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav .nav-list li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        height: auto;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
    }

    .features-grid,
    .classes-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

.mission-vision {
    padding: 0px 0;
    background-color: #ecefec;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #063d6d;
    margin-bottom: 50px;
    font-size: 36px;
    padding-top: 5px;
}

.content-wrapper {
    display: flex;
    gap: 50px;
    padding-bottom: 30px;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    flex-direction: column;
    width: 350px;
    gap: 10px;
}

.tab-btn {
    padding: 20px 25px;
    background: #E3F2FD;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #3e3a74;
}

.tab-btn:hover {
    background: #BBDEFB;
}

.tab-btn.active {
    background: #3e3a74;
    color: white;
}

/* Tab Content */
.tab-content-wrapper {
    flex: 1;
    position: relative;
    min-height: 100px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box;
    padding: 10px;
    /* Increased from 30px */
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    /* Changed from row to column */
    gap: 20px;
    opacity: 1;
    padding-top: 0px;
    padding-left: 10px;
}

.content-image {
    width: 100%;
    max-width: 700px;
    max-height: 400px;
    margin-top: 40px;
    /* Space between logo and image */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-top: 0%;
    margin: 40px auto 0;
}

.content-image img {
    width: 700px;
    height: 300px;
    display: block;
    transition: transform 0.3s ease;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.top-header-bar {
    margin: auto;
}

.content-text {
    flex: 1;
    order: 2;
    /* This will place the text below the image */
    padding-left: 30px;
}

.content-text h2 {
    font-size: 24px;
    /* margin-bottom: 0px; */
    color: #3e3a74;
    padding-top: 1px;
}

.content-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #424242;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .tab-buttons {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .tab-content.active {
        flex-direction: column;
        position: relative;
    }

    .content-image {
        margin-bottom: 20px;
    }
}



/* our focus  */
/* Our Focus Section Styles */
.our-focus-section {
    padding: 30px 0;
    background-color: #3e3a74;
    /* Light gray background */
    text-align: center;
}

.our-focus-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.our-focus-section h2 {
    color: white;
    /* Matching your color scheme */
    font-size: 32px;
    margin-bottom: 20px;
}

.our-focus-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #53bb3f;
    margin: 15px auto 0;
}

.our-focus-section p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}




/* International Students Section */
.international-section {
    position: relative;
    /* Needed for the background */
    padding: 80px 20px 0px 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.international-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1150px;
    margin: 0 auto;
    /* Make both columns equal height */
}

.international-content {
    grid-column: 1;
    /* First column */
    padding-right: 50px;
}

.international-image {
    position: relative;
    height: 100%;
    min-height: 100%;
}

.right-side-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right-side-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.right-side-image:hover img {
    transform: scale(1.03);
}

/* Adjust circular container positioning */
.circular-container {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    z-index: 3;
    transform: scale(0.8);
}

/* Background image that stays fixed */
.international-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/secondpage.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    /* Adjust opacity as needed */
    z-index: 1;
}

.international-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.international-mission,
.international-community {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.international-features {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
}

.international-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.international-features li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #53bb3f;
    font-weight: bold;
}

.international-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.international-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn {
    background-color: #3e3a74;
    color: white;
}

.programs-btn {
    background-color: #53bb3f;
    color: white;
}

.international-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.center-logo {
    width: 100px;
    height: 100px;
}

.center-logo img {
    max-width: 200%;
    max-height: 130%;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 20px;
}

.circular-text p {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Fixed character positioning */
.circular-text span {
    position: absolute;
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-origin: center;
    left: 50%;
    top: 0px;
    transform: translateX(-50%) rotate(var(--rotate)) translateY(-70px) rotate(calc(-1 * var(--rotate)));
}

/* Position each character around the circle */
.circular-text span:nth-child(1) {
    --rotate: 0deg;
}

.circular-text span:nth-child(2) {
    --rotate: 22.5deg;
}

.circular-text span:nth-child(3) {
    --rotate: 45deg;
}

.circular-text span:nth-child(4) {
    --rotate: 67.5deg;
}

.circular-text span:nth-child(5) {
    --rotate: 90deg;
}

.circular-text span:nth-child(6) {
    --rotate: 112.5deg;
}

.circular-text span:nth-child(7) {
    --rotate: 135deg;
}

.circular-text span:nth-child(8) {
    --rotate: 157.5deg;
}

.circular-text span:nth-child(9) {
    --rotate: 180deg;
}

.circular-text span:nth-child(10) {
    --rotate: 202.5deg;
}

.circular-text span:nth-child(11) {
    --rotate: 225deg;
}

.circular-text span:nth-child(12) {
    --rotate: 247.5deg;
}

.circular-text span:nth-child(13) {
    --rotate: 270deg;
}

.circular-text span:nth-child(14) {
    --rotate: 292.5deg;
}

.circular-text span:nth-child(15) {
    --rotate: 315deg;
}

.circular-text span:nth-child(16) {
    --rotate: 337.5deg;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* Keep your existing rotateText animation */
/* Keyframes for rotation */
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* top left  */


/* Responsive Design */
@media (max-width: 768px) {
    .international-container {
        flex-direction: column;
        grid-template-columns: 1fr !important;
    }

    .international-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .rotating-text-container {
        width: 250px;
        height: 250px;
    }

    .rotating-text p {
        transform-origin: 0 125px;
    }
}



/* header nav bar  */
/* Top Header Styles from demo file */
.top-header-warp {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.social-list li {
    margin-right: 15px;
}

.social-list a {
    display: block;
    width: 20px;
    height: 20px;
}

.social-list img {
    width: 100%;
    height: auto;
}

.header-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
    display: flex;
    align-items: center;
}

.header-contact li {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header-contact i {
    margin-right: 5px;
    color: #6c757d;
}

.header-contact a {
    color: #6c757d;
    text-decoration: none;
}

.header-contact a:hover {
    color: #0d6efd;
}

.top-header-link-details {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-link,
.header-account {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header-link li,
.header-account li {
    margin-left: 20px;
}

.header-link a,
.header-account a {
    color: #6c757d;
    text-decoration: none;
}

.header-link a:hover,
.header-account a:hover {
    color: #0d6efd;
}

@media (max-width: 992px) {

    .top-header-details,
    .top-header-link-details {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-contact {
        margin-left: 0;
        justify-content: center;
    }

    .top-header-link-details {
        justify-content: center;
    }

    .social-list,
    .header-link,
    .header-account {
        justify-content: center;
    }
}

/* You can remove the original .top-header styles from your CSS 
   since we're replacing it with the demo header */
/* new header about the navbar */


/* Top Header Bar */
.top-header-bar {
    position: relative;
    z-index: 999;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* Left Side - Contact Info (Dark Background) */
.left-header {
    flex: 0 0 auto;
    /* Don't grow, don't shrink, auto width */
    width: auto;
    /* Let content determine width */
}

.contact-info ul {
    display: inline-flex;
    background-color: #3e3a74;
    margin: 0;
    flex-wrap: wrap;
    position: relative;
    padding: 10px 90px;
    /* Adjusted padding */
    /* required for ::after positioning */
}

.contact-info ul::after {

    /* middle line for the top header  */
    content: "";
    position: absolute;
    right: -20px;
    /* shift to the right */
    top: 0;
    height: 100%;
    width: 30px;
    /* adjust size */
    background-color: #3e3a74;
    /* darker shade for effect */
    transform: skewX(-20deg);
    /* match skew */
}

.contact-info li {
    margin-right: 25px;
    display: flex;
    align-items: flex-start;
    background-color: transparent;
    /* Changed from #2c3e50 to transparent */
}


.contact-info i {
    margin-right: 8px;
    color: #53bb3f;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #53bb3f;
}

/* Right Side - Links + Social (White Background) */
/* Right Side - Links + Social (White Background) */
.right-header {
    background-color: #53bb3f;
    padding: 0;
    flex: 1;
    /* Take remaining space */
    min-width: 0;
    /* Allow shrinking */
}

.right-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* padding: 10px 15px; */
    height: 100%;
    padding-right: 90px;
}

.quick-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.quick-links li {
    margin-right: 15px;
}

.quick-links a {
    color: #3e3a74;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.quick-links a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    margin-left: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons a.facebook {
    /* Background color removed */
    background-color: #3e3a74;
    color: #53bb3f;
    /* Keeping the Facebook blue as text color */
}

.social-icons a.twitter {
    /* Background color removed */
    background-color: #3e3a74;
    color: #53bb3f;
    /* Keeping the Twitter blue as text color */
}

.social-icons a.instagram {
    /* Gradient background removed */
    background-color: #3e3a74;
    color: #53bb3f;
    /* Keeping an Instagram color as text color */
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Responsive adjustments remain unchanged */
@media (max-width: 767.98px) {

    /* .left-header,
    .right-header {
        width: 100%;
    } */

    .contact-info ul {
        flex-direction: column;
    }

    .contact-info li {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .right-content {
        justify-content: center;
        margin-top: 10px;
    }

    .quick-links {
        margin-right: 10px;
    }

    .social-icons li {
        margin: 0 6px;
    }
}


/* student achievement  */
.achievements-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}

.achievements-header {
    text-align: center;
    margin-bottom: 40px;
}

.achievements-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.achievements-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #53bb3f;
    bottom: -10px;
    left: 45%;
}

.achievements-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.image-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.image-link {
    position: relative;
    width: 200px;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(236, 33, 33, 0.1);
    transition: transform 0.3s ease;
}

.image-link:hover {
    transform: translateY(-5px);
}

.image-link img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.box-name {
    padding: 10px;
    background: #f8f8f8;
    font-weight: bold;
}

.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hover-content span {
    display: block;
    text-align: center;
    padding: 2px 0;
}

.image-link:hover .hover-content {
    opacity: 1;
}



/* extra curricular activities  */
/* Image and Content Section Styles */

.image-content-section {
    padding: 0px 0;
    background-color: #fff;
}

.image-content-section .image-col img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-content-section .content-col {
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.image-content-section .content-col p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Activities Section Styles */
.activities-section {
    padding: 0px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #3e3a74;
    font-size: 2rem;
    position: relative;
    padding-top: 40px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #53bb3f;
    margin: 15px auto 0;
}

.activities-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.activities-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.activity-item {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 20px);
    background: #3e3a74;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-item h3 {
    color: #53bb3f;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.activity-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #53bb3f;
}

.activity-item p {
    color: #fff4f4;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* margin-top: 30px; */
    padding-bottom: 10px;
}

.slider-prev,
.slider-next {
    background-color: #53bb3f;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: #3e3a74;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .activity-item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .image-content-section .row {
        flex-direction: column;
    }

    .image-content-section .image-col,
    .image-content-section .content-col {
        width: 100%;
    }

    .image-content-section .content-col {
        padding: 30px 0 0;
    }

    .activity-item {
        flex: 0 0 100%;
    }
}

/* side button change position */
.activities-section {
    position: relative;
    /* make section a positioning context */
}

.slider-controls {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    /* so clicks pass through except buttons */
    width: 100%;
}

.slider-controls button {
    pointer-events: auto;
    /* enable button clicks */
}


.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    /* keep buttons clickable */
}

/* Push slightly outside */
.slider-prev {
    left: -3px;
    /* 2px outside */
}

.slider-next {
    right: -3px;
    /* 2px outside */
}

/* Our Aim Section Styles */
/* Our Aim Content Styles (within activities section) */
.our-aim-content {
    /* margin-top: 10px; */
    padding-top: 10px;
    /* border-top: 1px solid #eee; */
}

.aim-title {
    color: #3e3a74;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.aim-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #53bb3f;
}

.aim-text {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.aim-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #3e3a74;
    display: inline-block;
    padding: 10px 25px;
    border-left: 3px solid #53bb3f;
    background-color: rgba(83, 187, 63, 0.1);
    position: relative;
}

.aim-quote::before,
.aim-quote::after {
    content: '"';
    color: #53bb3f;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .our-aim-content {
        margin-top: 40px;
        padding-top: 30px;
    }

    .aim-text {
        padding: 0 15px;
    }

    .aim-quote {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
}


/* teacher content image  */
.content-image-teacher {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-image-teacher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



.footer-bottom {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #96989B;
    font-size: 14px;
}


/* add this for teacher image  */
/* Add these styles to your existing CSS */
.international-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    /* Makes both columns equal height */
}

.international-image {
    position: relative;
    height: 70%;
}

.image-wrapper {
    position: relative;
    height: 90%;
    width: 100%;
}

.content-image-teacher {
    position: relative;
    height: 100%;
    width: 100%;
}

.content-image-teacher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Circular logo positioning */
.circular-container {
    position: absolute;
    top: 0px;
    left: 20px;
    width: 180px;
    height: 180px;
    z-index: 3;
}

.center-logo {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-logo img {
    max-width: 80%;
    max-height: 80%;
}

/* Keep ALL your other existing CSS exactly as it is *


/* footer style  */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    /* left & right */
    align-items: center;
    /* vertical alignment */
    padding: 10px 20px;
    background-color: transparent;
    /* optional */
    color: #fff;
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}



/* circular last  */
/* Add this to center the V.S.A. text in the middle of the content */
/* Circular Container Positioning */
/* Circular Text Animation - Added to your existing CSS */
.circular-container {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.center-logo {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.center-logo img {
    max-width: 80%;
    max-height: 80%;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}

.circular-text p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: #3e3a74;
    text-transform: uppercase;
}

.circular-text span {
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: 0 90px;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* last  */
/* Circular Text Animation - Add to your CSS */
.circular-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: rotateme 9s linear infinite;
    /* Matches your 9s duration */
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Rotating Image Effect */
.circular-container {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.center-logo {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rotating-text-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rotateme 15s linear infinite;
}

@keyframes rotateme {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Keep existing teacher image styles */
.content-image-teacher {
    /* Your existing styles */
}


/* Loader full screen */
#loader { position: fixed; inset: 0; z-index: 9999; }
body.loaded #loader { display: none; }


.py-5 {
    padding-top: 3rem !important;
    /* padding-bottom: 3rem !important; */
}


.corner-apply {
    background-color: #53bb3f;
    /* Same as .btn-secondary */
    color: var(--white);
    /* Text color same as btn-secondary */
    border: 2px solid var(--white);
    /* Border added */
    padding: 10px 25px;
    /* Adjusted padding */
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Smooth hover transition */
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 6px;
    /* Optional: smooth edges */
    flex-direction: column;
}

/* Hover effect like btn-secondary */
.corner-apply:hover {
    background-color: var(--white);
    color: #000;
    /* Contrast text when hovered */
}



/* another style  */
/* Corner header responsive styles */
.corner-header {
    position: absolute;
    bottom: 0px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0;
    /* background-color: #53bb3f; */
    border-radius: 8px;
    overflow: hidden;
    width: auto;
    /* Changed from fixed width to auto */
    max-width: 500px;
    /* Maximum width */
    height: auto;
    /* Changed from fixed height */
    min-height: 90px;
    /* Minimum height */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    flex-direction: row;
    /* Changed from column to row for better mobile layout */
}

.corner-info {
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 15px 20px;
    /* Increased padding for better touch targets */
    width: auto;
    /* Changed from fixed width */
    min-width: 150px;
    /* Minimum width for text */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3e3a74;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.corner-apply {
    background-color: #53bb3f;
    color: white;
    padding: 15px 25px;
    /* Increased padding for better touch targets */
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    width: auto;
    /* Changed from fixed width */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Hero buttons responsive */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: capitalize;
    transition: var(--transition);
    margin: 5px;
    width: auto;
    /* Ensure buttons don't stretch full width */
    min-width: 180px;
    /* Minimum width for better touch targets */
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .corner-header {
        right: 15px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .corner-header {
        position: static;
        margin: 20px auto 0;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        border-radius: 0;
    }

    .corner-info,
    .corner-apply {
        width: 100%;
        padding: 15px;
        white-space: normal;
        /* Allow text wrapping on mobile */
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {

    .corner-info,
    .corner-apply {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* css for all  */
/* ===== RESPONSIVE DESIGN ADDITIONS ===== */

/* Mobile First Approach */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Tablet Devices */
@media (max-width: 992px) {

    /* Header adjustments */
    .main-header .container {
        flex-direction: column;
        padding: 10px 15px;
    }

    .logo {
        margin-bottom: 15px;
    }

    /* Navigation */
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 30px;
        right: 20px;
    }


    .main-nav .nav-list {
        flex-direction: column;
        padding: 20px 0;
        overflow: auto;
    }

    .main-nav .nav-list li {
        margin: 10px 0;
        text-align: center;
    }

    /* Hero section */
    .hero-content {
        text-align: center;
        padding-left: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Corner header */
    .corner-header {
        position: static;
        margin: 20px auto 0;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        border-radius: 0;
    }

    .corner-info,
    .corner-apply {
        width: 100%;
        padding: 15px;
        white-space: normal;
        text-align: center;
    }

    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    /* International section */
    .international-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .international-content {
        padding-right: 0;
    }

    /* Activities slider */
    .activity-item {
        flex: 0 0 calc(50% - 15px);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* Top header bar */
    /* .top-header-bar .row {
        flex-direction: column;
    } */
    /* 
    .left-header,
    .right-header {
        width: 100%;
    } */

    .contact-info ul {
        /* flex-direction: column; */
        padding: 10px;
        gap: 15px;
    }

    .contact-info li {
        margin-bottom: 8px;
        margin-right: 0;
    }

    .right-content {
        /* flex-direction: column; */
        padding: 10px;
    }

    .quick-links {
        /* margin: 0 0 15px 0; */
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* Hero section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 5px 0;
    }

    /* Find your program section */
    .find-your-program .row {
        flex-direction: column-reverse;
    }

    .program-image {
        margin-top: 30px;
    }

    /* Leadership container */
    .leadership-container {
        padding: 15px;
    }

    /* Activities section */
    .activity-item {
        flex: 0 0 100%;
    }

    .image-content-section .row {
        flex-direction: column;
    }

    .image-content-section .content-col {
        padding: 20px 0 0;
    }

    /* Achievements section */
    .image-links {
        justify-content: center;
    }

    .image-link {
        width: 100%;
        max-width: 280px;
        margin-bottom: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 10px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {

    /* Logo */
    .logo img {
        height: 50px !important;
    }

    .vsa {
        font-size: 1.1rem !important;
    }

    .school {
        font-size: 1.1rem;
        letter-spacing: 5px;
    }

    /* Hero section */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* International section */
    .international-content h2 {
        font-size: 1.8rem;
    }

    .international-buttons {
        flex-direction: column;
    }

    .international-btn {
        width: 100%;
        text-align: center;
    }

    /* Circular container */
    .circular-container {
        width: 120px;
        height: 120px;
        top: 10px;
        left: 10px;
    }

    .center-logo {
        width: 80px;
        height: 80px;
    }

    .rotating-text-shape {
        width: 120px;
        height: 120px;
    }

    /* Corner info */
    .corner-info,
    .corner-apply {
        font-size: 8px;
    }
}

/* Special adjustments for very small screens */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .contact-info a {
        font-size: 12px;
    }
}

/* Orientation-based adjustments */
@media (max-height: 500px) and (orientation: landscape) {
.hero-banner {
        height: auto;
        min-height: 95vh;
        padding: 100px 0 50px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    /* Add any high-resolution asset adjustments here */
}

/* Print styles */
@media print {

    .top-header-bar,
    .main-header,
    .hero-buttons,
    .corner-header,
    .slider-controls,
    .footer-social,
    .international-buttons {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        width: 100%;
        max-width: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* contact us  */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

.form-container {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.form-container h2 {
    margin-bottom: 20px;
    /* font-weight: 600; */
    /* color: #333; */
    margin-bottom: 15px;
    /* font-weight: 600; */
    /* color: #333; */
    text-align: left;
    /* margin-bottom: 40px; */
    color: #3e3a74;
    font-size: 2rem;
    /* position: relative; */
    /* padding-top: 40px; */
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.contact-info2 {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 5px;
    height: 100%;
}

.contact-info2 h2 {
    margin-bottom: 15px;
    /* font-weight: 600; */
    /* color: #333; */
    text-align: left;
    /* margin-bottom: 40px; */
    color: #3e3a74;
    font-size: 2rem;
    /* position: relative; */
    /* padding-top: 40px; */
}

.contact-info2>p {
    margin-bottom: 25px;
    color: #666;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .icon i {
    color: white;
    font-size: 16px;
}

.contact-item .content h6 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #333;
}

.contact-item .content p {
    color: #666;
    margin: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.map-container {
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-info2 {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .form-container,
    .contact-info2 {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-item .icon {
        margin-bottom: 10px;
    }
}


/* mobile navbar menu  */
/* ---------- Desktop / Laptop (default) ---------- */
.menu-toggle {
    display: none;
    /* hide hamburger on desktop */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    z-index: 10001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    transition: transform .3s, opacity .2s;
}

/* default nav for larger screens */
.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}



/* new  */
/* Mobile-specific styles */
@media (max-width: 768px) {
    .image-link {
        max-width: 100%;
        margin-bottom: 30px;
    }

    /* Show content always on mobile */
    .hover-content {
        position: relative;
        opacity: 1;
        background: var(--primary-color);
        padding: 15px;
        height: auto;
        min-height: 120px;
        color: var(--secondary-color);
    }

    .image-link img {
        height: auto;
    }
}

/* Desktop styles (hover effect for screens larger than 768px) */
/* Desktop styles (hover effect for screens larger than 768px) */
@media (min-width: 769px) {
    .hover-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(25, 32, 117, 0.9);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .image-link:hover .hover-content {
        opacity: 1;
    }

    .image-link img {
        height: 220px;
    }
}

/* .accordion-container {
    margin-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header h3 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.accordion-header i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion-content p {
    padding: 20px 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.accordion.active .accordion-content {
    max-height: 300px;
    padding: 0 20px;
}

.accordion.active .accordion-header i {
    transform: rotate(180deg);
} */

.jubilee-message {
    background: var(--light-color);
    color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.jubilee-message:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.05)" x="0" y="0" width="50" height="50"/><rect fill="rgba(255,255,255,0.05)" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 50px;
    transform: rotate(45deg);
    z-index: 0;
}

.jubilee-message p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .accordion-header h3 {
        font-size: 1.2rem;
    }

    .accordion-content p {
        font-size: 1rem;
    }
}

/* @media (max-width: 1100px) {
    .main-nav .nav-list {
        gap: 6px;
        font-size: 14px;
    }
} */

@media (min-width: 991px) and (max-width: 1024px) {
    .main-nav .nav-list {
        gap: 6px;
        font-size: 13px;
    }
}
@media (min-width: 1024px) and (max-width: 1241px) {
    .main-nav .nav-list {
        gap: 6px;
        font-size: 12px;
    }

        .vsa {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 5px;
            line-height: 1;
            margin: 0;
            text-transform: uppercase;
            color: #3e3a74;
        }

                .school {
                    font-size: 1.4rem;
                    font-weight: 400;
                    padding-left: 0px;
                    line-height: 1;
                    text-transform: uppercase;
                    width: 100%;
                    text-align: center;
                    color: rgb(83, 187, 63);
                    margin: 0px;
                }
}

@media (max-width: 768px) {
    .main-header .container {
        align-items: flex-start;
    }

    .main-header {
        padding: 0;
    }
}


@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 999;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 1100;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        margin: 20px 0;
    }

    .nav-list li a {
        color: #333;
        font-size: 18px;
    }

    /* Close button */
    .close-btn {
        position: absolute !important;
        top: 0;
        right: 20px;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        color: #333;
        list-style: none;
    }
}

@media (max-width: 576px) {
    .right-content {
        flex-direction: column;
    }

    .contact-info ul {
        gap: 0;
    }

    .contact-info ul::after {
        right: -15px;
    }

    .right-content {
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    .quick-links {
        display: none;
    }
}



/* new for feature card  */
.skew-wrapper {
    display: flex;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}

/* LEFT SIDE (angled) */
.left-side {
    flex: 1;
    background: #cfcfcf;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Create diagonal slash for left side */
.left-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #cfcfcf;
    transform: skewX(-12deg);
    transform-origin: top right;
    z-index: 1;
}

/* Fix image */
.left-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
    transform: skewX(12deg);
    margin-right: -12.5%;
    /* Adjust to hide the overlap */
    background: #3E3A74;
}

.left-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: skewX(-12deg); */
    /* Counter-skew the image */
}

/* RIGHT SIDE */
.right-side {
    flex: 1;
    background: #3E3A74;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Create diagonal slash for right side */
.right-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3E3A74;
    transform: skewX(-12deg);
    transform-origin: top left;
    z-index: 1;
}

/* Fix content so it stays straight */
.right-inner {
    position: relative;
    z-index: 2;
    transform: skewX(12deg);
    padding: 70px 50px;
    color: white;
    height: 100%;
    margin-left: -12.5%;
    /* Adjust to hide the overlap */
}

/* Title highlight */
.right-inner h2 span {
    color: #53BB3F;
}

/* Yellow line */
.slash-line {
    width: 80px;
    height: 3px;
    background: #53BB3F;
    margin: 15px 0 30px;
}

.right-inner p b {
    color: #53BB3F;
    font-size: 1.3rem;
    /* highlight headings (optional) */
}

.right-inner p {
    font-size: 1.1rem;
}

.right-inner h2 {
    font-size: 2rem;
}

/* Alternative method with single diagonal line in middle */
.skew-wrapper.diagonal-split {
    position: relative;
}

.skew-wrapper.diagonal-split::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    transform: translateX(-50%) rotate(12deg);
    z-index: 3;
}

/* Method 3: Using clip-path for clean diagonal */
.skew-wrapper.clip-path-method .left-side {
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}

.skew-wrapper.clip-path-method .right-side {
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -50px;
}

/* Method 4: Using gradient for the diagonal line */
.diagonal-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(12deg,
            transparent 0%,
            #f5b11c 20%,
            #f5b11c 80%,
            transparent 100%);
    transform: translateX(-50%) rotate(12deg);
    z-index: 3;
}

/* transition  */
.left-inner img {
    opacity: 0;
    animation: leftImage 1.2s ease-out forwards;
}

.right-inner {
    opacity: 0;
    animation: rightContent 1.3s ease-out forwards;
}

@keyframes leftImage {
    0% {
        transform: translateX(-40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes rightContent {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* responsive new  */
/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .skew-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .left-side {
        width: 100%;
        height: 300px;
    }

    .right-side {
        width: 100%;
    }

    /* Remove skew transformations for mobile */
    .left-side::before {
        transform: skewX(0);
    }

    .right-side::before {
        transform: skewX(0);
    }

    .left-inner {
        transform: skewX(0);
        margin-right: 0;
    }

    .right-inner {
        transform: skewX(0);
        margin-left: 0;
        padding: 50px 30px !important;
    }

    /* Adjust clip-path for mobile */
    .skew-wrapper.clip-path-method .left-side {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .skew-wrapper.clip-path-method .right-side {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        margin-left: 0;
    }

    .left-inner img {
        transform: skewX(0);
    }

    /* Adjust animations for mobile */
    @keyframes leftImage {
        0% {
            transform: translateY(-40px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes rightContent {
        0% {
            transform: translateY(40px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    .left-side {
        height: 250px;
    }

    .right-inner {
        padding: 40px 25px !important;
    }

    .right-inner h2 {
        font-size: 24px;
    }

    .slash-line {
        margin: 10px 0 20px;
    }

    .right-inner p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .left-side {
        height: 200px;
    }

    .right-inner {
        padding: 30px 20px !important;
    }

    .right-inner h2 {
        font-size: 20px;
    }

    .right-inner h2 span {
        display: block;
        margin-top: 5px;
    }

    .slash-line {
        width: 40px;
        height: 2px;
        margin: 8px 0 15px;
    }

    .right-inner p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* For very small devices */
@media (max-width: 375px) {
    .left-side {
        height: 180px;
    }

    .right-inner {
        padding: 25px 15px !important;
    }

    .right-inner h2 {
        font-size: 18px;
    }

    .right-inner p {
        font-size: 12px;
    }
}

/* off responsive */

/* new drop down section  */
.section {
    padding: 40px 0;
    background-color: white;
}

.bg-default {
    background-color: white;
}

.text-center {
    text-align: center;
    background-color: aliceblue;
    padding-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.group-xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.main-heading {
    text-align: left;
}

.section-title-dash {
    font-size: 2rem;
    /* font-weight: 700; */
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

/* .section-title-dash:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
}

.section-title-dash-color {
    color: #2c3e50;
} */

/* 
.dots-custom {
    display: flex;
    gap: 10px;
}

.dots-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dots-custom button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dots-custom button:hover {
    background-color: var(--secondary-color);
} */

/* Owl Carousel Custom Styles */
.owl-style-3 {
    position: relative;
}

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    justify-content: center;
}

.image-effect-one {
    position: relative;
    width: 370px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-effect-one:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.image-effect-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-effect-one:hover img {
    transform: scale(1.05);
}

.figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    text-align: left;
}

.image-effect-one:hover .figcaption {
    transform: translateY(0);
}

.figcaption h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.figcaption p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

.link-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-plus:hover {
    background-color: var(--secondary-color);
    transform: rotate(90deg);
}

.link-plus i {
    font-size: 20px;
}

/* Owl Carousel Navigation */
.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color) !important;
    color: white !important;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background-color: var(--secondary-color) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .group-xl {
        justify-content: center;
        text-align: center;
    }

    .main-heading {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-title-dash {
        font-size: 32px;
    }

    .image-effect-one {
        width: 320px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-title-dash {
        font-size: 28px;
    }

    .image-effect-one {
        width: 280px;
        height: 320px;
    }

    .figcaption {
        padding: 20px;
    }

    .figcaption h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .section-title-dash {
        font-size: 24px;
    }

    .image-effect-one {
        width: 100%;
        max-width: 320px;
        height: 300px;
    }
}

/* Animation for fadeIn effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInLeft {
    animation: fadeIn 1s ease forwards;
}


/* Add these styles to hide partially visible cards */
.owl-carousel {
    overflow: hidden;
}

.owl-stage-outer {
    overflow: hidden;
    padding: 0 20px;
    /* Optional: add some padding if needed */
}

.container {
    overflow: hidden;
    /* This will hide the partially visible cards */
}


/* founder section  */
.section-1 {
    padding: 60px 0 10px;
    background-color: white;
}

.features,
.offers,
.featured {
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.justify-content-center {
    justify-content: center;
}

.items {
    display: flex;
    flex-wrap: wrap;
}

/* .col-12 {
    width: 100%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
}

.col-lg-4 {
    width: 33.333%;
} */

.item {
    margin-bottom: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.icon {
    font-size: 60px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.featured {
    color: var(--primary-color);
}

.card:hover .icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.card:hover .icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
} */

.card:hover h4 {
    color: var(--secondary-color);
}

/* p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 0;
} */

/* Custom icons using Font Awesome */
.icon-people-group::before {
    content: "\f0c0";
    /* people-group icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.icon-lightbulb::before {
    content: "\f0eb";
    /* lightbulb icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.icon-rocket::before {
    content: "\f135";
    /* rocket icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .col-lg-4 {
        width: 50%;
    }

    .section-1 {
        padding: 80px 0;
    }

    .card {
        padding: 35px 25px;
    }

    .icon {
        font-size: 55px;
    }
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }

    .section-1 {
        padding: 60px 0;
    }

    .card {
        padding: 30px 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .icon {
        font-size: 50px;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .section-1 {
        padding: 30px 0;
    }

    .card {
        padding: 25px 20px;
    }

    .icon {
        font-size: 45px;
        margin-bottom: 20px;
    }

    h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    p {
        font-size: 14px;
    }
}

/* Demo Styles */
.demo-title {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.demo-title h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 32px;
}

.demo-title p {
    color: var(--medium-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.color-demo {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.primary-box {
    background-color: var(--primary-color);
}

.secondary-box {
    background-color: var(--secondary-color);
}


/* graduation day  */
.graduation-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.graduation-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    min-height: 500px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    /* This ensures children stretch to match height */
}

/* LEFT CONTENT STYLE WITH BACKGROUND COLOR AND BORDER RADIUS */
.graduation-left {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #3e3a74 0%, #2a2760 100%);
    border-radius: 10px 40px 40px 10px;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
/* .graduation-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
} */

/* RIGHT CONTENT STYLE */
.graduation-right {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-gray);
}

/* Ensure both sides have equal height */
/* .graduation-left,
.graduation-right {
    height: 100%;
} */

.graduation-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Left side specific text styles */
.graduation-content-left h3 {
    color: white;
}

/* Right side specific text styles */
.graduation-content-right h3 {
    color: var(--primary-color);
}

.graduation-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* Left side paragraph text */
.graduation-content-left p {
    color: rgba(255, 255, 255, 0.9);
}

/* Right side paragraph text */
.graduation-content-right p {
    color: var(--medium-gray);
}

.graduation-content p:last-child {
    margin-bottom: 0;
}

.graduation-divider {
    width: 80px;
    height: 3px;
    margin: 30px auto;
    border-radius: 2px;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

/* Left side divider */
.graduation-content-left .graduation-divider {
    background: var(--secondary-color);
}

/* Right side divider */
.graduation-content-right .graduation-divider {
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .graduation-wrapper {
        flex-direction: column;
    }

    .graduation-left,
    .graduation-right {
        padding: 40px 30px;
    }

    .graduation-left {
        border-radius: 40px 40px 0 0;
    }

    .graduation-right {
        border-radius: 0 0 40px 40px;
    }
}

@media (max-width: 600px) {
    .graduation-section {
        padding: 30px 15px;
    }

    .graduation-wrapper {
        border-radius: 20px;
    }

    .graduation-left,
    .graduation-right {
        padding: 30px 20px;
    }

    .graduation-left {
        border-radius: 20px 20px 0 0;
    }

    .graduation-right {
        border-radius: 0 0 20px 20px;
    }

    .graduation-content h3 {
        font-size: 24px;
    }

    .graduation-content p {
        font-size: 15px;
    }
}

/* new  */
@media (min-width: 991px) and (max-width: 1024px) {
    .vsa {
        font-size: 2.1rem;
        font-weight: 800;
        letter-spacing: 5px;
        line-height: 1;
        margin: 0;
        text-transform: uppercase;
        color: #3e3a74;
    }

    .school {
        font-size: 1.1rem;
        font-weight: 400;
        /* letter-spacing: 7px; */
        padding-left: 0px;
        line-height: 1;
        margin: 0;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        color: #53bb3f;
    }
}





/* new demo  */
.image-section {
    background-image: url("../images/aboutnew22.webp");
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    position: relative;
}

/* Overlay for background image with your colors */
.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(62, 58, 116, 0.7) 0%,
            /* --primary-color with opacity */
            rgba(62, 58, 116, 0.5) 40%,
            rgba(83, 187, 63, 0.3) 100%
            /* --secondary-color with opacity */
        );
    z-index: 1;
}

.image-section .content {
    width: 30%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 0px 55px 55px 55px;
    border: 2px solid rgba(62, 58, 116, 0.3);
    /* --primary-color border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    color: #333;
}

/* Gradient accent border using your colors */
.image-section .content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
            #3e3a74 0%,
            /* --primary-color */
            #53bb3f 100%
            /* --secondary-color */
        );
    border-radius: 0px 57px 57px 57px;
    /* +2px to account for border width */
    z-index: -1;
    opacity: 0.8;
}


.image-section .content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Optional: Add secondary color accent to heading */
.image-section .content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #53bb3f;
    /* --secondary-color */
    margin-top: 10px;
    border-radius: 2px;
}

.image-section .content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .image-section .content {
        width: 45%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .image-section {
        justify-content: center;
        padding: 20px;
    }

    .image-section .content {
        width: 90%;
        max-width: 500px;
        padding: 30px;
        border-radius: 20px;
        /* Simpler on mobile */
    }

    .image-section .content::before {
        border-radius: 22px;
        /* Match mobile border-radius */
    }
}



/* responsive  */
@media (min-width: 992px) and (max-width: 1024px) {
    .image-section .content {
        width: 40%;
        padding: 30px;
    }

    .image-section {
        padding: 30px;
        height: auto;
    }
}
/* Tablet (Below 992px) */
@media (max-width: 992px) {
    .image-section {
        height: auto;
        padding: 30px;
        justify-content: center;
    }

    .image-section .content {
        width: 55%;
        padding: 30px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 768px) {
    .image-section {
        height: auto;
        padding: 20px;
        justify-content: center;
        text-align: left;
    }

    .image-section .content {
        width: 90%;
        padding: 25px;
        border-radius: 20px;
    }

    .image-section .content h2 {
        font-size: 1.6rem;
    }

    .image-section .content p {
        font-size: 1rem;
    }
}

/* Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .image-section .content {
        padding: 20px;
    }

    .image-section .content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 1400px) {
    .image-section .content {
        width: 35%;
    }
}

@media (max-width: 1200px) {
    .image-section .content {
        width: 45%;
    }
}

@media (max-width: 1024px) {
    .image-section .content {
        width: 55%;
    }
}



/* demo css 11.12  */
#slider {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: visible;
    /* Changed from hidden to visible */
    margin: 0 auto;
}

.dt-sc-main-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Move overflow here instead */
}

.slide-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: visible;
    /* Changed from hidden to visible */
}




/* Overlay */
.slide-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    /* overlay color + opacity */
    pointer-events: none;
    /* so it doesn't block clicks */
}


.slide-container.active {
    opacity: 1;
    z-index: 10;
}

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1351px;
    margin: 0 auto;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Alignment classes */
.align-left {
    text-align: left;
    align-items: flex-start;
}

.align-right {
    text-align: right;
    align-items: flex-end;
}

/* Text styles */
.main-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-title {
    display: inline-block;
    padding: 16px 24px;
    background: rgb(0 0 0 / 8%) !important;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    color: #3E3A74 !important;
    line-height: 1.2;
}

.title-large {
    font-size: 54px;
}

.title-medium {
    font-size: 34px;
}

.subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    max-width: 600px;
    margin-bottom: 40px;
}

.info-list p {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
}

/* Smaller button */
.btn {
    display: inline-block;
    padding: 12px 28px !important;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px !important;
    text-decoration: none;
    cursor: pointer;
    background-color: #3E3A74;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.btn:hover {
    background-color: #53BB3F;
}

/* Shapes */
.shape {
    position: absolute;
    z-index: 9;
}

/* Navigation Dots */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 12px;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.nav-dot.active {
    background: #000;
    transform: scale(1.2);
}

/* Slide-specific colors */
.slide-1 .main-title span:first-child {
    color: #fff;
}

.slide-1 .main-title span:last-child {
    color: #fff;
}

.slide-2 .main-title.title-large {
    color: #fff;
}

.slide-2 .title-medium {
    color: #6f1ab7;
}

.slide-3 .main-title.title-large {
    color: #eb3ede;
}

.slide-3 .title-medium {
    color: #6f1ab7;
}

/* Animation classes */
.animate-first {
    transition: all 0.9s ease;
    opacity: 0;
    transform: translateY(50px);
}

.animate-second {
    transition: all 1.1s ease;
    opacity: 0;
    transform: translateY(50px);
}

.animate-third {
    transition: all 1.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.slide-container.active .animate-first,
.slide-container.active .animate-second,
.slide-container.active .animate-third {
    opacity: 1;
    transform: translateY(0);
}

/* Button rotate effect on hover */
.btn {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

.btn:hover {
    background-color: #53BB3F;
    transform: rotate(8deg);
}

/* Optional: slight bounce on appear */
.slide-container.active .btn {
    animation: bounceIn 0.8s forwards 1.4s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== ROCKET ANIMATION (BOTTOM â†’ TOP) ===== */
@keyframes rocketFly {
    0% {
        transform: translateY(100vh) rotate(-90deg);
        /* bottom, facing right */
        opacity: 0;
    }

    20% {
        transform: translateY(50vh) rotate(-45deg);
        opacity: 1;
    }

    40% {
        transform: translateY(20vh) rotate(-10deg);
    }

    60% {
        transform: translateY(-10vh) rotate(0deg);
        /* straight up */
    }

    80% {
        transform: translateY(-40vh) rotate(5deg);
    }

    100% {
        transform: translateY(-100vh) rotate(0deg);
        /* off the top */
        opacity: 0;
    }
}

.rocket-animation {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Only animate when slide is active */
.slide-container:not(.active) .rocket-animation {
    animation: none;
    opacity: 0;
}

/* ===== SHAPE ANIMATIONS ===== */
.slide-container:not(.active) .shape img {
    animation: none !important;
}

/* Yellow Shape - Zoom In/Out */
@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.yellow-shape-animation img {
    animation: zoomInOut 4s infinite ease-in-out;
    transform-origin: center center;
    will-change: transform;
}

/* Pink Shape - Left/Right Swing */
@keyframes swingLeftRight {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-15px) rotate(-5deg);
    }

    50% {
        transform: translateX(0) rotate(0deg);
    }

    75% {
        transform: translateX(15px) rotate(5deg);
    }
}

.pink-shape-animation img {
    animation: swingLeftRight 6s infinite ease-in-out;
    transform-origin: center bottom;
    will-change: transform;
}

/* Purple Shape - Gentle Floating */
@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-10px) translateX(5px);
    }

    50% {
        transform: translateY(-5px) translateX(-5px);
    }

    75% {
        transform: translateY(-10px) translateX(5px);
    }
}

.purple-shape-animation img {
    animation: gentleFloat 8s infinite ease-in-out;
    will-change: transform;
}

/* ===== ICON BOX STYLES ===== */
.icon-boxes-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 20;
}

.icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.icon-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box:hover .icon-box-title a {
    color: #ff236c !important;
}

.icon-link {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.1);
}

.icon-box-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #333;
    font-weight: 700;
}

.icon-box-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1400px) {
    #slider {
        height: 750px;
    }
}

@media (max-width: 1240px) {
    #slider {
        height: 700px;
    }

    .title-large {
        font-size: 48px;
        line-height: 60px;
    }

    .title-medium {
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    #slider {
        height: 680px;
    }

    .purple-shape-animation img {
        display: none
    }

    .title-large {
        font-size: 42px;
        line-height: 54px;
    }

    .title-medium {
        font-size: 28px;
    }

    .subtitle,
    .info-list p {
        font-size: 16px;
        line-height: 28px;
    }

    .yellow-shape-animation,
    .slide-2 .shape[style*="top: 83px; left: 50%"],
    .slide-3 .shape[style*="top: 83px; left: 50%"] {
        width: 240px !important;
        height: 185px !important;
    }

    .pink-shape-animation,
    .slide-2 .shape[style*="bottom: 100px; right: 10%"],
    .slide-3 .shape[style*="bottom: 120px; left: 10%"] {
        width: 90px !important;
        height: 102px !important;
    }

    .purple-shape-animation {
        width: 220px !important;
        height: 217px !important;
    }
}

@media (max-width: 768px) {
    #slider {
        height: 600px;
    }

    .title-large {
        font-size: 36px;
        line-height: 48px;
    }

    .title-medium {
        font-size: 26px;
    }

    .subtitle,
    .info-list p {
        font-size: 15px;
        line-height: 26px;
    }

    .btn {
        padding: 10px 24px !important;
        font-size: 13px !important;
        min-width: 110px;
    }

    .slide-content {
        padding: 20px;
    }

    .rocket-container {
        width: 180px;
        height: 160px;
        top: 80px;
        right: 3%;
    }

    .yellow-shape-animation,
    .slide-2 .shape[style*="top: 83px; left: 50%"],
    .slide-3 .shape[style*="top: 83px; left: 50%"] {
        width: 180px !important;
        height: 139px !important;
    }

    .pink-shape-animation,
    .slide-2 .shape[style*="bottom: 100px; right: 10%"],
    .slide-3 .shape[style*="bottom: 120px; left: 10%"] {
        width: 70px !important;
        height: 80px !important;
    }

    .purple-shape-animation {
        width: 180px !important;
        height: 177px !important;
    }

    .icon-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #slider {
        height: 550px;
    }

    .title-large {
        font-size: 20px;
        line-height: 40px;
    }

    .title-medium {
        font-size: 24px;
    }

    .subtitle,
    .info-list p {
        font-size: 14px;
        line-height: 24px;
    }

    .btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
        min-width: 100px;
    }

    .rocket-container {
        width: 140px;
        height: 125px;
        top: 60px;
        right: 2%;
    }

    .rocket-container::before {
        width: 100px;
        height: 20px;
    }

    .yellow-shape-animation,
    .slide-2 .shape[style*="top: 83px; left: 50%"],
    .slide-3 .shape[style*="top: 83px; left: 50%"] {
        width: 140px !important;
        height: 108px !important;
    }

    .pink-shape-animation,
    .slide-2 .shape[style*="bottom: 100px; right: 10%"],
    .slide-3 .shape[style*="bottom: 120px; left: 10%"] {
        width: 50px !important;
        height: 57px !important;
    }

    .purple-shape-animation {
        width: 140px !important;
        height: 138px !important;
        top: -30px !important;
    }

    .icon-boxes-grid {
        grid-template-columns: 1fr;
    }
}

/* Pause animation on hover */
#slider:hover .rocket-animation,
#slider:hover .rocket-container::before {
    animation-play-state: paused;
}

/* new for student records on */
.home-blog-section {
    padding: 60px 0;
    background-color: aliceblue;
    overflow: hidden;
}

/* Main container - side-by-side on large screens */
.equal-height-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

/* Columns take half width on large screens */
.equal-height-container>.col-lg-6 {
    flex: 1 1 48%;
    max-width: 48%;
    min-width: 0;
}

/* Blog Card - common styles */
.blog-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* LEFT LARGE CARD */
.blog-card.large {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card.large .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card.large .blog-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: auto;
    flex-shrink: 0;
}

/* General content wrapper */
.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta tags */
.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.entry-date {
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    display: inline-block;
}

.date-color-1 {
    background: #95b226;
}

.date-color-2 {
    background: #3cd8e8;
}

.date-color-3 {
    background: #f1aa00;
}

.date-color-4 {
    background: #e74c3c;
}

.date-color-5 {
    background: #65c8ff;
}

/* Titles */
.blog-title h4,
.blog-titlee h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    flex: 1;
}

.blog-title a,
.blog-titlee a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
}

.blog-title a:hover,
.blog-titlee a:hover {
    color: #95b226;
}

/* Divider */
.divider {
    margin: 10px 0 15px 0;
    height: 2px;
    background: #eee;
    width: 100%;
}

/* RIGHT-SIDE GRID - compact, no extra height */
.right-side-grid {
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Inner row */
.right-side-grid .row {
    height: auto;
    margin: 0 -8px;
}

/* Right-side cards - taller as per your request */
.right-side-grid .blog-card {
    /* min-height: 240px;          
    max-height: 240px; */
    display: flex;
    align-items: center;
    margin-bottom: 0;
    /* We use gap instead */
}

/* Vertical spacing between the two rows of small cards */
.right-side-grid .row>div {
    gap: 10px !important;
    height: 100%;
    max-height: 260px;
    margin-bottom: 20px;
    padding: 0 8px;
}

/* Center content vertically in small cards */
.right-side-grid .blog-content {
    justify-content: center;
    padding: 25px 30px;
    /* Slightly more padding for taller cards */
    text-align: center;
    height: 100%;
}

.right-side-grid .blog-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.right-side-grid .blog-title h4 {
    margin: 0;
    font-size: 1.25rem;
    /* Slightly larger font for better readability */
    line-height: 1.4;
    font-weight: 600;
}

/* Responsive Design */
@media (min-width: 992px) {
    .blog-card.large .blog-img {
        height: 420px;
        object-fit: fill;
    }
}

@media (max-width: 1199px) {
    .blog-card.large .blog-img {
        height: 340px;
        object-fit: fill;
    }
}

@media (max-width: 991px) {
    .equal-height-container {
        flex-direction: column;
    }

    .equal-height-container>.col-lg-6 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .right-side-grid .row>div {
        height: 240px;
        /* Keep tall cards on tablets */
        margin-bottom: 14px;
    }

    .blog-card.large .blog-img {
        height: 300px;
        object-fit: cover;
    }

    .home-blog-section {
        padding: 40px 0;
    }

    .right-side-grid .row {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .blog-card.large .blog-img {
        height: 260px;
    }

    .blog-content {
        padding: 16px;
    }

    .blog-title h4,
    .blog-titlee h4 {
        font-size: 1.1rem;
    }

    .entry-date {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 575px) {
    .right-side-grid .row>div {
        width: 100%;
        height: auto;
        /* Stack vertically on mobile, no fixed height */
        margin-bottom: 14px;
    }

    .blog-card.large .blog-img {
        height: 220px;
    }

    .right-side-grid .row>div:last-child {
        margin-bottom: 0;
    }
}

/* new for student records off */

/* year script on  */
/* Main container for the entire content */
.main-container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

/* Icon and Content Section */
.icon-content-section {
    background-color: #FFFFFF;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0px 20px;
}

/* Icon container */
.icon-container {
    height: 100px;
    /* margin-bottom: 25px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Icon SVG styling */
.custom-icon {
    width: 180px;
    height: 180px;
}

/* Icon heading */
.icon-heading {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

/* Description paragraph */
.description {
    font-size: 18px;
    line-height: 1.4em;
    color: #555;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .custom-icon {
        width: 140px;
        height: 140px;
    }

    .icon-heading {
        font-size: 22px;
    }

    .description {
        font-size: 16px;
        padding: 0 10px;
    }

    .icon-content-section {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .custom-icon {
        width: 110px;
        height: 110px;
    }

    .icon-heading {
        font-size: 20px;
    }

    .description {
        font-size: 15px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .celebration-para {
        margin-top: 40px;
        padding: 25px 15px;
    }

    .celebration-para p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .celebration-para {
        margin-top: 30px;
        padding: 20px 12px;
    }

    .celebration-para p {
        font-size: 16px;
    }
}

/* demo on 17.12  */
.cards-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 30px;
    background-color: #ffffff;
}

.card {
    background-color: #ffffff;
    /* fixed white background */
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    height: 320px;
    /* FIXED HEIGHT */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #e6f4f1;
    color: #0a8f82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #102a43;
}

.card p {
    margin-top: 10px;
    color: #5a6f7c;
    line-height: 1.6;
    font-size: 15px;
    flex-grow: 1;
    /* keeps spacing consistent */
}

/* Responsive */
@media (max-width: 768px) {
    .cards-section {
        flex-direction: column;
    }
}
/* 17.12 off  */
/* year script off */


/* new  */
/* Celebration Paragraph Styles */
.celebration-para {
    text-align: center;
    margin: 20px;
    padding: 30px 20px;
    /* background: linear-gradient(135deg, rgba(140, 216, 146, 0.1) 0%, rgba(33, 40, 65, 0.1) 100%); */
    /* border-radius: 15px; */
    /* border-left: 5px solid #53BB3F; */
    /* border-right: 5px solid #3E3A74; */
    /* position: relative; */
    /* overflow: hidden; */
}

.celebration-para::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #53BB3F, #3E3A74);
}

.celebration-para p {
    font-size: 22px;
    line-height: 1.6;
    color: #213472;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* .celebration-para::after {
    content: 'ðŸŽ‰';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 40px;
    opacity: 0.2;
    z-index: 1;
} */

.celebration-para:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(33, 52, 114, 0.15); */
    transition: all 0.3s ease;
}

@media (min-width: 320px) and (max-width: 768px) {
    .content-container {
        position: relative;
        z-index: 1;
        background: transparent;
        min-height: 0vh !important;
    }

    .icon-content-section {
        background-color: #fff;
        /* border-radius: 8px; */
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 0px 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .content-container {
        position: relative;
        z-index: 1;
        background: transparent;
        min-height: 0vh !important;
    }

.icon-content-section {
    background-color: #FFFFFF !important;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0px 20px;
}
}

@media (min-width: 991px) and (max-width: 1250px) {
    .image-effect-one {
        position: relative;
        width: 300px !important;
        height: 400px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
}

/* new image section on */
/* Fixed background image container */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    /* Places it behind the content */
    overflow: hidden;
}

.fixed-background .background-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/img33.webp');
    background-size: cover;
    /* Ensures image covers entire area[citation:7][citation:10] */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Creates the fixed scroll effect[citation:6] */
}

.fixed-background .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Content container that scrolls over the fixed background */
.content-container {
    position: relative;
    z-index: 1;
    background: transparent;
    min-height: 90vh;
    /* Ensures enough scrollable content */
}

/* Hero section styling */
.hero-section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.hero-contentt {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    width: 100%;
    max-width: 600px;
}

/* Typography styling */
.subtitle {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-contentt h1 {
    font-size: 2rem;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 4px;
    /* font-weight: 700; */
}

h1 .highlight {
    color: #3E3A74;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #53BB3F;
    margin: 4px 0;
}

.description {
    color: rgba(48, 48, 49, 0.62);
    font-size: 18px;
    margin-bottom: 2px;
    line-height: 1.8;
}

/* Skills list styling */
.skills-list {
    list-style: none;
    margin-top: 40px;
}

.skill-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.skill-icon {
    color: #f44a6e;
    margin-right: 16px;
    font-size: 20px;
}

.skill-text {
    font-size: 18px;
    font-weight: 500;
}

/* Additional content to ensure scrolling */
.additional-content {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    margin-top: 60px;
    margin-bottom: 120px;
}

.additional-content h2 {
    color: #1a1a1a;
    margin-bottom: 24px;
    font-size: 32px;
}

.additional-content p {
    color: rgba(48, 48, 49, 0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        justify-content: center;
    }

    .hero-contentt {
        padding: 40px 30px;
    }

    h1 {
        font-size: 36px;
    }

    .fixed-background .background-image {
        background-attachment: scroll;
        /* Better performance on mobile */
    }
}

/* new image section off */

/* vision mission section on  */
/* Vision Section */
.vision-section {
    background-color: #3E3A74;
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #53BA3F;
}

/* Mission Section */
.mission-section {
    background-color: white;
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #3E3A74;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    /* font-weight: 800; */
    /* margin-bottom: 30px; */
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    /* distance from text */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #53BB3F;
    border-radius: 2px;
}

.mission-title {
    color: #53BB3F;
}

.mission-title::after {
    background-color: #53BB3F;
}

/* Content Styling */
.content-text-vm {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content-text-vm:last-child {
    margin-bottom: 0;
}

/* Images */
.img-fluid,
.mission-img2 {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.img-fluid:hover,
.mission-img2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Equal Height Container - THIS IS THE KEY CHANGE */
.equal-height-container-vm {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
    /* Adjust this value to make sections taller/shorter */
    align-items: stretch;
    /* Makes both columns the same height */
}

.equal-height-col-vm {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Columns grow to fill available space */
}

.equal-height-content-vm {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.equal-height-image-vm {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.equal-height-image-vm img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .vision-section,
    .mission-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 38px;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .content-text-vm {
        font-size: 16px;
    }

    .equal-height-container-vm {
        min-height: auto;
        /* On mobile, let content determine height */
        flex-direction: column;
    }

    .equal-height-col-vm {
        margin-bottom: 30px;
    }

    .equal-height-image-vm img {
        height: auto;
        max-height: 300px;
    }
}

/* Text Colors */
.text-white {
    color: white !important;
}

.mission-section .content-text-vm {
    color: var(--text-dark);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Custom bullet points for vision section */
.vision-content {
    position: relative;
}

.vision-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.vision-content li:before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 20px;
}

.mission-content {
    list-style: none;
    padding-left: 0;
}

.mission-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
}

.mission-content li:before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    top: 0;
    color: #53BB3F;
    font-weight: bold;
    font-size: 24px;
}

/* vision mission section off */

/* slider responsive  */
/* ===== RESPONSIVE ADJUSTMENTS FOR SLIDER ===== */
@media (max-width: 1400px) {
    #slider {
        height: 700px;
    }
}

@media (min-width: 320px) and (max-width: 769px) {
.right-side-grid .blog-card {
        display: flex;
        align-items: flex-start;
        margin-bottom: 0;
    }
}


@media (min-width: 1400px) and (max-width: 1900px) {

    .content-container {
        position: relative;
        z-index: 1;
        background: transparent;
        min-height: 60vh !important;
    }
}

@media (max-width: 1240px) {
    #slider {
        height: 600px;
    }
}

@media (max-width: 1024px) {
    #slider {
        height: 500px;
        /* Reduced from 550px */
    }

        .slide-bg-img {
            object-position: center 70%;
        }
}

@media (max-width: 768px) {
    #slider {
        height: 400px;
        /* Further reduced for mobile */
    }

    /* Ensure content doesn't get cropped */
    .slide-content {
        padding: 20px;
        position: relative;
        z-index: 11;
        max-width: 100%;
    }

    /* Adjust overlay for better text visibility */
    .slide-container::after {
        background: rgba(0, 0, 0, 0.3);
        /* Darker overlay for mobile readability */
    }

    /* Simplify animations for mobile */
    .animate-first,
    .animate-second,
    .animate-third {
        transition-duration: 0.6s !important;
    }
}

@media (max-width: 480px) {
    #slider {
        height: 350px;
        /* Minimum height for very small screens */
    }

        .slide-bg-img {
            object-position: center 60%;
        }

    .purple-shape-animation img {
        animation: gentleFloat 8s infinite ease-in-out;
        will-change: transform;
        display: none !important;
    }

    .main-title h1 {
        font-size: 10px !important;
        line-height: 32px !important;
    }

    .pink-shape-animation img {
        animation: swingLeftRight 6s infinite ease-in-out;
        transform-origin: center bottom;
        will-change: transform;
        display: none !important;
    }
}

/* For very tall screens (phones in landscape) */
@media (max-height: 600px) and (max-width: 900px) {
    #slider {
        height: 300px;
    }

    .purple-shape-animation img {
        animation: gentleFloat 8s infinite ease-in-out;
        will-change: transform;
        display: none !important;
    }
}

/* For tablets in landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    #slider {
        height: 450px;
    }
}

/* Ensure the slider container doesn't interfere with other content */
#slider {
    z-index: 1;
}


/*new responsive for contact page */
/* ---------- FIX ADDRESS TEXT CUTTING (991px–1500px) ---------- */
@media (min-width: 991px) and (max-width: 1500px) {

  .contact-item {
    align-items: flex-start;
  }

  .contact-item .content {
    flex: 1;
    min-width: 0;              /* KEY fix for flex overflow */
  }

  .contact-item .content p {
    white-space: normal;
    overflow: visible;
    word-break: break-word;
  }

  .contact-item .icon {
    flex-shrink: 0;
  }
}

