/* Enhanced Modern Styles */
        :root {
            --primary-color: #f47216;
            --primary-dark: #d85a00;
            --primary-light: #ff8a42;
            --secondary-color: #1a1a2e;
            --accent-color: #16213e;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
            --text-color: #334155;
            --text-light: #64748b;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --gradient-1: linear-gradient(135deg, #f47216, #ff8a42);
            --gradient-2: linear-gradient(135deg, #1a1a2e, #16213e);
            --gradient-3: linear-gradient(135deg, #f47216 0%, #d85a00 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 80px;
            line-height: 1.6;
            background: #ffffff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            color: var(--secondary-color);
        }

        .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
        }

        /* Enhanced Button Styles */
        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.025em;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            background: var(--gradient-3);
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
            color: white;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            background: transparent;
        }

        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-lg {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 15px;
        }

        /* Glass Morphism Effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
        }

        /* Modern Navigation */
        .navbar {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar.scrolled {
            background: rgba(26, 26, 46, 0.98);
            padding: 0.75rem 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            outline:none;
            border:none;
        }

       .navbar-brand::before {
    content: '';
    display: inline-block;
    width: 32px; /* Adjust as needed */
    height: 32px; /* Adjust as needed */
    background-image: url('https://as2.ftcdn.net/jpg/07/55/75/11/1000_F_755751114_CZrEorA2dZqnVik88604UWO3eiQGZNuY.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

        .nav-link {
            font-weight: 500;
            padding: 0.75rem 1.25rem !important;
            color: rgba(255, 255, 255, 0.9) !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color) !important;
            background: rgba(244, 114, 22, 0.1);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        /* Enhanced Hero Section */
       .hero-section {
                background: linear-gradient(135deg, rgba(26, 26, 46, 0.45), rgba(22, 33, 62, 0.3)),
                            url('../assets/images/header.webp');
                background-size: cover;
                background-repeat: no-repeat;
                background-attachment: fixed; /* Creates parallax effect */
                min-height: 100vh;
                display: flex;
                align-items: center;
                position: relative;
                overflow: hidden;
            }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, var(--primary-color) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, var(--accent-color) 0%, transparent 50%);
            opacity: 0.1;
        }

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

        .hero-section h1 {
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: fadeInLeft 1s ease-out;
        }

        .hero-section h2 {
            color: var(--primary-color);
            font-size: clamp(1.25rem, 3vw, 2rem);
            margin-bottom: 2rem;
            font-weight: 600;
            animation: fadeInLeft 1s ease-out 0.3s both;
        }

        .hero-section p.lead {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            max-width: 600px;
            animation: fadeInLeft 1s ease-out 0.6s both;
        }

        .hero-image-container {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        .hero-image-container img {
            width: 100%;
            max-width: 500px;
            margin-right: 15px; /* Added right margin */
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Modern Card Styles */
        .modern-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
        }

        .modern-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        /* Vision Cards */
        .vision-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            scale:0.90;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            text-align:center;
            position: relative;
            overflow: hidden;
        }

        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vision-card:hover::before {
            opacity: 0.05;
        }

        .vision-card:hover {
            cursor: pointer;
            scale: 1.18;
            z-index: 20;
            border: 3px solid rgba(244, 114, 22, 0.5);
            transform: translateY(-12px);
            box-shadow: 0 30px 50px -8px rgba(244, 114, 22, 0.5);
        }

        .vision-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
        }

        .vision-icon::after, .timeline-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: var(--gradient-1);
            border-radius: 24px;
            opacity: 0.2;
            z-index: -1;
            animation: pulse 2s infinite;
        }
       
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        /* Enhanced Sections */
        .section-title {
            position: relative;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        /* About Section Enhancements */
        .about-img-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }

        .about-img-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            transform:scaleX(-1);
            cursor:pointer;
        }

        .about-img-container:hover img {
             transform:scaleX(-1) scale(1.1) ; /* Applies scale first, then flip */

        }

        .about-badge {
            position: absolute;
            top: 24px;
            right: -40px;
            background: var(--gradient-1);
            color: white;
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: var(--shadow-lg);
        }

        /* About Info Cards - Fixed Sizing and Alignment */
        .about-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .about-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(244, 114, 22, 0.05);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .about-info-item:hover {
            background: rgba(244, 114, 22, 0.1);
            transform: translateY(-2px);
            cursor:pointer;
        }

        .about-info-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .about-info-content h5 {
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--secondary-color);
            font-size: 1rem;
        }

        .about-info-content p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Timeline Enhancements */
        .timeline {
            position: relative;
            padding-left: 4rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 2rem;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
        }

        .timeline-dot {
            position: absolute;
            left: -6rem;
            top: 0.5rem;
            width: 96px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.8rem;
            box-shadow: var(--shadow-md);
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 2rem;
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-right: 12px solid white;
        }

        .timeline-content:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-lg);
        }

        /* Key Achievements - Fixed for Mobile/Tablet */
        .achievement-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(244, 114, 22, 0.05);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .vertical-center {
            display: flex;
            align-items: center;
        }
        .achievement-item:hover {
            background: rgba(244, 114, 22, 0.1);
            transform: translateY(-2px);
        }

        .achievement-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .achievement-content h5 {
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--secondary-color);
            font-size: 1rem;
        }

        .achievement-content p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient-2);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect x="0" y="0" width="100" height="100" fill="url(%23pattern)"></rect></svg>');
        }

        .stat-card {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        /* News Cards */
        .news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .news-card img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover img {
            transform: scale(1.1);
        }

        .news-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

        .news-meta {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Contact Info - Fixed Left Alignment */
        .contact-info {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(244, 114, 22, 0.05);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(244, 114, 22, 0.1);
            transform: translateY(-2px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-content {
            flex: 1;
        }

        .contact-content h5 {
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--secondary-color);
            font-size: 1rem;
        }

        .contact-content p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Form Control Enhancements */
        .form-control {
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(244, 114, 22, 0.25);
            background: white;
        }

        .form-label {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        /* Social Icons */
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--gradient-1);
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        /* Footer */
        .footer {
            background: var(--gradient-2);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect x="0" y="0" width="100" height="100" fill="url(%23footerPattern)"></rect></svg>');
            pointer-events: none;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 56px;
            height: 56px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: var(--shadow-lg);
            text-decoration:none;
        }

        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }

        /* Scroll Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slide Animation */
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }

        .zoom-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.8)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            background-size: cover;
            position: relative;
            overflow: hidden;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, var(--primary-color) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, var(--accent-color) 0%, transparent 50%);
            opacity: 0.1;
        }

        .quote-container {
            position: relative;
            z-index: 2;
            padding: 5rem 0;
        }

        .quote-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem;
            color: white;
            position: relative;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .quote-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: serif;
            line-height: 1;
        }

        .quote-card::after {
            content: '"';
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: serif;
            line-height: 1;
        }

        .quote-image {
            flex: 0 0 300px;
        }

        .quote-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .quote-content {
            flex: 1;
        }

        .quote-text {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
        }

        .quote-author-info h5 {
            color: white;
            margin-bottom: 0.25rem;
            font-size: 1.5rem;
        }

        .quote-author-info p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 1rem;
        }

        /* Gallery Section */
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .gallery-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        /* Achievements Slider */
        .achievements-slider {
            position: relative;
        }

        .achievement-slide {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .achievement-slide.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slider-nav {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        .slider-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .slider-dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        .slider-dot:hover {
            background: var(--primary-color);
        }

        .slider-content {
            margin-left: 80px;
            padding: 2rem;
        }

        .slider-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .timeline {
                padding-left: 3rem;
            }
            
            .timeline::before {
                left: 1.5rem;
            }
            
            .timeline-dot {
                left: -2.5rem;
                width: 80px;
                height: 40px;
                font-size: 0.75rem;
            }

            .slider-nav {
                position: static;
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                margin-bottom: 2rem;
                justify-content: center;
            }

            .slider-content {
                margin-left: 0;
                padding: 1rem 0;
            }

            .quote-card {
                flex-direction: column;
            }

            .quote-image {
                flex: 0 0 auto;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
            }
            
            .btn-lg {
                padding: 0.8rem 2rem;
            }
            
             .hero-section {
        background-attachment: scroll; /* Better performance on mobile */
        background-position: 50% center; /* Adjust focus for mobile */
    }
                .hero-image-container {
                        display: none;
                    }
            
            .about-badge {
                right: -30px;
                padding: 0.4rem 2rem;
            }
            
            .timeline {
                padding-left: 2rem;
            }
            
            .timeline::before {
                left: 1rem;
            }
            
            .timeline-dot {
                left: -1.75rem;
                width: 56px;
                height: 32px;
                font-size: 0.65rem;
                border-radius: 16px;
            }
            
            .about-info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            /* Footer responsive columns */
            .footer .row > div {
                margin-bottom: 2rem;
            }

            .quote-text {
                font-size: 1.2rem;
            }

            .quote-image {
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .timeline-dot {
                left: -1.5rem;
                width: 48px;
                height: 28px;
                font-size: 0.6rem;
            }

            .quote-card {
                padding: 2rem 1.5rem;
            }

            .quote-text {
                font-size: 1.1rem;
            }

            .quote-image {
                max-width: 200px;
            }
        }

        /* Custom Utilities */
        .text-primary {
            color: var(--primary-color) !important;
        }

        .bg-primary {
            background: var(--gradient-1) !important;
        }

        .border-primary {
            border-color: var(--primary-color) !important;
        }
        
        .img-placeholder { 
            background-color: #f8f9fa; 
            border: 2px dashed #dee2e6; 
            border-radius: 8px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: #6c757d; 
            font-size: 14px; 
            text-align: center; 
            padding: 15px; 
            margin: 10px 0; 
        }
       .get-site a{
        text-decoration: none;
        --bs-text-opacity: 1;
        color: rgba(255, 255, 255, .5) !important;
        font-weight: bold;
       }