* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #1a0dab;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: #1a73e8;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #0d62d9;
            text-decoration: none;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid #1a73e8;
            color: #1a73e8;
        }
        
        .btn-outline:hover {
            background-color: #f1f3f4;
        }
        
        /* Header Styles */
        header {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #1a73e8;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: #5f6368;
            font-size: 14px;
            padding: 5px 0;
        }
        
        .nav-links a:hover {
            color: #1a73e8;
        }
        
        .nav-links a.active {
            color: #1a73e8;
            border-bottom: 2px solid #1a73e8;
        }
        
        /* Hero Section */
        .hero {
            background-color: #fff;
            padding: 60px 0;
            text-align: center;
            border-radius: 0 0 8px 8px;
            margin-bottom: 40px;
            box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
        }
        
.btn {
display: inline-block;
padding: 10px 18px;
background: #1a6fe0;
color: #fff;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
}


.btn:hover {
opacity: 0.85;
}


.btn-outline {
background: transparent;
border: 2px solid #1a6fe0;
color: #1a6fe0;
}
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #202124;
        }
        
        .hero p {
            font-size: 18px;
            color: #5f6368;
            margin-bottom: 30px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        /* Section Styles */
        .section {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 30px;
            color: #202124;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: center;
        }
        
        .profile-img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .about-text h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #202124;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #5f6368;
        }
        
        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .skill-category {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
        }
        
        .skill-category h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #202124;
        }
        
        .skill-list {
            list-style: none;
        }
        
        .skill-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            justify-content: space-between;
        }
        
        .skill-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .skill-level {
            color: #5f6368;
            font-size: 14px;
        }
        
        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .project-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .project-content {
            padding: 20px;
        }
        
        .project-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #202124;
        }
        
        .project-description {
            color: #5f6368;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }
        
        .project-tag {
            background-color: #f1f3f4;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
            color: #5f6368;
        }
        
        /* Interview Section */
        .interview-content {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
        }
        
        .interview-question {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f1f3f4;
        }
        
        .interview-question:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .question {
            font-weight: bold;
            margin-bottom: 10px;
            color: #202124;
        }
        
        .answer {
            color: #5f6368;
        }
        
        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
        }
        
        .contact-info h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #202124;
        }
        
        .contact-list {
            list-style: none;
        }
        
        .contact-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-list li:last-child {
            margin-bottom: 0;
        }
        
        .contact-icon {
            width: 20px;
            margin-right: 10px;
            color: #1a73e8;
        }
        
        .contact-form {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #202124;
            font-size: 14px;
        }
        
        .form-control {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #dfe1e5;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
        }
        
        .form-control:focus {
            border-color: #1a73e8;
            box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Footer Styles */
        footer {
            background-color: #f2f2f2;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .social-links {
            display: flex;
            list-style: none;
        }
        
        .social-links li {
            margin-right: 15px;
        }
        
        .social-links a {
            color: #5f6368;
            font-size: 14px;
        }
        
        .copyright {
            color: #5f6368;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .nav-links {
                margin-top: 15px;
                flex-wrap: wrap;
            }
            
            .nav-links li {
                margin-left: 0;
                margin-right: 15px;
                margin-bottom: 10px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
                margin-bottom: 10px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            
            .social-links {
                margin-bottom: 15px;
            }
        }