/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #0f172a;
    color: #e2e8f0;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #1e293b;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #3b82f6;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #cbd5e1;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.social-icons a:hover {
    color: #3b82f6;
}

/* ========== MAIN HEADER ========== */
.main-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 32px;
}

/* ========== LOGO STYLES ========== */
.logo a {
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    padding-top: 24px;
}

.logo-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.2s;
}

.logo-img:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3b82f6;
    letter-spacing: 0.3px;
}

/* ========== NAVIGATION MENU ========== */
.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-menu > li > a:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.nav-menu > li > a.active {
    color: #2563eb;
    background: #eff6ff;
}

.dropdown-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Desktop hover effects */
@media (min-width: 1025px) {
    .dropdown:hover .dropdown-icon,
    .mega-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* ========== DROPDOWN MENU (Standard) ========== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 100;
    border: 1px solid #eef2ff;
}

/* Desktop hover - show dropdown */
@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    text-decoration: none;
    color: #334155;
    font-size: 1.15rem;
    transition: all 0.2s;
}

.dropdown-menu li a i {
    width: 20px;
    color: #3b82f6;
    font-size: 1.1rem;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: #2563eb;
    padding-left: 26px;
}

/* ========== MEGA DROPDOWN MENU ========== */
.mega-dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 32px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 100;
    border-top: 3px solid #2563eb;
}

/* Desktop hover - show mega menu */
@media (min-width: 1025px) {
    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mega-menu-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mega-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.mega-col h4 i {
    color: #2563eb;
    font-size: 1rem;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 10px;
}

.mega-col ul li a {
    text-decoration: none;
    color: #475569;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: block;
    padding: 5px 0;
}

.mega-col ul li a:hover {
    color: #2563eb;
    transform: translateX(5px);
}

/* ========== MOBILE MENU STYLES ========== */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0f172a;
    background: none;
    border: none;
    padding: 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
        z-index: 1002;
    }

    .navbar {
        position: relative;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        padding: 80px 20px 40px;
        transition: 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        overflow-y: auto;
        gap: 8px;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        justify-content: space-between;
        padding: 14px 16px;
        background: #f8fafc;
        border-radius: 10px;
    }

    /* Mobile Dropdowns - Initially hidden */
    .dropdown-menu, 
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        padding: 0;
        margin-top: 8px;
        margin-bottom: 8px;
        border: none;
        display: none;
        background: #f8fafc;
        border-radius: 10px;
        overflow: hidden;
    }

    /* Show dropdown when active class is added */
    .dropdown.active .dropdown-menu,
    .mega-dropdown.active .mega-menu {
        display: block;
    }

    /* Rotate icon when dropdown is active */
    .dropdown.active .dropdown-icon,
    .mega-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 12px 16px 12px 32px;
        background: transparent;
    }

    .dropdown-menu li a:hover {
        background: #eef2ff;
    }

    .mega-menu {
        padding: 16px;
    }

    .mega-menu-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mega-col {
        margin-bottom: 16px;
    }

    .mega-col h4 {
        margin-top: 8px;
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .nav-container {
        padding: 12px 20px;
    }
}

/* ========== HERO SLIDESHOW SECTION WITH PER-SLIDE MESSAGES ========== */
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Slideshow Container */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.slide-content .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Slide Badge */
.slide-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.6);
    text-transform: uppercase;
    animation: fadeInUp 0.6s ease;
}

