        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #000000;
            background: #4f6ca6;
        }

        /* Variables */
        :root {
            --primary-color: #002fba;
            --secondary-color: #02051b;
            --accent-color: #9a1717;
            --light-blue: #e3f0ff;
            --dark-blue: #bcbcbc;
            --transition: all 0.3s ease;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        h1 {
            font-size: 2.5rem;
            color: #000000;
        }

        h2 {
            font-size: 2rem;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 60px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }

        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }

        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        /* Header and Navigation */
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(to right, #fff, #e0f7fa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 8px 12px;
            border-radius: 4px;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        #home {
            height: 100vh;
            display: flex;
            align-items: center;
            background: var(--primary-color)yellow;
            background: linear-gradient(rgba(54, 118, 181, 0.5), rgba(22, 13, 13, 0.5)), url('/api/placeholder/1200/800') center/cover no-repeat;
            /* background-image: url(./image/IMG_0355.JPG); */
            color: rgb(0, 0, 0);
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* About Section */
        #about {
            background-color: white;
            /* background: linear-gradient(#3c36eb, var(--primary-color), var(--secondary-color)); */
            background: linear-gradient(rgba(54, 118, 181, 0.5), rgba(22, 13, 13, 0.5)), url('/api/placeholder/1200/800') center/cover no-repeat;

        }

        .contact-content-new {
            color: var(--secondary-color);
            text-align: center;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 100px;
            /* width: 250px;
            height: 250px; */
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1/1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            /* scale: 10%; */
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .interest-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .interest-icon {
            width: 40px;
            height: 40px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-color);
        }

        /* Gallery Section */
        #gallery {
            /* background-color: var(--light-black); */
            /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
            background: linear-gradient(rgba(54, 118, 181, 0.5), rgba(22, 13, 13, 0.5)), url('/api/placeholder/1200/800') center/cover no-repeat;

        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

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

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            opacity: 0;
            transition: var(--transition);
        }

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

        /* Contact Section */
        #contact {
            /* background-color: rgba(255, 255, 255, 0); */
            background: linear-gradient(rgba(54, 118, 181, 0.5), rgba(22, 13, 13, 0.5)), url('/api/placeholder/1200/800') center/cover no-repeat;

        }

        .contact-content {
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4267B2, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .social-icon:hover i {
            color: #000000;
        }
        .social-icon i {
            transition: color 0.3s ease;
        }
        /* Responsive design for social links */
        @media screen and (max-width: 768px) {
            .social-links {
                gap: 20px;
                margin-top: 30px;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .social-links {
                gap: 15px;
                margin-top: 25px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }

        /* .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        } */

        /* .social-icon {
            width: 60px;
            height: 60px;
            background-color: var(green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.8rem;
            transition: var(--transition);
        } */

        /* .social-icon:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        } */

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            background: linear-gradient(rgba(54, 118, 181, 0.5), rgba(22, 13, 13, 0.5)), url('/api/placeholder/1200/800') center/cover no-repeat;
            color: rgb(255, 255, 255);
            text-align: center;
            padding: 30px 0;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-content {
                flex-direction: column;
            }

            .nav-links {
                margin-top: 20px;
            }

            .nav-links li {
                margin-left: 15px;
            }

            section {
                padding: 60px 0;
            }
        }

        @media screen and (max-width: 480px) {
            nav {
                flex-direction: column;
            }

            .nav-links {
                margin-top: 20px;
            }

            .nav-links li {
                margin: 0 10px;
            }
        }

        .h2 {
            color: white;
        }