        @import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

        /* ======== PROFESSIONAL COLOR SCHEME ======== */
        :root {
            --primary-red: #fe0000;
            --dark-red: #dc0b0b;
            --light-red: #FF5252;
            --primary-green: #2E7D32;
            --dark-green: #005005;
            --light-green: #60AD5E;
            --accent-gold: #FFC107;
            --dark-text: #212121;
            --medium-text: #666666;
            --light-text: #9E9E9E;
            --background-light: #FAFAFA;
            --background-white: #FFFFFF;
            --border-light: #EEEEEE;
        }

        /* ======== GLOBAL STYLES ======== */
        * {
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.7;
            font-family: "Roboto", sans-serif;
            -webkit-font-smoothing: antialiased;
            font-size: 16px;
            color: var(--medium-text);
            font-weight: 400;
            background-color: var(--background-white);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Exo", sans-serif;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        h1 {
            font-size: 3rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 2rem;
        }

        h4 {
            font-size: 1.5rem;
        }

        h5 {
            font-size: 1.25rem;
        }

        h6 {
            font-size: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover,
        a:focus {
            color: var(--dark-red);
            text-decoration: none;
        }

        /* ======== New Page Header with Background Image ======== */
        .blog-header {
            margin-top: 7%;
            background: linear-gradient(rgba(137, 6, 6, 0.87), rgba(137, 6, 6, 0.87)),
                url("../images/slides/1.jpg") center center / cover no-repeat;
            color: #fff;
            padding: 40px 0;
            text-align: center;
            position: relative;
        }

        .blog-header::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.25);
            z-index: 0;
        }

        .blog-header .container {
            position: relative;
            z-index: 1;
        }

        .blog-header h1 {
            color: #fff;
            font-family: "Exo", sans-serif;
            font-weight: 700;
            font-size: 2.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .blog-header p {
            color: #fff;
            font-size: 1.1rem;
            margin-top: 10px;
            font-weight: 500;
        }

        /* Mobile */
        @media (max-width: 576px) {
            .blog-header {
                margin-top: 20%;
            }

            .blog-header h1 {
                font-weight: 700;
                font-size: 1.8rem;
                letter-spacing: 1px;
                text-transform: uppercase;
            }

        }

        /* Very Small Mobile */
        @media (max-width: 400px) {
            .blog-header {
                margin-top: 20%;
            }

            .blog-header h1 {
                font-weight: 700;
                font-size: 1.8rem;
                letter-spacing: 1px;
                text-transform: uppercase;
            }

        }


        /* ======== PROFESSIONAL BLOG SECTION ======== */

        /* Blog Section */
        .blog-section {
            background: #f8f9fa;
        }

        .blog-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .blog-img {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .blog-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-red);
            color: #fff;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .blog-meta span {
            margin-right: 1rem;
            display: flex;
            align-items: center;
        }

        .blog-meta i {
            margin-right: 0.5rem;
            color: var(--primary-red);
        }

        /* Mobile */
        @media (max-width: 576px) {
            .blog-meta {
                flex-direction: row;
                align-items: flex-start;
                gap: 0.5rem;
                margin-bottom: 0.8rem;
            }

            .blog-meta span {
                margin-right: 0;
                font-size: 0.8rem;
            }

            .blog-meta i {
                margin-right: 0.3rem;
                font-size: 0.8rem;
                min-width: 14px;
            }
        }

        /* Very Small Mobile */
        @media (max-width: 400px) {
            .blog-meta {
                gap: 0.3rem;
            }

            .blog-meta span {
                font-size: 0.75rem;
            }
        }

        .blog-title {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .blog-title a {
            color: var(--dark-color);
            transition: var(--transition);
        }

        .blog-title a:hover {
            color: var(--primary-color);
        }

        .blog-excerpt {
            margin-bottom: 1.5rem;
            color: var(--gray-color);
        }

        .blog-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-red);
            font-weight: 600;
            transition: var(--transition);
        }

        .blog-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .blog-link:hover i {
            transform: translateX(5px);
        }

        /* read blog style */


        .blog-single {
            padding: 80px 0;
            max-width: 900px;
            margin: auto;
        }

        .blog-single img {
            border-radius: 15px;
            margin-bottom: 25px;
            width: 100%;
        }

        .blog-meta {
            color: #888;
            margin-bottom: 20px;
        }

        .blog-meta i {
            color: #ff0000;
            margin-right: 5px;
        }

        .back-home-btn {
            display: inline-block;
            background: #ff0000;
            color: #fff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            transition: 0.3s;
        }

        .back-home-btn:hover {
            background: #8d0606;
            color: #fff;
        }

        /* ======== PROFESSIONAL BUTTONS ======== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 0.875rem 2rem;
            font-family: "Exo", sans-serif;
            text-transform: uppercase;
            border-radius: 4px;
            border: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .contact-btn {
            background-color: rgb(255, 0, 0);
            /* Waaberi red */
            color: #fff;
            font-weight: 600;
            padding: 5px 20px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid rgb(255, 0, 0);
            margin-left: 15px;
        }

        .contact-btn:hover {
            background-color: #fff;
            color: #E14139;
            border-color: #E14139;
            text-decoration: none;
            transform: scale(1.05);
        }

        @media (max-width: 991px) {
            .contact-btn {
                display: inline-block;
                margin-top: 10px;
                width: 90%;
                text-align: center;
                border-radius: 10px;
            }
        }


        .btn:focus {
            outline: 0;
            box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.25);
        }

        .btn-main {
            background: var(--primary-red);
            color: var(--background-white);
            border-color: var(--primary-red);
        }

        .btn-main:hover {
            background: var(--dark-red);
            border-color: var(--dark-red);
            color: var(--background-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
        }

        .btn-secondary {
            background: rgb(255, 0, 0);
            color: var(--background-white);
            border-color: rgb(255, 0, 0);
        }

        .btn-secondary:hover {
            background: rgb(220, 7, 7);
            border-color: rgb(220, 7, 7);
            color: var(--background-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-red);
            border-color: var(--primary-red);
        }

        .btn-outline:hover {
            background: var(--primary-red);
            color: var(--background-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
        }

        .btn-white {
            background: var(--background-white);
            color: var(--primary-red);
            border-color: var(--background-white);
        }

        .btn-white:hover {
            background: var(--primary-red);
            color: var(--background-white);
            border-color: var(--primary-red);
            transform: translateY(-2px);
        }

        .btn-icon {
            gap: 0.5rem;
        }

        /* ======== PROFESSIONAL SECTIONS ======== */
        .section {
            padding: 5rem 0;
            position: relative;
        }

        .section-sm {
            padding: 3rem 0;
        }

        .section-title {
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title h2 {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .section-title h2:after {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-red), var(--primary-green));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--medium-text);
            max-width: 700px;
            margin: 0 auto;
        }

        .bg-light {
            background-color: var(--background-light);
        }

        .bg-dark {
            background-color: var(--dark-text);
            color: var(--background-white);
        }

        .bg-dark h1,
        .bg-dark h2,
        .bg-dark h3,
        .bg-dark h4,
        .bg-dark h5,
        .bg-dark h6 {
            color: var(--background-white);
        }

        /* ======== ENHANCED PROFESSIONAL NAVBAR ======== */
        .navbar {
            padding: 1rem 0;
            background: var(--background-white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
        }

        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            height: 40px;
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem;
            color: var(--dark-text);
            font-family: "Exo", sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-red);
        }

        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            transform: scaleX(1);
        }

        .dropdown-menu {
            border: none;
            border-radius: 8px;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            border-top: 3px solid var(--primary-red);
            min-width: 220px;
        }

        .dropdown-item {
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            color: var(--dark-text);
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }

        .dropdown-item i {
            margin-right: 0.75rem;
            color: var(--primary-red);
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .dropdown-item:hover {
            background-color: rgba(255, 0, 0, 0.05);
            color: var(--primary-red);
            padding-left: 1.75rem;
        }

        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* ======== ENHANCED PROFESSIONAL HERO SECTION ======== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/slides/2.jpg');
            background-size: cover;
            background-position: center;
            color: var(--background-white);
            overflow: hidden;
        }

        .hero-content {
            padding-top: 6rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--background-white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 650px;
            font-weight: 300;
            line-height: 1.6;
        }



        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-stat-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--background-white);
            font-size: 1.5rem;
        }

        .hero-stat-content h4 {
            color: var(--background-white);
            margin: 0;
            font-size: 1.5rem;
        }

        .hero-stat-content p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 992px) {
            .hero {
                min-height: 80vh;
                padding: 4rem 1.5rem;
                text-align: center;
            }

            .hero-content {
                padding-top: 4rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 1.1rem;
                max-width: 100%;
                margin: 0 auto 2rem;
            }

            .hero-btns {
                flex-direction: row;
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
                gap: 1rem;
                margin-top: 2.5rem;
            }

            .hero-stat {
                flex-direction: row;
                align-items: center;
                text-align: center;
            }

            .hero-stat-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .hero-stat-content h4 {
                font-size: 1.3rem;
            }

            .hero-stat-content p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 70vh;
                padding: 3rem 1rem;
            }

            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.4;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .hero-btns {
                flex-direction: row;
                align-items: center;
                gap: 0.75rem;
            }

            .hero-stats {
                flex-direction: row;
                gap: 1.2rem;
                margin-top: 2rem;
            }

            .hero-stat {
                flex-direction: row;
                justify-content: center;
                gap: 0.8rem;
            }

            .hero-stat-content h4 {
                font-size: 1.1rem;
            }

            .hero-stat-content p {
                font-size: 0.8rem;
            }
        }

        /* ======== ENHANCED WHY CHOOSE US SECTION ======== */
        .features-section {
            position: relative;
            overflow: hidden;
        }

        .feature-card {
            background: var(--background-white);
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid var(--border-light);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature-card:before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-red), var(--primary-green));
        }

        .feature-card:hover:before {
            height: 100%;
            opacity: 0.03;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: var(--background-white);
        }

        .feature-card h4 {
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
        }

        .feature-card p {
            position: relative;
            z-index: 1;
            color: var(--medium-text);
        }

        .feature-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(0, 0, 0, 0.03);
            line-height: 1;
            z-index: 0;
        }

        /* ======== PROFESSIONAL ABOUT SECTION ======== */
        .about-content {
            position: relative;
        }

        .about-img {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-img:before {
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
            opacity: 0.1;
            z-index: -1;
            border-radius: 8px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--medium-text);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* ======== PROFESSIONAL PROGRAMS SECTION ======== */
        .program-card {
            background: var(--background-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .program-header {
            padding: 2rem 2rem 1rem;
            background: rgb(255, 0, 0);
            color: var(--background-white);
            text-align: center;
        }

        .program-header i {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .program-header h4 {
            color: var(--background-white);
            margin-bottom: 0.5rem;
        }

        .program-body {
            padding: 2rem;
        }

        .program-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem;
        }

        .program-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-light);
            position: relative;
            padding-left: 1.5rem;
        }

        .program-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-weight: bold;
        }

        .program-features li:last-child {
            border-bottom: none;
        }

        /* ======== PROFESSIONAL VALUES SECTION ======== */
        .value-item {
            text-align: center;
            padding: 2rem 1rem;
            transition: all 0.3s ease;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--background-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .value-item:hover .value-icon {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        .value-icon i {
            font-size: 2rem;
            color: var(--primary-red);
            transition: all 0.3s ease;
        }

        .value-item:hover .value-icon i {
            color: var(--background-white);
        }

        .value-item h4 {
            margin-bottom: 1rem;
        }

        .value-item p {
            color: var(--medium-text);
        }

        /* ======== PROFESSIONAL COUNTER SECTION ======== */
        .counter-section {
            background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.8)), url('../images/slides/1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--background-white);
            padding: 5rem 0;
        }

        .counter-item {
            text-align: center;
            padding: 2rem 1rem;
        }

        .counter-icon {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--background-white);
            display: block;
            line-height: 1;
        }

        .counter-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* ======== PROFESSIONAL TEAM SECTION (WAABERI STYLE) ======== */
        :root {
            --text-dark: #212121;
            --text-gray: #666666;
            --shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 10px 25px rgba(22, 22, 22, 0.25);
            --transition: all 0.4s ease;
        }

        /* Section Wrapper */
        .team-section {
            background: #fff;
            padding: 80px 0;
        }

        /* Section Title */
        .team-section .section-title {
            text-align: center;
            margin-bottom: 50px;
        }


        .team-section .section-title h2::after {
            display: block;
            width: 70px;
            height: 3px;
            background: var(--primary-red);
            margin: 10px auto 0;
            border-radius: 3px;
        }

        .team-section .section-title p {
            color: var(--text-gray);
            font-size: 1.05rem;
            margin-top: 10px;
        }

        /* Team Card */
        .team-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        /* Team Image */
        .team-img {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-card:hover .team-img img {
            transform: scale(1.1);
        }

        /* Team Content */
        .team-content {
            padding: 1.5rem;
        }

        .team-name {
            margin-bottom: 0.3rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .team-position {
            color: var(--primary-red);
            font-weight: 600;
            font-size: 1rem;
            display: block;
            margin-bottom: 0.8rem;
        }

        /* Optional: Animated underline on hover */
        .team-card:hover {
            color: var(--primary-red);
            transition: var(--transition);
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .team-img {
                height: 250px;
            }

            .team-section .section-title h2 {
                font-size: 1.8rem;
            }

            .team-section .section-title p {
                font-size: 0.95rem;
            }
        }




        /* ======== PROFESSIONAL FOOTER ======== */
        .footer {
            background: var(--background-light);
            color: var(--dark-text);
            padding: 5rem 0 2rem;
            margin-bottom: 2rem;
        }

        .footer-widget h4 {
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-widget h4:after {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-red), var(--primary-green));
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-widget p {
            color: var(--dark-text);
        }

        .footer-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-menu li {
            margin-bottom: 0.75rem;
        }

        .footer-menu a {
            color: var(--dark-text);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-menu a:before {
            content: '›';
            margin-right: 0.75rem;
            color: var(--primary-red);
            transition: all 0.3s ease;
        }

        .footer-menu a:hover {
            color: var(--dark-red);
            padding-left: 0.5rem;
        }

        .footer-menu a:hover:before {
            color: var(--dark-red);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem;
            color: var(--dark-text);
        }

        .footer-contact i {
            color: var(--primary-red);
            margin-right: 1rem;
            font-size: 1.1rem;
            margin-top: 0.25rem;
        }

        .footer-social {
            display: flex;
            margin-top: 1.5rem;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 0, 0, 0.895);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--background-white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* ======== BACK TO TOP BUTTON ======== */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: var(--background-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--dark-red);
            transform: translateY(-3px);
            color: var(--background-white);
        }

        /* ======== RESPONSIVE STYLES ======== */
        @media (max-width: 1200px) {
            h1 {
                font-size: 2.75rem;
            }

            h2 {
                font-size: 2.25rem;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .section {
                padding: 4rem 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.25rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .section {
                padding: 3rem 0;
            }

            .hero {
                min-height: 70vh;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-btns {
                flex-direction: column;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .feature-card,
            .program-card,
            .activity-card {
                margin-bottom: 2rem;
            }

            .footer {
                padding: 3rem 0 1.5rem;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .section {
                padding: 2.5rem 0;
            }

            .hero {
                min-height: 60vh;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .btn {
                padding: 0.75rem 1.5rem;
            }

            .counter-number {
                font-size: 2.5rem;
            }
        }



        /* president section  */

        .president-quote-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .president-quote-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        }

        .president-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .president-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .president-img-container {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .president-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 50%;
            transition: var(--transition);
        }

        .president-card:hover .president-img {
            transform: scale(1.03);
        }

        .president-img-container::after {
            border-radius: 50%;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
        }

        .quote-content {
            padding: 2rem;
            position: relative;
        }

        .quote-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .quote-text {
            font-size: 1.25rem;
            font-style: italic;
            line-height: 1.7;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-text::before {
            content: "";
            position: absolute;
            left: -15px;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .university-name {
            color: var(--primary-red);
            font-weight: 700;
        }

        .president-info {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding-top: 1.5rem;
        }

        .president-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.25rem;
        }

        .president-title {
            color: var(--secondary-color);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }