* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0a0a0a;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #ff9500;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.hero-content h1 {
    font-size: 3rem;
    /* margin-bottom: 0.1 */
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
}

.hero-content h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff9500;
}


/* Section Headers */
.section-header {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
}

.section-label {
    color: #ff9500;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #ff9500;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    color: #ffffff;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text h3 {
    color: #ff9500;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
}

.personal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.personal-info p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.personal-info i {
    color: #ff9500;
    margin-right: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background-color: #3a3a3a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #666;
}

.image-placeholder img {
    width: 300px;
    height: 300px;
    background-color: #3a3a3a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #666;
}

@media (max-width: 768px) {
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .image-placeholder,
  .image-placeholder img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .download-btn {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}


/* Statistics */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #3a3a3a;
    border-radius: 10px;
}

.stat-item i {
    font-size: 2rem;
    color: #ff9500;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #cccccc;
}

/* Skills
.skills {
    margin-bottom: 4rem;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    width: 100%;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.skill-bar {
    height: 10px;
    background-color: #3a3a3a;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: #ff9500;
    width: 0;
    transition: width 2s ease-in-out;
} */
/* Interests */
.skills {
    margin-bottom: 4rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.skills-item {
    padding: 1.5rem 1rem;
    background-color: #ff9500;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
}

.skills-item:hover {
    transform: translateY(-3px);
    background-color: #4a4a4a;
}


/* Interests */
.interests {
    margin-bottom: 4rem;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.interest-item {
    padding: 1.5rem 1rem;
    background-color: #3a3a3a;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
}

.interest-item:hover {
    transform: translateY(-3px);
    background-color: #4a4a4a;
}

/* Testimonials */
.testimonials {
    margin-bottom: 4rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-slide {
    display: none;
    padding: 2rem;
    background-color: #3a3a3a;
    text-align: left;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #ff9500;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}



.project-item {
    padding: 2rem;
    background-color: #3a3a3a;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.project-icon {
    width: 60px;
    height: 60px;
    background-color: #ff9500;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.project-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.project-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.project-item p {
    color: #cccccc;
    line-height: 1.6;
}

.project-item {
  text-decoration: none; 
  color: inherit;          
  display: block;    
}



/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #3a3a3a;
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff9500;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    color: #cccccc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff9500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background-color: #3a3a3a;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9500;
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    padding: 1rem 2rem;
    background-color: #ff9500;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.contact-form button:hover {
    background-color: #e68500;
}

.contact-form button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
    display: block;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    display: block;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: #1a1a1a;
    text-align: center;
}

.footer p {
    color: #cccccc;
}

.footer span {
    color: #ff9500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .personal-info {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}