/* Slide Title */
.slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.slide-title .highlight {
    color: #3b82f6;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Slide Description */
.slide-description {
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Slide Buttons */
.slide-buttons {
    animation: fadeInUp 0.6s ease 0.45s both;
}

.btn-slide {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-slide {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary-slide:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    gap: 16px;
}

/* Slide Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 20;
}

.slide-nav:hover {
    background: rgba(37, 99, 235, 0.8);
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.05);
}

.prev-slide {
    left: 30px;
}

.next-slide {
    right: 30px;
}

/* Slide Dots */
.slide-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: #3b82f6;
}

.dot:hover {
    background: #3b82f6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.scroll-indicator i {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Slide Content Animation on Active */
.slide.active .slide-content .slide-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.slide.active .slide-content .slide-title {
    animation: fadeInUp 0.6s ease 0.15s forwards;
}

.slide.active .slide-content .slide-description {
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.slide.active .slide-content .slide-buttons {
    animation: fadeInUp 0.6s ease 0.45s forwards;
}

/* Slide Transition */
.slide {
    transition: opacity 1.2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-slide {
        left: 15px;
    }
    
    .next-slide {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slideshow {
        min-height: 550px;
        height: auto;
        padding: 80px 0 60px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .btn-slide {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .slide-nav {
        display: none;
    }
    
    .slide-dots {
        bottom: 15px;
    }
    
    .slide-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
    }
    
    .slide-badge {
        font-size: 0.65rem;
    }
}









/* ========== ABOUT US SECTION ========== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-highlight {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.12rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

/* Image Holder */
.about-image-holder {
    position: relative;
}

.image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.2), transparent);
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Image Thumbnails */
.image-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb.active {
    border-color: #2563eb;
    transform: translateY(-3px);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb:hover {
    transform: translateY(-3px);
}

/* About Content */
.about-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.feature-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #64748b;
}

/* About Stats Mini */
.about-stats-mini {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.mini-stat {
    text-align: center;
    flex: 1;
}

.mini-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.mini-label {
    font-size: 0.99rem;
    color: #64748b;
    font-weight: 500;
}

/* CTA Cards */
.cta-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

.cta-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.cta-card p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #f8fafc;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.cta-card-btn:hover {
    background: #2563eb;
    color: white;
    gap: 12px;
    border-color: #2563eb;
}

/* Mission & Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.mv-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission:hover {
    border-bottom: 4px solid #2563eb;
}

.vision:hover {
    border-bottom: 4px solid #10b981;
}

.values:hover {
    border-bottom: 4px solid #f59e0b;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission .mv-icon {
    color: #2563eb;
}

.vision .mv-icon {
    color: #10b981;
}

.values .mv-icon {
    color: #f59e0b;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1);
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.mv-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mission-vision {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .image-main img {
        height: 300px;
    }
    
    .experience-badge {
        padding: 10px 15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
}



/* ========== PROGRAMMES SECTION ========== */
.programmes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.programmes-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.programmes-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.programmes-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.programmes-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.programmes-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.title-gradient {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.programmes-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Programmes Grid */
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Programme Cards */
.programme-card {
    background: white;
    border-radius: 28px;
    padding: 35px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.programme-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Card Background Pattern */
.card-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(37, 99, 235, 0.03) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.programme-card:hover .card-bg-pattern {
    transform: scale(1.2);
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.programme-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.card-icon i {
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.programme-card:hover .card-icon i {
    color: white;
}

/* Card Content */
.card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.card-content > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Programme Highlights */
.programme-highlights {
    list-style: none;
    margin-bottom: 25px;
}

.programme-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #475569;
}

.programme-highlights li i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8fafc;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    background: #2563eb;
    color: white;
    gap: 12px;
    border-color: #2563eb;
}

.learn-more-btn:hover i {
    transform: translateX(4px);
}

.program-count {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Card Specific Gradients on Hover */
.diploma-card:hover {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.certificate-card:hover {
    background: linear-gradient(135deg, #ffffff, #fef3c7);
}

.artisan-card:hover {
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
}

/* Programmes Stats Bar */
.programmes-stats {
    background: white;
    border-radius: 60px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #e2e8f0;
}

/* Programme CTA Banner */
.programmes-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 28px;
    padding: 45px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.programmes-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.programmes-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.btn-apply, .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-apply {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-apply:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    gap: 14px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-contact {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    gap: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .programmes-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        border-radius: 30px;
        padding: 25px;
    }
    
    .stat-item {
        flex: 0 0 auto;
        min-width: 150px;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .programmes-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .programmes-section {
        padding: 50px 0;
    }
    
    .programmes-title {
        font-size: 1.8rem;
    }
    
    .programmes-subtitle {
        font-size: 1rem;
    }
    
    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .programme-card {
        padding: 28px 20px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .programmes-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .stat-item {
        justify-content: flex-start;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-apply, .btn-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .programme-highlights li {
        font-size: 0.85rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}




















/* ========== POPULAR COURSES CTA SECTION ========== */
.popular-courses-pgmct {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.container-pgmct {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header-pgmct {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.section-badge-pgmct {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(5px);
    color: #60a5fa;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-title-pgmct {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.highlight-pgmct {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.section-subtitle-pgmct {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Grid */
.courses-grid-pgmct {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
    margin-bottom: 50px;
}

/* Course Card */
.course-card-pgmct {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner-pgmct {
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.course-card-pgmct:hover .card-inner-pgmct {
    transform: rotateY(5deg) rotateX(5deg);
}

.card-front-pgmct {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.course-card-pgmct:hover .card-front-pgmct {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

/* Image Holder */
.image-holder-pgmct {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.image-holder-pgmct img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-pgmct:hover .image-holder-pgmct img {
    transform: scale(1.1);
}

.image-overlay-pgmct {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(139, 92, 246, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card-pgmct:hover .image-overlay-pgmct {
    opacity: 1;
}

/* Trending Badge */
.trending-badge-pgmct {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.trending-badge-pgmct.hot {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trending-badge-pgmct.limited {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Card Info */
.card-info-pgmct {
    padding: 24px;
}

.card-info-pgmct h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.card-info-pgmct > p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Course Meta */
.course-meta-pgmct {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.course-meta-pgmct span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #475569;
}

.course-meta-pgmct i {
    color: #2563eb;
}

/* Price Tag */
.price-tag-pgmct {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-new {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2563eb;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Enroll Button */
.enroll-btn-pgmct {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    width: 100%;
    justify-content: center;
}

.enroll-btn-pgmct:hover {
    background: #2563eb;
    color: white;
    gap: 12px;
    border-color: #2563eb;
}

/* Floating Shapes */
.floating-shapes-pgmct {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape-pgmct {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: float-pgmct 20s infinite ease-in-out;
}

.shape-1-pgmct {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
    animation-delay: 0s;
}

.shape-2-pgmct {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
    animation-delay: 5s;
}

.shape-3-pgmct {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
    animation-delay: 10s;
}

.shape-4-pgmct {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent);
    animation-delay: 15s;
}

@keyframes float-pgmct {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) translateX(-15px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) translateX(5px) rotate(3deg);
    }
}

/* Bottom CTA Banner */
.bottom-cta-pgmct {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.cta-icon-pgmct {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-pgmct i {
    font-size: 1.8rem;
    color: white;
}

.cta-content-pgmct {
    flex: 1;
}

.cta-content-pgmct h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.cta-content-pgmct p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.cta-content-pgmct strong {
    color: #60a5fa;
}

.cta-button-pgmct {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button-pgmct:hover {
    background: #1d4ed8;
    gap: 15px;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .courses-grid-pgmct {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title-pgmct {
        font-size: 2.2rem;
    }
    
    .bottom-cta-pgmct {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .cta-button-pgmct {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .popular-courses-pgmct {
        padding: 50px 0;
    }
    
    .courses-grid-pgmct {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title-pgmct {
        font-size: 1.8rem;
    }
    
    .section-subtitle-pgmct {
        font-size: 1rem;
    }
    
    .bottom-cta-pgmct {
        padding: 25px 20px;
    }
    
    .cta-content-pgmct h3 {
        font-size: 1.2rem;
    }
    
    .card-info-pgmct h3 {
        font-size: 1.2rem;
    }
    
    .price-new {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .course-meta-pgmct {
        gap: 10px;
    }
    
    .price-tag-pgmct {
        gap: 8px;
    }
    
    .cta-icon-pgmct {
        width: 50px;
        height: 50px;
    }
    
    .cta-icon-pgmct i {
        font-size: 1.4rem;
    }
}
















/* ========== STUDENT LIFE SECTION ========== */
.student-life-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.student-life-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    pointer-events: none;
}

/* Section Header */
.student-life-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.life-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f0fe, #dbeafe);
    color: #2563eb;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.life-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.title-gradient {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.life-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Life Features Grid */
.life-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.life-feature-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.life-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    border-color: #bfdbfe;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.life-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

.life-feature-card:hover .feature-icon-wrapper i {
    color: white;
}

.life-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.life-feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tags span {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #475569;
    transition: all 0.2s ease;
}

.life-feature-card:hover .feature-tags span {
    background: #e0e7ff;
    color: #2563eb;
}

/* Gallery Section */
.life-gallery {
    margin-bottom: 60px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.gallery-header p {
    color: #64748b;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Events Section */
.events-section {
    background: #f8fafc;
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 60px;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.events-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.events-header h3 i {
    color: #2563eb;
    margin-right: 10px;
}

.view-all {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    gap: 10px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #bfdbfe;
}

.event-date {
    text-align: center;
    min-width: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px;
    border-radius: 15px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.event-details p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
}

.event-details p i {
    margin-right: 5px;
    width: 15px;
}

.event-rsvp {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.event-rsvp:hover {
    transform: translateX(5px);
    display: inline-flex;
    gap: 5px;
}

/* Student Testimonials */
.student-testimonials {
    margin-bottom: 60px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.testimonials-header p {
    color: #64748b;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    position: relative;
    width: 80px;
    margin: 0 auto 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2563eb;
}

.quote-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #2563eb;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #475569;
}

.testimonial-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0f172a;
}

.testimonial-item span {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    margin-bottom: 10px;
}

.rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Life CTA */
.life-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 28px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.life-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.life-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.life-cta-content {
    position: relative;
    z-index: 2;
}

.life-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.life-cta-content p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.life-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-tour, .btn-apply-life {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tour {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-tour:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    gap: 15px;
}

.btn-apply-life {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-apply-life:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .life-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .student-life-section {
        padding: 50px 0;
    }
    
    .life-title {
        font-size: 1.8rem;
    }
    
    .life-features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .life-cta {
        padding: 30px 20px;
    }
    
    .life-cta-content h3 {
        font-size: 1.4rem;
    }
    
    .life-cta-buttons {
        flex-direction: column;
    }
    
    .btn-tour, .btn-apply-life {
        justify-content: center;
    }
}






/* ========== FOOTER SECTION ========== */
.footer-section {
    background: #0f172a;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #2563eb);
}

/* Main Footer */
.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Column 1 - About */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.footer-logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: #60a5fa;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-accreditation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.accred-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #60a5fa;
}

.accred-badge i {
    font-size: 0.7rem;
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact li i {
    font-size: 1.1rem;
    color: #3b82f6;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.footer-contact li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: white;
}

/* Newsletter */
.newsletter-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #94a3b8;
}

.newsletter-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-wrapper input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.newsletter-wrapper input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-wrapper input::placeholder {
    color: #64748b;
}

.newsletter-wrapper button {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-wrapper button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.newsletter-feedback {
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 5px;
}

/* Footer Social */
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-footer {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-footer:hover {
    transform: translateY(-3px);
    color: white;
}

.social-footer.facebook:hover {
    background: #1877f2;
}

.social-footer.twitter:hover {
    background: #1da1f2;
}

.social-footer.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-footer.linkedin:hover {
    background: #0077b5;
}

.social-footer.youtube:hover {
    background: #ff0000;
}

.social-footer.whatsapp:hover {
    background: #25d366;
}

/* Footer Features Bar */
.footer-features {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item-footer i {
    font-size: 1.2rem;
    color: #3b82f6;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #60a5fa;
}

.separator {
    color: #334155;
}

.back-to-top-btn {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-bar {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
        align-items: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .features-bar {
        gap: 15px;
    }
    
    .feature-item-footer {
        font-size: 0.8rem;
    }
    
    .feature-item-footer i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-legal a {
        display: block;
    }
    
    .footer-accreditation {
        justify-content: center;
    }
}