        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #C9DFF2;
            overflow-x: hidden;
        }
        /* Navigation */
        
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(46, 49, 64, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #809BBF;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #C9DFF2;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #809BBF;
        }
        /* Hero Section */
        
        .s-page-1 {
            position: relative;
            width: 100%;
        }
        
        .s-section-1 {
            position: relative;
        }
        
        .s-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: #2E3140;
        }
        
        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: #C9DFF2;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #cbdff3;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: #e2e9ff;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #6A7EA6, #809BBF);
            color: #2E3140;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.9s forwards;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(128, 155, 191, 0.3);
        }
        
        .about-section {
            height: 100vh;
            background: #2E3140;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 2rem;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .section-title {
            font-size: 3rem;
            color: #C9DFF2;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(45deg, #6A7EA6, #809BBF);
        }
        
        .about-text {
            font-size: 1.1rem;
            color: #6A7EA6;
            line-height: 1.8;
            text-align: center;
        }
        
        .skill-icon-img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .skill-item {
            background: rgba(46, 49, 64, 0.5);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .skill-item:hover {
            transform: translateY(-5px);
        }
        /* Projects Section */
        
        .projects-section {
            padding: 6rem 0;
            background: #2E3140;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .project-card {
            background: rgba(59, 63, 89, 0.5);
            border-radius: 15px;
            padding: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(128, 155, 191, 0.2);
            overflow: hidden;
        }
        
        .project-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #6A7EA6, #809BBF);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2E3140;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .project-content {
            padding: 2rem;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .project-title {
            font-size: 1.5rem;
            color: #809BBF;
            margin-bottom: 1rem;
        }
        
        .project-description {
            color: #6A7EA6;
            margin-bottom: 1.5rem;
        }
        
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .tech-tag {
            background: rgba(128, 155, 191, 0.2);
            color: #C9DFF2;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .project-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .demo-button {
            background: #809BBF;
            color: #2E3140;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .demo-button:hover {
            background: #6A7EA6;
            transform: translateY(-2px);
        }
        
        .github-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #809BBF;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .github-button:hover {
            background: #6A7EA6;
            transform: translateY(-2px);
        }
        
        .github-button svg {
            width: 24px;
            height: 24px;
            fill: #2E3140;
        }
        /* Skills Icons Section */
        
        .skills-icons-section {
            padding: 6rem 0;
            background: #3B3F59;
        }
        
        .skills-icons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .skill-icon-item {
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .skill-icon-item:hover {
            transform: translateY(-10px);
        }
        
        .skill-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #6A7EA6, #809BBF);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #2E3140;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .skill-name {
            color: #C9DFF2;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .contact-section {
            padding: 6rem 0;
            background: #2E3141;
        }
        
        .contact-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-text {
            font-size: 1.2rem;
            color: #6A7EA6;
            margin-bottom: 3rem;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .contact-item {
            text-align: center;
        }
        
        .contact-item h3 {
            color: #809BBF;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p {
            color: #6A7EA6;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6A7EA6, #809BBF);
            color: #2E3140;
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(128, 155, 191, 0.4);
        }
        /*******************************************************/
        /* Education Section */
        
        .education-section {
            padding: 6rem 0;
            background: #3B3F5A;
        }
        
        .education-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .education-text {
            font-size: 1.2rem;
            color: #E0E0E0;
            line-height: 1.8;
            margin-bottom: 3rem;
        }
        
        .programming-skills {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .programming-skill {
            background: #2E3141;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid rgba(128, 155, 191, 0.2);
        }
        
        .programming-skill:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .programming-skill h3 {
            color: #839bc1;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .programming-skill p {
            color: #657fa8;
            font-size: 1rem;
        }
        /*******************************************************/
        /* Footer */
        
        .footer {
            background: #3B3F5B;
            padding: 2rem 0;
            text-align: center;
            color: #6A7EA6;
        }
        /* Animations */
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive Design */
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .about-content {
                grid-template-columns: 1fr;
            }
            .contact-info {
                flex-direction: column;
                gap: 2rem;
            }
            .social-links {
                gap: 1rem;
            }
        }