 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* Header */
        header {
            background: #fff;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 50%, #d4a520 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #d4a520;
        }

         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Banner with Background Image */
        .page-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(45, 50, 80, 0.85) 100%),
                        url('Images/background.png') center/cover no-repeat;
            padding: 180px 2rem 100px;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        /* Animated background overlay */
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(244, 197, 66, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(212, 165, 32, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #f4c542;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .page-hero p {
            font-size: 1.3rem;
            color: #f0f0f0;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Decorative shapes in hero */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(244, 197, 66, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .hero-shape-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
        }

        .hero-shape-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* About Section with Image */
        .about-intro {
            padding: 100px 2rem;
            background: #fff;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 5rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .about-text h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #f4c542 0%, #d4a520 100%);
            margin-top: 1rem;
            border-radius: 2px;
        }

        .about-text p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        /* Image Container with Effects */
        .about-image-container {
            position: relative;
            height: 500px;
        }

        .about-main-image {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            transform: translateZ(0);
            transition: all 0.5s ease;
        }

        .about-main-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
        }

        .about-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Decorative Frame */
        .image-frame {
            position: absolute;
            inset: -20px;
            border: 3px solid #f4c542;
            border-radius: 40px;
            z-index: -1;
            opacity: 0.3;
        }

        /* Floating Stats Badge */
        .floating-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: linear-gradient(135deg, #d4a520 0%, #f4c542 100%);
            padding: 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(212, 165, 32, 0.4);
            z-index: 2;
            animation: floatBadge 3s ease-in-out infinite;
        }

        @keyframes floatBadge {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating-badge h3 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 0.3rem;
            font-weight: 800;
        }

        .floating-badge p {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
        }

        /* Decorative Dots */
        .dots-decoration {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(circle, #f4c542 3px, transparent 3px);
            background-size: 20px 20px;
            opacity: 0.4;
            z-index: -1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 2.8rem;
            }

            .page-hero p {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-text h2 {
                font-size: 2.3rem;
            }

            .about-image-container {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 150px 1.5rem 80px;
            }

            .page-hero h1 {
                font-size: 2.2rem;
            }

            .page-hero p {
                font-size: 1rem;
            }

            .about-intro {
                padding: 60px 1.5rem;
            }

            .about-text h2 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .about-image-container {
                height: 400px;
            }

            .floating-badge {
                bottom: -20px;
                left: -20px;
                padding: 1.5rem 2rem;
            }

            .floating-badge h3 {
                font-size: 2rem;
            }

            .floating-badge p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 1.8rem;
            }

            .about-text h2 {
                font-size: 1.7rem;
            }

            .about-image-container {
                height: 350px;
            }

            .floating-badge {
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                padding: 1.2rem 1.8rem;
            }

            .dots-decoration {
                width: 80px;
                height: 80px;
            }
        }
        /* Mission Vision Values */
        .mvv-section {
            padding: 80px 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .mvv-card {
            background: #fff;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-top: 5px solid #f4c542;
            transition: all 0.3s;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 165, 32, 0.2);
        }

        .mvv-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .mvv-card h3 {
            font-size: 1.8rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
        }

        .mvv-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 80px 2rem;
            background: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 4rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #f4c542;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(212, 165, 32, 0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #1a1a2e;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Team Section */
        .team-section {
            padding: 80px 2rem;
            background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .team-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 165, 32, 0.2);
        }

        .team-image {
            background: linear-gradient(135deg, #f4c542 0%, #d4a520 100%);
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }

        .team-info {
            padding: 2rem;
            text-align: center;
        }

        .team-info h3 {
            color: #1a1a2e;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .team-info p {
            color: #d4a520;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-info .bio {
            color: #666;
            font-size: 0.95rem;
            font-weight: 400;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #2d3250 100%);
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #f4c542 0%, #d4a520 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: #ddd;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 2rem;
            background: #fff;
            text-align: center;
        }

        .cta-box {
            background: linear-gradient(135deg, #f4c542 0%, #d4a520 100%);
            padding: 4rem 2rem;
            border-radius: 20px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(212, 165, 32, 0.3);
        }

        .cta-box h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .cta-box p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }

        .btn-white {
            background: #fff;
            color: #d4a520;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
        }

        /* Footer */
        footer {
            background: #0a0a1a;
            color: #ddd;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #f4c542;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #f4c542;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }
        }