        /* --- PASTE ALL YOUR CSS FROM THE PREVIOUS STATIC HTML HERE --- */
        /* This includes :root, global styles, and all section-specific styles */
        /* Ensure all team card styles, custom arrow styles, etc., are present */
        :root {
            --primary-blue: #0A4D68;
            --secondary-blue-light: #E0F7FA;
            --accent-orange: #FF6F00;
            --secondary-orange-light: #FFF8E1;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --neutral-gray: #F8F9FA;
            --border-radius: 8px;
            --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Poppins', sans-serif !important;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--neutral-gray);
            overflow-x: hidden;
        }

        .section-title {
            text-align: center;
            text-align: center; /* DUPLICATED VALUE */
            margin-bottom: 30px;
        }
        .section-title h2 { color: var(--primary-blue); position: relative; display: inline-block; padding-bottom: 10px; font-weight: 700;
    font-size: 36px;; font-family: 'Poppins', sans-serif !important; }
        .section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--accent-orange); }

        .hero-section { background-color: var(--secondary-blue-light); padding: 60px 0; }
        .hero-section .container { display: flex; align-items: center; gap: 0px; flex-wrap: wrap; }
        .hero-content { flex: 1; min-width: 300px; padding-right:20px; }
        .hero-content p{ font-size: 18px; }

        .hero-content h1 { color: var(--accent-orange); font-weight: 700; }
        .hero-content h1 span { color: var(--primary-blue); }
        .hero-image { flex: 1; max-width: 500px; min-width: 300px; }
        .hero-image img { width: 100%; height: auto; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
        .hero-features { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
        .hero-feature-item { text-align: center; flex: 1; min-width: 120px; }
        .hero-feature-item i { font-size: 2.8rem; color: var(--primary-blue); margin-bottom: 10px; }
        .hero-feature-item p { font-size: 1.9rem; font-weight: 600; color: var(--primary-blue); }
        .who-we-are-content p{
            font-size: 18px;
        }
        .who-we-are-section { background-color: var(--text-light); padding: 40px 0; }
        .who-we-are-content ul { list-style: none; padding-left: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; font-size:18px; text-align:left }
        .who-we-are-content li { display: flex; align-items: flex-start; padding: 15px; background-color: var(--secondary-orange-light); border-radius: var(--border-radius); border-left: 4px solid var(--accent-orange); }
        .who-we-are-content li i { color: var(--accent-orange); font-size: 3.5rem; margin-right: 15px; margin-top: 3px; }

        .mission-vision-values-section { background-color: var(--secondary-blue-light); padding: 40px 0; }
        .mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;font-size:15px }
        .mvv-card { background-color: var(--text-light); padding: 30px; border-radius: var(--border-radius); text-align: center; box-shadow: var(--box-shadow); transition: transform 0.3s ease; }
        .mvv-card:hover { transform: translateY(-5px); }
        .mvv-card i.mvv-icon { font-size: 5rem; color: var(--accent-orange); margin-bottom: 15px; } /* Specific class for MVV icons */
        .mvv-card h3 { color: var(--primary-blue); margin-bottom: 10px; font-weight: 700; font-size: 30px; }
        .mvv-card ul { list-style: none; padding: 0; margin-top: 10px; }
        .mvv-card ul li { font-size: 15px; color: #555; margin-bottom: 5px; }

        .why-choose-us-section { background-color: var(--secondary-blue-light); padding: 40px 0; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .feature-item { background-color: var(--text-light); padding: 25px; border-radius: var(--border-radius); display: flex; align-items: flex-start; gap: 20px; box-shadow: var(--box-shadow);text-align:left }
        .feature-item i { font-size: 4rem; color: var(--accent-orange); margin-top: 5px; }
        .feature-item-content h4 { color: var(--primary-blue); font-size: 2.1rem; margin-bottom: 8px; font-weight: 600; }
        .feature-item-content p { font-size: 1.5rem; line-height: 1.6; text-align:left }

        .cta-section { background: linear-gradient(rgba(10, 77, 104, 0.85), rgba(10, 77, 104, 0.85)), url('https://images.unsplash.com/photo-1567790062719-c07c8ecc3a5a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Z2l6YSUyMHB5cmFtaWRzfGVufDB8fDB8fHww&auto=format&fit=crop&w=800&q=60') no-repeat center center/cover; color: var(--text-light); text-align: center; padding: 80px 0; }
        .cta-section h2 { color: var(--text-light); margin-bottom: 15px; }
        .cta-section p { font-size: 1.1rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; color: var(--secondary-blue-light); }

        footer { background-color: var(--primary-blue); color: var(--secondary-blue-light); text-align: center; padding: 20px 0; font-size: 0.9rem; }
        footer a { color: var(--accent-orange); text-decoration: none; }
        footer a:hover { text-decoration: underline; }

        /* --- Team Section Styles (same as before) --- */
        .team-section { background-color: var(--text-light); padding: 40px 0 50px 0; }
        .team-slider-wrapper { position: relative; }
        .team-slider-container {}
        .slick-list { overflow: hidden; }
        .slick-track { display: flex; }
        .slick-slide { height: auto; outline: none; display: flex !important; align-items: stretch; justify-content: center; }
        .slick-slide > div { height: 100%; width: 100%; display: flex; padding: 5px 8px; }
        .team-card { background-color: var(--secondary-orange-light); border-radius: var(--border-radius); padding: 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); border: 1px solid #f0eadd; display: flex !important; flex-direction: column; width: 100%; height: 100%; justify-content: space-between; margin: 15px 10px; }
        .custom-slick-arrow-icon { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.7); color: var(--primary-blue); border: 1px solid var(--primary-blue); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; z-index: 10; box-shadow: 0 2px 5px rgba(0,0,0,0.15); }
        .custom-slick-arrow-icon:hover { background-color: var(--primary-blue); color: var(--text-light); border-color: var(--primary-blue); }
        .custom-slick-arrow-icon.prev-arrow { left: -15px; }
        .custom-slick-arrow-icon.next-arrow { right: -15px; }
        .custom-slick-arrow-icon i { font-size: 1rem; }
        .slick-prev, .slick-next { display: none !important; }
        .team-card-header-content {}
        .team-card-footer-content { margin-top: auto; }
        .team-card-availability-wrapper { min-height: 30px; margin-bottom: 10px; display: flex; justify-content: center; align-items: center; }
        .availability-badge { display: inline-block; padding: 4px 12px; font-size: 0.75em; font-weight: 600; border-radius: 15px; color: white; text-transform: uppercase; letter-spacing: 0.5px; }
        .team-card img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px auto; border: 4px solid var(--accent-orange); display: block; }
        .team-card h4 { color: var(--primary-blue); font-size: 2.5rem; font-weight: 700; margin-bottom: 3px; min-height: 2.8rem; }
        .team-card p.title { font-size: 1.9rem; color: var(--accent-orange); font-weight: 600; margin-bottom: 10px; min-height: 1.3rem; }
        .team-card p.description-text { font-size: 1.5rem; color: #555; line-height: 1.5; margin-bottom: 15px; flex-grow: 1; min-height: 60px; overflow-y: auto; max-height: 120px; }
        .skills-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 8px; margin-bottom: 15px; min-height: 30px; padding: 5px 0; }
        .skill-tag { display: inline-block; background-color: var(--primary-blue); color: var(--text-light); padding: 3px 10px; border-radius: 5px; font-size: 1.78rem; font-weight: 500; line-height: 1.4; box-shadow: 0 1px 2px rgba(0,0,0,0.07); }
        .team-card-social-icons-wrapper { min-height: 40px; margin-bottom: 10px; display: flex; justify-content: center; align-items: center; }
        .team-card .team-social-icons a { text-decoration: none; display: inline-block; margin: 0 7px; }
        .team-card .team-social-icons i { font-size: 2.2rem; color: var(--primary-blue); transition: color 0.3s ease, transform 0.2s ease; }
        .team-card .team-social-icons i:hover { color: var(--accent-orange); transform: scale(1.1); }
        .team-card-meeting-link-wrapper { min-height: 45px; margin-bottom: 10px; display: flex; justify-content: center; align-items: center; }
        .team-card .live-meeting-btn { display: inline-block; padding: 8px 18px; background-color: var(--accent-orange); color: white !important; border-radius: var(--border-radius); text-decoration: none; font-weight: 600; font-size: 1.85rem; transition: background-color 0.3s ease, transform 0.2s ease; margin-bottom: 20px; }
        .team-card .live-meeting-btn:hover { background-color: #e66000; transform: translateY(-2px); }
        .team-card .live-meeting-btn i { margin-right: 7px; }
        .team-card .admin-actions { display: none; } /* Admin actions hidden on public page */

        .slick-dots { bottom: -30px; }
        .slick-dots li button:before { font-size: 10px; color: var(--primary-blue); opacity: 0.5; }
        .slick-dots li.slick-active button:before { color: var(--accent-orange); opacity: 1; }
        .btn_blue {
            display: inline-block;
            padding: 12px 24px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(45deg, #007bff, #ff6600);
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
            transition: 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        .btn_blue::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: 0.3s ease-in-out;
        }

        .btn_blue:hover::before {
            left: 100%;
        }

        .btn_blue:hover {
            box-shadow: 0 4px 20px rgba(255, 102, 0, 0.6);
            transform: scale(1.05);
        }
 

        @media (max-width: 1200px) { }
        @media (max-width: 992px) {
             .hero-section .container { flex-direction: column; text-align: center; }
             .hero-image { margin-top: 30px; max-width: 80%; }
             .hero-features { justify-content: center; }
             .team-card img { width: 100px; height: 100px; margin-bottom: 10px; }
             .team-card h4 { font-size: 3.2rem; min-height: 2.6rem; }
             .team-card p.title { font-size: 2.5rem; min-height: 1.2rem; }
             .team-card p.description-text { font-size: 1.5rem; min-height: 50px; max-height: 100px; }
             .skill-tag { font-size: 1.5rem; padding: 2px 8px; }
             .custom-slick-arrow-icon { width: 35px; height: 35px; }
             .custom-slick-arrow-icon.prev-arrow { left: 5px; }
             .custom-slick-arrow-icon.next-arrow { right: 5px; }
        }
        @media (max-width: 768px) {
            .container { padding: 30px 15px; }
            .who-we-are-content ul, .mvv-grid, .features-grid { grid-template-columns: 1fr; }
            .hero-features { flex-direction: column; gap: 15px; }
            .cta-section { padding: 60px 0; } .cta-section p { font-size: 1rem; }
            .slick-slide > div { padding: 5px 5px; }
        }
        @media (max-width: 576px) {
            .btn { padding: 10px 20px; font-size: 0.9rem; }
            .hero-feature-item i { font-size: 5.5rem; } .hero-feature-item p { font-size: 2rem; }
        }

  
