        :root {
            --primary: #0D6B3E;
            --secondary: #18A558;
            --accent-gold: #F4B400;
            --light-bg: #F8FAF8;
            --dark-green: #123524;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #0D6B3E 0%, #18A558 100%);
            --gradient-dark: linear-gradient(135deg, #123524 0%, #0D6B3E 100%);
            --shadow-sm: 0 2px 8px rgba(13, 107, 62, 0.08);
            --shadow-md: 0 8px 24px rgba(13, 107, 62, 0.12);
            --shadow-lg: 0 16px 48px rgba(13, 107, 62, 0.16);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            background-color: var(--white);
            overflow-x: hidden;
        }

        .font-arabic {
            font-family: 'Amiri', serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--dark-green);
        }

        /* Selection */
        ::selection {
            background: var(--primary);
            color: var(--white);
        }

        /* ==================== NAVIGATION ==================== */
        .navbar {
            padding: 1rem 0;
            transition: var(--transition);
            z-index: 1050;
        }

        .navbar.scrolled {
            background: rgba(18, 53, 36, 0.95) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.75rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }
		
		.navbar-logo{
    height:60px;
    width:auto;
    object-fit:contain;
}

        .navbar-brand .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(13, 107, 62, 0.3);
        }

        .navbar-brand .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .navbar-brand .brand-name {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: 1px;
        }

        .navbar-brand .brand-tagline {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 0.25rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 60%;
        }

        .btn-register {
            background: var(--accent-gold);
            color: var(--dark-green);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
        }

        .btn-register:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 180, 0, 0.4);
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 28px;
            height: 20px;
            position: relative;
        }

        .navbar-toggler-icon span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--white);
            position: absolute;
            left: 0;
            transition: var(--transition);
        }

        .navbar-toggler-icon span:nth-child(1) { top: 0; }
        .navbar-toggler-icon span:nth-child(2) { top: 9px; }
        .navbar-toggler-icon span:nth-child(3) { bottom: 0; }

        /* ==================== HERO SECTION ==================== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--dark-green);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg img,
        .hero-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(18, 53, 36, 0.92) 0%, rgba(13, 107, 62, 0.85) 100%);
            z-index: 1;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 120px 0 80px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-badge i {
            color: var(--accent-gold);
        }

        .hero-badge span {
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .hero-title-small {
            font-size: 1.1rem;
            color: var(--accent-gold);
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-title .highlight {
            color: var(--accent-gold);
            position: relative;
        }

        .hero-description {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background: var(--accent-gold);
            color: var(--dark-green);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 30px rgba(244, 180, 0, 0.35);
        }

        .btn-hero-primary:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(244, 180, 0, 0.45);
        }

        .btn-hero-secondary {
            background: transparent;
            color: var(--white);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
            color: var(--white);
        }

        .btn-hero-secondary .play-icon {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.9rem;
        }

        /* Hero Stats */
        .hero-stats {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-number span {
            color: var(--accent-gold);
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .scroll-indicator a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .scroll-indicator a:hover {
            color: var(--white);
        }

        .scroll-indicator .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator .mouse::before {
            content: '';
            width: 4px;
            height: 8px;
            background: var(--white);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 1.5s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        @keyframes scrollWheel {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
        }

        /* ==================== SECTION STYLES ==================== */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(13, 107, 62, 0.08);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .section-badge i {
            color: var(--primary);
            font-size: 0.9rem;
        }

        .section-badge span {
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--dark-green);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ==================== WELCOME SECTION ==================== */
        .welcome-section {
            background: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .welcome-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0z' fill='%230D6B3E' fill-opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
        }

        .welcome-image-wrapper {
            position: relative;
            padding: 20px;
        }

        .welcome-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .welcome-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

.welcome-image-decoration {
    position: absolute;
    width: 97%;
    height: 97%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    top: 10px;
    left: 10px;
    z-index: -1;
}
        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .experience-badge .years {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .welcome-content {
            padding-left: 2rem;
        }

        .welcome-title {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .welcome-heading {
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 800;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .welcome-text {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .welcome-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .welcome-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .welcome-feature i {
            width: 24px;
            height: 24px;
            background: rgba(13, 107, 62, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.75rem;
        }

        .welcome-feature span {
            font-weight: 500;
            color: var(--dark-green);
        }

        .signature-area {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .signature-image {
            font-family: 'Amiri', serif;
            font-size: 1.75rem;
            color: var(--primary);
            font-style: italic;
        }

        .signature-info h5 {
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 0.25rem;
        }

        .signature-info span {
            font-size: 0.9rem;
            color: #666;
        }

        /* ==================== WHY CHOOSE US ==================== */
        .why-section {
            background: var(--white);
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(13, 107, 62, 0.1) 0%, rgba(24, 165, 88, 0.1) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--gradient-primary);
        }

        .feature-card:hover .feature-icon i {
            color: var(--white);
        }

        .feature-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ==================== PROGRAMS SECTION ==================== */
        .programs-section {
            background: var(--light-bg);
        }

        .program-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow-sm);
        }

        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .program-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .program-card:hover .program-image img {
            transform: scale(1.1);
        }

        .program-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .program-content {
            padding: 2rem;
        }

        .program-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 1rem;
        }

        .program-content p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .program-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .program-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--dark-green);
        }

        .program-feature i {
            color: var(--secondary);
            font-size: 0.75rem;
        }

        .btn-program {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 2px solid var(--primary);
            transition: var(--transition);
        }

        .btn-program:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ==================== FACILITIES SECTION ==================== */
        .facilities-section {
            background: var(--white);
        }

        .facility-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 280px;
            cursor: pointer;
        }

        .facility-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .facility-card:hover img {
            transform: scale(1.15);
        }

        .facility-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(18, 53, 36, 0.9) 0%, transparent 60%);
            transition: var(--transition);
        }

        .facility-card:hover .facility-overlay {
            background: linear-gradient(to top, rgba(18, 53, 36, 0.95) 0%, rgba(13, 107, 62, 0.4) 100%);
        }

        .facility-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            color: var(--white);
            transform: translateY(20px);
            transition: var(--transition);
        }

        .facility-card:hover .facility-content {
            transform: translateY(0);
        }

        .facility-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .facility-content p {
            font-size: 0.9rem;
            opacity: 0;
            transition: var(--transition);
        }

        .facility-card:hover .facility-content p {
            opacity: 0.85;
        }

        /* ==================== STUDENT LIFE SECTION ==================== */
        .student-life-section {
            background: var(--light-bg);
        }

        .life-item {
            margin-bottom: 4rem;
        }

        .life-item:last-child {
            margin-bottom: 0;
        }

        .life-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .life-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .life-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding: 2rem;
        }

        .life-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(13, 107, 62, 0.1);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .life-content h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 1rem;
        }

        .life-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .life-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .life-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(13, 107, 62, 0.08);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 500;
        }

        /* ==================== GALLERY SECTION ==================== */
        .gallery-section {
            background: var(--white);
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            background: var(--light-bg);
            color: var(--dark-green);
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            min-height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 53, 36, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 2.5rem;
            color: var(--white);
        }

        @media (max-width: 991px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .gallery-item.tall,
            .gallery-item.wide {
                grid-row: span 1;
                grid-column: span 1;
            }
        }

        /* ==================== VIDEO SECTION ==================== */
        .video-section {
            background: var(--dark-green);
            position: relative;
            overflow: hidden;
        }

        .video-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
        }

        .video-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .video-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .video-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .video-wrapper {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .video-thumbnail {
            position: relative;
        }

        .video-thumbnail img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 53, 36, 0.4);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 3;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--white);
            animation: pulse-ring 2s infinite;
        }

        .play-button i {
            font-size: 2rem;
            color: var(--primary);
            margin-left: 5px;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--accent-gold);
        }

        .play-button:hover i {
            color: var(--dark-green);
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* ==================== TESTIMONIALS SECTION ==================== */
        .testimonials-section {
            background: var(--light-bg);
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
            height: 100%;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--light-bg);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info h5 {
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 0.25rem;
        }

        .testimonial-info span {
            font-size: 0.9rem;
            color: #666;
        }

        .testimonial-rating {
            margin-left: auto;
            color: var(--accent-gold);
        }

        /* Swiper Customization */
        .testimonials-swiper {
            padding-bottom: 60px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--primary);
            opacity: 0.3;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 30px;
            border-radius: 6px;
        }

        /* ==================== ADMISSIONS SECTION ==================== */
        .admissions-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .admissions-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
        }

        .admissions-content {
            position: relative;
            z-index: 2;
        }

        .admissions-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 180, 0, 0.2);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .admissions-badge i {
            color: var(--accent-gold);
            font-size: 1.1rem;
        }

        .admissions-badge span {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .admissions-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .admissions-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
        }

        .timeline-wrapper {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            margin-bottom: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .timeline-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 2rem;
            text-align: center;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 50px;
            right: 50px;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
        }

        .timeline-item {
            text-align: center;
            position: relative;
            flex: 1;
        }

        .timeline-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 2;
        }

        .timeline-icon i {
            color: var(--dark-green);
            font-size: 1.25rem;
        }

        .timeline-item h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline-item span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }

        .seats-counter {
            text-align: center;
            margin-bottom: 2rem;
        }

        .seats-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(244, 180, 0, 0.15);
            padding: 1rem 2rem;
            border-radius: 50px;
            border: 1px solid var(--accent-gold);
        }

        .seats-badge i {
            color: var(--accent-gold);
            font-size: 1.25rem;
        }

        .seats-badge span {
            color: var(--white);
            font-weight: 600;
        }

        .admissions-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-apply {
            background: var(--accent-gold);
            color: var(--dark-green);
            font-weight: 700;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 30px rgba(244, 180, 0, 0.35);
        }

        .btn-apply:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .btn-brochure {
            background: transparent;
            color: var(--white);
            font-weight: 600;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-brochure:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
            color: var(--white);
        }

        @media (max-width: 768px) {
            .timeline {
                flex-direction: column;
                gap: 2rem;
            }
            .timeline::before {
                top: 0;
                bottom: 0;
                left: 25px;
                right: auto;
                width: 3px;
                height: auto;
            }
            .timeline-item {
                display: flex;
                align-items: flex-start;
                gap: 1.5rem;
                text-align: left;
            }
            .timeline-icon {
                margin: 0;
                flex-shrink: 0;
            }
        }

        /* ==================== FAQ SECTION ==================== */
        .faq-section {
            background: var(--white);
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: var(--radius-md) !important;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .accordion-button {
            padding: 1.5rem 2rem;
            font-weight: 600;
            color: var(--dark-green);
            background: var(--white);
            font-size: 1.05rem;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' viewBox='0 0 16 16' fill='%230D6B3E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            padding: 1.5rem 2rem;
            color: #666;
            line-height: 1.8;
            background: var(--light-bg);
        }

        /* ==================== LOCATION SECTION ==================== */
        .location-section {
            background: var(--light-bg);
        }

        .map-wrapper {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 100%;
            min-height: 450px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: none;
        }

        .contact-wrapper {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }

        .contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(13, 107, 62, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 1.25rem;
            color: var(--primary);
        }

        .contact-info h5 {
            font-weight: 600;
            color: var(--dark-green);
            margin-bottom: 0.25rem;
        }

        .contact-info p,
        .contact-info a {
            color: #666;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-info a:hover {
            color: var(--primary);
        }

        .quick-contact-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn-whatsapp {
            flex: 1;
            background: #25D366;
            color: var(--white);
            font-weight: 600;
            padding: 1rem;
            border-radius: 50px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition);
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-call {
            flex: 1;
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
            padding: 1rem;
            border-radius: 50px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition);
        }

        .btn-call:hover {
            background: var(--dark-green);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cpath d='M40 0L80 40L40 80L0 40L40 0z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            background: var(--white);
            color: var(--primary);
            font-weight: 700;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .btn-cta:hover {
            background: var(--accent-gold);
            color: var(--dark-green);
            transform: translateY(-3px);
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--dark-green);
            color: var(--white);
            padding-top: 80px;
        }

        .footer-brand {
            margin-bottom: 1.5rem;
        }

        .footer-brand .logo-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-brand h4 {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-about {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 0.7rem;
            color: var(--secondary);
        }

        .footer-contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .footer-contact-item i {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .footer-contact-item p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            line-height: 1.6;
        }

        .footer-bottom {
            margin-top: 60px;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--accent-gold);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent-gold);
            color: var(--dark-green);
            transform: translateY(-5px);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--dark-green);
                padding: 1.5rem;
                border-radius: var(--radius-md);
                margin-top: 1rem;
            }

            .welcome-content {
                padding-left: 0;
                padding-top: 2rem;
            }

            .life-content {
                padding: 2rem 0 0;
            }

            .hero-stats {
                margin-top: 3rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .hero-content {
                padding: 100px 0 60px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .welcome-features {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 1rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .quick-contact-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand .brand-text {
                display: none;
            }

            .hero-badge {
                padding: 0.4rem 1rem;
            }

            .hero-badge span {
                font-size: 0.8rem;
            }

            .stat-item {
                padding: 0.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .admissions-buttons .btn-apply,
            .admissions-buttons .btn-brochure {
                width: 100%;
                justify-content: center;
            }
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-green);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--white);
            margin: 0 auto 1.5rem;
            animation: pulse 1.5s infinite;
        }
		
		.loader-logo {
    width: 140px;
    height: 140px;
    background: transparent;
    animation: pulse 1.5s infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .loader-text {
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
        }


.footer-logo{
    width:150px;
    height:150px;
    object-fit:contain;
    margin-bottom:15px;
    background:#fff;
    padding:10px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}