/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1e1e1e;
  color: #f5f5f5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #1e1e1e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0; 
  width: 100%;
  z-index: 1000; 
}


header .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

header .logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 50px;
}

header a{
  text-decoration: none;
  color: inherit;

}

header a:hover{
  color: #00bfa6;
  text-decoration: underline;

}


nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00bfa6;
}

nav .book-btn {
  background-color: #00bfa6;
  color: #1e1e1e;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  animation: fadeInUp 1s ease-in-out both;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
}

.buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  transition: all 0.3s;
}

.btn.primary {
  background-color: #00bfa6;
  color: #1e1e1e;
}

.btn.primary:hover {
  background-color: #00a38c;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #f5f5f5;
  color: #f5f5f5;
}

.btn.secondary:hover {
  background-color: #f5f5f5;
  color: #1e1e1e;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
}

/* Services Section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px;
  animation: fadeIn 1.2s ease-in-out both;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #00bfa6;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #00bfa6;
}

.service-card p {
  color: #ccc;
}

/* Portfolio Timeline */
.portfolio-timeline {
  padding: 60px;
  background-color: #1a1a1a;
  text-align: center;
  animation: fadeIn 1.2s ease-in-out both;
}

.portfolio-timeline h2 {
  font-size: 2rem;
  color: #00bfa6;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  margin: auto;
  max-width: 800px;
  padding-left: 20px;
  border-left: 2px solid #00bfa6;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
  animation: fadeInUp 0.8s ease-in-out both;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: #00bfa6;
  border-radius: 50%;
  border: 2px solid #fff;
}


.timeline-content {
  margin: 20px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.timeline-content h3 {
  color: #00bfa6;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #ccc;
  font-size: 0.95rem;
}
.timeline-content a {
  color: #00bfa6;
  font-size: 0.95rem;
  text-decoration: none;
}
.timeline-content a:hover{
  text-decoration: underline;
  color: #ccc;
}

/* About Section */
.about {
  padding: 60px;
  text-align: center;
  background-color: #292929;
  animation: fadeIn 1.2s ease-in-out both;
}

.about h2 {
  color: #00bfa6;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #ccc;
}

/* Footer */
.footer-content {
  text-align: center;
  padding: 40px 20px;
}

.footer-content h2 {
  color: #00bfa6;
  margin-bottom: 20px;
}
.footer-content a {
  text-decoration: none;
}

.social-links a {
  color: #f5f5f5;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00bfa6;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .hero {
    margin-top: 100px;
    padding: 100px 20px 40px;
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .services, .about, .portfolio-timeline {
    padding: 40px 20px;
  }

  nav a {
    margin: 10px;
  }

  .timeline {
    padding-left: 10px;
  }
}

