/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #6dd5ed 0%, #2193b0 100%);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f0f8ff;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 2.5rem 0;
  }
}

/* Hamburger Menu Enhancements */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s;
}
.hamburger:hover {
  color: #1d5fa7;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 1001;
  }
  .nav-links a {
    margin: 1.2rem 0;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    color: #2c3e50;
    font-size: 1.1rem;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .hamburger {
    display: block;
  }
}

/* Hero Section - Remove gradient overlay */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgba(0,0,0,0.75);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(0,0,0,0.6);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  color: rgba(0,0,0,0.8);
  background: #fff;
}

.cta-button:hover {
  background-color: #2980b9;
  background: #f0f0f0;
  color: #2193b0;
}

/* About Section - Add gradient background */
.about {
  padding: 5rem 0;
  background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.education {
  margin-top: 2rem;
}

.education ul {
  list-style-type: none;
  margin-top: 1rem;
}

.education li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.education li:before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
}

/* Experience Section */
.experience {
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
}

.timeline-item {
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.timeline-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  color: #3498db;
  margin-bottom: 0.5rem;
}

.date {
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 1rem;
}

/* Skills Section */
.skills {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skill-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
}

.skill-card i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #3498db;
  margin-right: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  padding: 1rem;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2980b9;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
  margin-top: 0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.2rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: #3498db;
  text-decoration: underline;
}
.footer-contact-item i {
  font-size: 1.3rem;
  color: #3498db;
}
footer p {
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Social Links */
.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

  .hamburger {
      display: block;
  }

  .hero-content h1 {
      font-size: 2rem;
  }

  .about-content {
      flex-direction: column;
  }

  .contact-content {
      grid-template-columns: 1fr;
  }

  .skills-grid {
      grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-content,
.about-content,
.timeline-item,
.skill-card,
.contact-content {
  animation: fadeIn 1s ease-out;
} 

/* Resources Section Styles */
#resources-section {
  background: #f9f9f9;
  padding: 30px 20px;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 700px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
#resources-section h2 {
  margin-bottom: 18px;
  color: #2d3a4b;
  font-size: 1.6em;
}
#resources-list {
  list-style: none;
  padding: 0;
}
#resources-list li {
  margin-bottom: 12px;
}
#resources-list a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
#resources-list a:hover {
  color: #0d47a1;
  text-decoration: underline;
} 

/* Footer Divider */
.footer-divider {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 0 auto 0 auto;
  width: 90%;
}

/* Card Gradient and Shadow */
.skill-card, .timeline-item, .about-image img, .contact-info, .contact-form, #resources-section {
  background: linear-gradient(120deg, #f8fafc 60%, #e3f0ff 100%);
  box-shadow: 0 4px 16px rgba(44,62,80,0.10), 0 1.5px 4px rgba(44,62,80,0.04);
  border-radius: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.skill-card:hover, .timeline-item:hover, .about-image img:hover, .contact-info:hover, .contact-form:hover, #resources-section:hover {
  box-shadow: 0 8px 32px rgba(44,62,80,0.13), 0 3px 8px rgba(44,62,80,0.08);
  transform: translateY(-3px) scale(1.01);
}
/* Button Gradient */
.cta-button, .submit-btn {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.cta-button:active, .submit-btn:active {
  background-color: #1d5fa7;
}
.cta-button:hover, .submit-btn:hover {
  background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
  box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-divider {
    width: 98%;
  }
} 

.skill-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.skill-link:focus .skill-card,
.skill-link:hover .skill-card {
  box-shadow: 0 8px 32px rgba(44,62,80,0.18), 0 3px 8px rgba(44,62,80,0.12);
  transform: translateY(-5px) scale(1.03);
  outline: 2px solid #3498db;
} 

/* Contact Icons */
.contact-item i {
  font-size: 1.5rem;
  color: #2575fc;
  margin-right: 1rem;
  transition: color 0.2s;
}
.contact-item a:hover i {
  color: #6a11cb;
}

/* Responsive Contact Info */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-info {
    margin-bottom: 1.5rem;
  }
}

/* Hamburger Overlay for Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 70vw;
    height: calc(100vh - 70px);
    background: linear-gradient(120deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: -2px 0 12px rgba(44,62,80,0.10);
    border-radius: 0 0 0 18px;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
  .nav-links a {
    color: #fff;
    font-size: 1.2rem;
    margin: 1.2rem 0;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #ffffff33;
    width: 100%;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .nav-links a:hover {
    background: #ffffff22;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
} 