
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
            font-family: 'Times New Roman', Times, serif;
        }
        
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            font-family: 'Times New Roman', Times, serif;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Header Styles */
        header {
            background-color: #b39684;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        nav ul {
            display: flex;
            font-size: 1.5rem;
            list-style: none;
            gap: 2rem;
        }
        
        nav ul li a {
            display: inline-block;
            color: #333;
            font-weight: 500;
            font-family: 'Times New Roman', Times, serif;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #fff;
         
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .social-links a {
            color: #333;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #fff;
        }
        
        /* Hero Section */
        .hero {
            background-color: #b39684;
            /* padding: 3rem 5% 5rem; */
            text-align: center;
        }
        
        .hero h1 {
            font-size: 4rem;
            color: #fff;
            /* margin-bottom: 1rem; */
        }
        
        /* About Section */
        .about {
            display: flex;
            padding: 5rem 5%;
            gap: 3rem;
            align-items: center;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 50%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 3rem;
            font-family: 'Times New Roman', Times, serif;
            margin-bottom: 1.5rem;
            color: #333;
        }
        #tagline {
            font-size: 1.8rem;
            font-weight: bold;
            color: #3d4143;
            /* font-style: italic; */
            /* margin-bottom: 1.8rem; */
        }
        .about-content p {
            /* margin-bottom: 1.rem; */
            font-size: 1.2rem;
            color: #555;
        }

        /* Skills Section */
        .skills {
            padding: 5rem 5%;
            background-color: #f9f9f9;
        }
        
        .skills h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .skill-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .skill-category {
            background-color: #fff;
            padding: 2rem;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .skill-category h3 {
            margin-bottom: 1rem;
            color: #b39684;
        }
        
        .skill-list {
            list-style: none;
        }
        
        .skill-list li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .skill-list li::before {
            content: "•";
            color: #b39684;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Projects Section */
        .projects {
            padding: 5rem 5%;
        }
        
        .projects h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .project-card {
            background-color: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
        }
        
        .project-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .project-content {
            padding: 1.5rem;
        }
        
        .project-content h3 {
            margin-bottom: 1rem;
            color: #333;
        }
        
        .project-content p {
            color: #666;
            margin-bottom: 1rem;
        }
        
        .project-tools {
            font-size: 0.9rem;
            color: #b39684;
            font-weight: 500;
        }
        
        /* Experience Section */
        .experience {
            padding: 5rem 5%;
            background-color: #f9f9f9;
        }
        
        .experience h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #b39684;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .timeline-content h3 {
            margin-bottom: 10px;
            color: #333;
        }
        
        .timeline-content h4 {
            margin-bottom: 15px;
            color: #b39684;
        }
        
        .timeline-content p {
            color: #666;
        }
        
        /* Education Section */
        .education {
            padding: 5rem 5%;
        }
        
        .education h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .education-card {
            background-color: #fff;
            padding: 2rem;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .education-card h3 {
            margin-bottom: 0.5rem;
            color: #333;
        }
        
        .education-card h4 {
            margin-bottom: 1rem;
            color: #b39684;
        }
        
        .education-card p {
            color: #666;
        }
        
        /* Achievements Section */
        .achievements {
            padding: 5rem 5%;
            background-color: #f9f9f9;
        }
        
        .achievements h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .achievement-list {
            list-style: none;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .achievement-list li {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 3rem;
        }
        
        .achievement-list li::before {
            content: "🏆";
            position: absolute;
            left: 1rem;
            top: 1.5rem;
        }
        
        /* Contact Section */
        .contact {
            padding: 5rem 5%;
            text-align: center;
        }
        
        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .contact p {
            max-width: 600px;
            margin: 0 auto 2rem;
            color: #666;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .contact-info a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #b39684;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #333;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            text-align: left;
            color: #333;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        button {
            background-color: #b39684;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #a38674;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        
        footer p {
            margin-bottom: 1rem;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .footer-social a {
            color: white;
            transition: color 0.3s;
        }
        
        .footer-social a:hover {
            color: #b39684;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .about {
                flex-direction: column;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            nav ul {
                display: none;
            }
            
            .contact-info {
                flex-direction: column;
            }
        }
    
