/* style.css */

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

/* Desktop Navigation */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.desktop-nav a.active {
    color: #007bff; /* Highlight current page */
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #f8f8f8;
    padding: 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px 0;
}

.mobile-menu.active {
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .hero-content {
    flex: 1 1 500px;
  }
  
  .hero-content h1 {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a1a1a;
  }
  
  .hero-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
  }
  
  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
  }
  
  .cta-buttons {
    display: flex;
    gap: 16px;
  }
  
  .cta-buttons .btn {
    padding: 10px 22px;
    border: 2px solid #007bff;
    color: #007bff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .cta-buttons .btn:hover {
    background-color: #007bff;
    color: #fff;
  }
  
  .hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
  }
  .about-me-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .about-left {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .about-image {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    margin-bottom: 20px;
  }
  
  .icon-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .icon-btn {
    font-size: 24px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .icon-btn:hover {
    color: #0056b3;
  }
  
  .about-right {
    flex: 1 1 600px;
  }
  
  .about-right h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .about-right p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .about-right details {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .about-right summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about-me-section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .about-two-column {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .about-left-column {
    flex: 1 1 400px;
  }
  
  .about-left-column h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .about-left-column p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    display: block;
    margin: 0 auto 20px auto;
  }
  
  .icon-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .icon-btn {
    font-size: 24px;
    color: #007bff;
    text-decoration: none;
  }
  
  .icon-btn:hover {
    color: #0056b3;
  }
  
  .about-right-column {
    flex: 1 1 500px;
  }
  
  .about-right-column details {
    background-color: #f9f9f9;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .about-right-column summary {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
  }
  .experience-timeline {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .experience-timeline h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
  }
  
  .timeline {
    position: relative;
    margin-left: 40px;
    padding-left: 20px;
    border-left: 3px solid #ccc;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
  }
  
  .timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 70px;
    height: 70px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .timeline-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
  
  .timeline-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
    
  .timeline-content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .timeline-content h3 {
    margin: 0;
    font-size: 20px;
  }
  
  .timeline-content h4 {
    margin: 5px 0;
    font-weight: normal;
    font-size: 16px;
    color: #555;
  }
  
  .timeline-content .date {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 10px;
  }
  
  .timeline-content ul {
    margin: 0;
    padding-left: 18px;
  }
    .project-section h2 {
  font-size: 50px;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 20px;
  text-align: center;
}
.project-heading {
    font-size: 100px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
  }
  .skill-card {
    perspective: 1000px;
    width: 160px;
    height: 160px;
    position: relative;
  }
  .skill-front, .skill-back {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .skill-back {
    transform: rotateY(180deg);
    font-size: 14px;
    text-align: center;
  }
  .skill-card:hover .skill-front {
    transform: rotateY(180deg);
  }
  .skill-card:hover .skill-back {
    transform: rotateY(360deg);
  }
  
  