
        * {
            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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

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

        /* Header Section */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 30px;
            animation: slideInDown 0.8s ease;
        }

        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #007BFF;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
            transition: transform 0.3s ease;
        }

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

        .header-content h1 {
            font-size: 3rem;
            color: #007BFF;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #007BFF, #0056b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header-content h3 {
            color: #666;
            font-weight: 300;
            font-size: 1.5rem;
        }

        .contact-buttons {
            margin-top: 20px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: linear-gradient(45deg, #007BFF, #0056b3);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
        }

        /* Main Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            animation: fadeInUp 0.8s ease;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card h2 {
            color: #007BFF;
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-bottom: 2px solid #007BFF;
            padding-bottom: 10px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .skill-tag {
            background: linear-gradient(45deg, #007BFF, #0056b3);
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            text-align: center;
            font-weight: 500;
            transition: transform 0.2s ease;
        }

        .skill-tag:hover {
            transform: scale(1.05);
        }

        .hobby-list {
            list-style: none;
        }

        .hobby-list li {
            background: #f8f9ff;
            margin: 10px 0;
            padding: 12px 20px;
            border-radius: 10px;
            border-left: 4px solid #007BFF;
            transition: all 0.3s ease;
        }

        .hobby-list li:hover {
            background: #e6f0ff;
            transform: translateX(5px);
        }

        /* Full-width sections */
        .full-width {
            grid-column: 1 / -1;
        }

        .mission-vision ol {
            list-style: none;
            counter-reset: mission-counter;
        }

        .mission-vision ol li {
            counter-increment: mission-counter;
            margin: 15px 0;
            padding: 20px;
            background: #f8f9ff;
            border-radius: 10px;
            position: relative;
            padding-left: 80px;
        }

        .mission-vision ol li::before {
            content: counter(mission-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(45deg, #007BFF, #0056b3);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Gallery Section */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .gallery img:hover {
            transform: scale(1.05);
        }

        /* Education Section */
        .education-item {
            background: #f8f9ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #007BFF;
        }

        .education-item h4 {
            color: #007BFF;
            margin-bottom: 10px;
        }

        /* Resources Links */
        .resources-list {
            list-style: none;
        }

        .resources-list li {
            margin: 10px 0;
        }

        .resources-list a {
            display: block;
            padding: 15px 20px;
            background: #f8f9ff;
            border-radius: 10px;
            color: #007BFF;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 4px solid #007BFF;
        }

        .resources-list a:hover {
            background: #e6f0ff;
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .content-grid {
                grid-template-columns: 1fr;
            }

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

            .contact-buttons {
                justify-content: center;
            }
        }