        :root {
            --primary-color: #02474c;
            --secondary-color: #03686e;
            --accent-color: #0abde3;
            --light-color: #f8ffff;
            --dark-color: #013337;
            --gradient-primary: linear-gradient(135deg, #02474c 0%, #03686e 100%);
            --gradient-accent: linear-gradient(135deg, #0abde3 0%, #01a3a4 100%);
            --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8ffff 100%);
            --shadow: 0 8px 25px rgba(2, 71, 76, 0.08);
            --shadow-hover: 0 15px 35px rgba(2, 71, 76, 0.12);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 95%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 4px 20px rgba(2, 71, 76, 0.06);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0;
            position: relative;
        }



        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 2.2rem;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary-color);
            letter-spacing: -0.3px;
            
        }

        .logo-text span {
            color: var(--accent-color);
        }

        .slogan {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent-color);
            display: block;
            margin-top: -2px;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin-left: 25px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }



        .cta-button {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(2, 71, 76, 0.15);
            margin-left:10px;
        }

        .cta-button:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(10, 189, 227, 0.25);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            z-index: 1000;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            margin-left: 15px;
            z-index: 1001;
            background: none;
            border: none;
            font-size: 1.8rem;
        }

        .hamburger i {
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .hamburger.active i {
            transform: rotate(90deg);
        }


        /* Hero Section */
        .hero {
            padding: 120px 0 60px;
            background: linear-gradient(135deg, #f8ffff 0%, #f0ffff 100%);
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }

        .hero-content {
            max-width: 450px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
            animation: slideInLeft 1s ease-out;
        }

        .hero h1 span {
            color: var(--accent-color);
            position: relative;
            background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 3s infinite alternate;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
            animation: fadeIn 1.5s ease-out;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            animation: fadeInUp 2s ease-out;
        }

        .secondary-button {
            background-color: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            padding: 10px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .secondary-button:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image-container {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 65%;
            max-width: 750px;
            z-index: 1;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(2, 71, 76, 0.15);
        }

        .animated-images {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
        }

        .image-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.1);
            transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .image-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .image-slide img {
            width: 100%;
            object-fit: cover;
            margin-top: 10px;
    border-radius: 20px;
        }

        .image-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(2, 71, 76, 0.8), transparent);
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-radius: 0 0 20px 20px;
        }

        .image-slide.active .image-info {
            transform: translateY(0);
        }

        .image-info h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: white;
        }

        .image-info p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .image-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .image-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .image-dot.active {
            background: var(--accent-color);
            transform: scale(1.3);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(111deg, #91cece 0%, transparent 50%, transparent 100%);
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: #f8ffff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: var(--gradient-accent);
            bottom: -10px;
            left: 20%;
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: linear-gradient(145deg, #ffffff, #f0f9ff);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 360px;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .feature-image {
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .feature-card:hover .feature-image img {
            transform: scale(1.05);
        }

        .feature-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 40px;
            height: 40px;
            background: var(--gradient-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(10, 189, 227, 0.3);
            z-index: 2;
        }

        .feature-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .feature-list {
            list-style: none;
            flex-grow: 1;
        }

        .feature-list li {
            padding: 6px 0;
            color: #555;
            position: relative;
            padding-left: 20px;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* Departments Section */
        .departments {
            padding: 5px 0;
            background: white;
            position: relative;
        }

        .dept-slider {
            margin: 0 -10px;
            position: relative;
            max-width: calc(100% + 40px);
            margin-left: auto;
            margin-right: auto;
        }

        .dept-slide {
            padding: 10px;
        }

        .dept-card {
            background: linear-gradient(145deg, #ffffff, #f8ffff);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            min-height: 350px;
            display: flex;
            flex-direction: column;
        }
        
        .dept-card.hr-management {
            background: linear-gradient(145deg, #ffebee, #ffcdd2);
        }
        
        .dept-card.academic-management {
            background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
        }
        
        .dept-card.exam-management {
            background: linear-gradient(145deg, #fff8e1, #ffecb3);
        }
        
        .dept-card.finance-management {
            background: linear-gradient(145deg, #e3f2fd, #bbdefb);
        }

        .dept-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .dept-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .dept-card:hover .dept-icon {
            background: var(--gradient-accent);
            transform: scale(1.1) rotate(5deg);
        }

        .dept-card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .dept-card p {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        .dept-features {
            list-style: none;
            text-align: left;
        }

        .dept-features li {
            padding: 6px 0;
            color: #555;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .dept-features li i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 0.9rem;
            min-width: 16px;
        }

        /* Stats Section */
        .stats {
            padding: 1px 0;
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
      padding: 9px -2px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            transition: var(--transition);
                margin: 10px;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-item h3 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            color: var(--accent-color);
            font-weight: 800;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 600;
        }

        /* Enhanced Leadership Section */
        .leadership {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8ffff 0%, #e8f8f8 100%);
            position: relative;
        }

        .leadership-slider {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            min-height: 440px;
        }

        .leadership-slide {
            display: none;
            position: relative;
    min-height: 363px;            background: white;
        }

        .leadership-slide.active {
            display: block;
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .leader-content {
            display: flex;
            height: 345px;
        }

        .leader-image {
            flex: 0 0 45%;
            position: relative;
            overflow: hidden;
        }

        .leader-image img {
            width: 54%;
            height: 97%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .leadership-slide.active .leader-image img {
            transform: scale(1.05);
        }

        .leader-info {
            flex: 0 0 55%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            position: relative;
            left: -240px;
        }

        .leader-role {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .leader-name {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 800;
            line-height: 1.1;
        }

        .leader-title {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 35px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .leader-title i {
            color: var(--accent-color);
        }

        .leader-message {
            color: #555;
           font-size: 15px;
            line-height: 1.7;
            position: relative;
            padding-left: 35px;
            border-left: 4px solid var(--accent-color);
            margin-left: 15px;
            font-style: italic;
            width: 137%;
        }

        .leader-message::before {
            content: '"';
            position: absolute;
            left: -25px;
            top: -20px;
            font-size: 5rem;
            color: var(--accent-color);
            opacity: 0.3;
            font-family: serif;
        }

        .leader-signature {
            margin-top: 30px;
            font-family: 'Dancing Script', cursive;
            font-size: 2.2rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .leader-controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
        }

        .leader-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }

        .leader-dot.active {
            background: var(--accent-color);
            transform: scale(1.4);
            box-shadow: 0 0 10px rgba(10, 189, 227, 0.5);
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-accent);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(10, 189, 227, 0.3);
        }

        .nav-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(10, 189, 227, 0.5);
        }

        .prev-button {
            left: 24px;
        }

        .next-button {
            right: 24px;
        }

        .leadership-quote {
            text-align: center;
            color: var(--primary-color);
            font-size: 1.3rem;
            font-style: italic;
            margin-top: 40px;
            max-width: 800px;
            margin: 40px auto 0;
            padding: 20px;
            background: rgba(2, 71, 76, 0.05);
            border-radius: 15px;
            border-left: 5px solid var(--accent-color);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

        .testimonial-slider {
            margin: 0 -10px;
        }

        .testimonial-slide {
            padding: 10px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #ffffff, #f8ffff);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
            border: 2px solid rgba(2, 71, 76, 0.1);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-color);
        }

        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: var(--accent-color);
            opacity: 0.1;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1rem;
            color: #555;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            line-height: 1.7;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .author-info h4 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }

        .rating {
            color: #ffc107;
            margin-top: 5px;
            font-size: 0.9rem;
        }

        /* Enhanced CTA Section */
        .final-cta {
            padding: 100px 0;
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            top: -200px;
            right: -200px;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            bottom: -150px;
            left: -150px;
        }

        .final-cta .container {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .final-cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .final-cta .cta-button {
            background: white;
            color: var(--primary-color);
            font-size: 1.2rem;
            padding: 18px 45px;
            border-radius: 30px;
            font-weight: 700;
            border: 3px solid transparent;
            transition: var(--transition);
        }

        .final-cta .cta-button:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 15px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .footer-about {
            position: relative;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .footer-logo span {
            color: var(--accent-color);
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }

        .footer-contact h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--gradient-accent);
            bottom: 0;
            left: 0;
            border-radius: 3px;
        }

        .footer-contact p {
            margin-bottom: 12px;
            opacity: 0.8;
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .footer-contact i {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .newsletter {
            margin-top: 20px;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
        }

        .newsletter h4 {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: white;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-form input {
            flex-grow: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .newsletter-form button:hover {
            background: #0097a7;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.85rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero {
                padding: 100px 0 50px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero-image-container {
                position: relative;
                width: 100%;
                margin-top: 40px;
                transform: none;
                height: 350px;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            /* Leadership Section */
            .leadership {
                padding: 80px 0;
            }
            
            .leadership-slider {
                min-height: auto;
            }
            
            .leader-content {
                flex-direction: column;
                height: auto;
            }
            
            .leader-image {
                flex: 0 0 auto;
                width: 100%;
                text-align: center;
            }
            
            .leader-image img {
                width: 60%;
                height: auto;
            }
            
            .leader-info {
                flex: 0 0 auto;
                padding: 25px;
                left: 0;
                margin-top: 20px;
            }
            
            .leader-name {
                font-size: 2rem;
            }
            
            .leader-message {
                width: 100%;
                padding-left: 25px;
                margin-left: 0;
            }
            
            .nav-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .prev-button {
                left: 15px;
            }
            
            .next-button {
                right: 15px;
            }
            
            .nav-links li {
                margin-left: 15px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: relative;
            }
            
            .nav-menu {
    position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 50%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-links {
                flex-direction: column;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .nav-links a {
                padding: 10px;
                display: block;
            }
            
            .cta-button {
                margin-top: 15px;
                width: 80%;
                max-width: 200px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hamburger {
                display: block;
                cursor: pointer;
                margin-left: 15px;
            }
            
            .hamburger i {
                font-size: 1.8rem;
                color: var(--primary-color);
                transition: all 0.3s ease;
            }
            
            .hamburger.active i {
                transform: rotate(90deg);
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .leader-info {
                padding: 25px 20px;
            }
            
            .leader-name {
                font-size: 1.8rem;
            }
            
            .leader-message {
                font-size: 1.1rem;
                padding-left: 25px;
                margin-left: 10px;
            }
            
            .final-cta h2 {
                font-size: 2.2rem;
            }
        }
                
        @media (max-width: 1200px) {
            .testimonials {
                padding: 60px 0;
            }
                    
            .testimonial-card {
                padding: 25px;
            }
                    
            .testimonial-text {
                font-size: 0.95rem;
            }
        }
                
        @media (min-width: 993px) and (max-width: 1200px) {
            .testimonial-slider .slick-track {
                display: flex;
                align-items: stretch;
            }
                    
            .testimonial-slider .slick-slide {
                height: auto;
                display: flex;
                align-items: stretch;
            }
                    
            .testimonial-card {
                height: 100%;
                display: flex;
                flex-direction: column;
            }
        }
                
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            
            .cta-button, .secondary-button {
                width: 100%;
                text-align: center;
                display: none;
            }
            
            .hero-image-container {
                height: 250px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 0px;
        
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .leader-message {
                font-size: 1rem;
                padding-left: 20px;
            }
            
            .leader-message::before {
                font-size: 3.5rem;
                left: -20px;
                top: -15px;
            }
            
            /* Leadership section adjustments */
            .leader-name {
                font-size: 1.6rem;
            }
            
            .leader-role {
                font-size: 1rem;
                letter-spacing: 1px;
            }
            
            .leader-title {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .leadership-slider {
                padding: 20px 10px;
            }
            
            .nav-button {
                width: 45px;
                height: 45px;
                font-size: 1rem;
                top: auto;
                bottom: 10px;
                transform: none;
            }
            
            .prev-button {
                left: 50%;
                margin-left: -30px;
            }
            
            .next-button {
                left: 50%;
                margin-left: 30px;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 480px) {
            .leadership {
                padding: 60px 0;
            }
            
            .leader-name {
                font-size: 1.5rem;
            }
            
            .leader-message {
                font-size: 0.9rem;
                padding-left: 15px;
            }
            
            .leader-message::before {
                font-size: 2.5rem;
                left: -15px;
                top: -10px;
            }
            
            .leader-info {
                padding: 15px;
            }
            
            .leader-role {
                font-size: 0.9rem;
            }
            
            .leadership-quote {
                font-size: 1.1rem;
                padding: 15px;
            }
            
            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .prev-button {
                margin-left: -25px;
            }
            
            .next-button {
                margin-left: 25px;
            }
        }
