/* --- Variables & Reset --- */
:root {
  --primary-color: #0f172a; /* Dark Navy */
  --secondary-color: #1e293b; /* Lighter Navy */
  --accent-color: #14b8a6; /* Teal */
  --text-light: #f8fafc; /* White-ish */
  --text-dark: #334155; /* Dark Gray */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}
/* --- Scroll Animation Classes --- */

/* Starting state: hidden and pushed down */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  visibility: hidden;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, visibility;
}

/* Ending state: visible and in normal position */
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Optional: Staggered delays for grid items (like your project cards) */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
/* --- Project Section Styles --- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.project-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Tech Stack Tags */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-stack span {
  background: #f0f0f0;
  color: #555;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Links and Buttons */
.project-links {
  display: flex;
  gap: 1rem;
}

.project-links .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  flex: 1; /* Makes buttons equal width */
}

/* Optional: Add this if you don't already have an outline button class */
.outline-btn {
  border: 2px solid #333;
  color: #333;
  background: transparent;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #333;
  color: #fff;
}
body {
  background-color: var(--primary-color);
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Utilities --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bg-light {
  background-color: var(--secondary-color);
}

.text-light {
  color: var(--text-light);
}

/* --- Navbar --- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  padding: 20px 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hamburger Menu (Hidden by default) */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--text-light);
}

/* --- Hero Section --- */
/* --- Modern Hero Section (Clean Version) --- */
/* --- Modern Hero Section (Text Only) --- */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  background-color: var(--primary-color);
  padding-top: 80px;
  text-align: center; /* Center text alignment */
}

.hero-container {
  width: 100%;
  max-width: 800px; /* Constrain width for better readability */
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  width: 100%;
}

.greeting {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-name {
  font-size: 5rem; /* Larger since it's the main focus now */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-role {
  font-size: 2.5rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.typing-text {
  color: var(--accent-color);
}

.cursor {
  display: inline-block;
  width: 4px;
  background-color: var(--text-light);
  animation: blink 1s infinite;
}

.hero-description {
  font-size: 1.2rem;
  color: #94a3b8;
  margin: 0 auto 40px auto; /* Auto margins center the block */
  max-width: 600px; /* Prevent text from getting too wide */
  line-height: 1.8;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center; /* Center buttons */
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.primary-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.secondary-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Social Icons */
.hero-socials {
  display: flex;
  justify-content: center; /* Center icons */
  gap: 30px;
}

.hero-socials a {
  color: var(--text-light);
  font-size: 1.8rem;
  transition: var(--transition);
}

.hero-socials a:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .hero-name {
    font-size: 3rem;
  }

  .hero-role {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px auto;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
.typing-text {
  color: var(--accent-color);
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--text-light);
  animation: blink 1s infinite;
}

.hero-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px; /* Clean rounded corners instead of pill shape */
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.primary-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.secondary-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Social Icons */
.hero-socials {
  display: flex;
  gap: 20px;
}

.hero-socials a {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: var(--transition);
}

.hero-socials a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* --- Clean Image Styling (No Blob, No Overlay) --- */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Renamed from .blob-wrap to .image-wrapper for clarity */
.image-wrapper {
  width: 400px;
  height: 500px; /* Rectangular portrait shape */
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px; /* Soft rounded corners */
  box-shadow: 20px 20px 0px rgba(20, 184, 166, 0.1); /* Subtle offset shadow/accent instead of overlay */
}

/* Responsive */
@media screen and (max-width: 960px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    margin-top: 40px;
  }

  .hero-buttons,
  .hero-socials {
    justify-content: center;
  }

  .image-wrapper {
    width: 300px;
    height: 350px;
  }
}
.typing-text {
  color: var(--accent-color);
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--text-light);
  animation: blink 1s infinite;
}

.hero-description {
  font-size: 1.1rem;
  color: #94a3b8; /* Muted text */
  margin-bottom: 30px;
  max-width: 90%;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.primary-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.6);
}

.secondary-btn {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.secondary-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Social Icons */
.hero-socials {
  display: flex;
  gap: 20px;
}

.hero-socials a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.hero-socials a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Visual Side (Blob Animation) */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.blob-wrap {
  position: relative;
  width: 400px;
  height: 400px;
}

.blob {
  width: 100%;
  height: 100%;
  /* Put your image URL here */
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  /* Fancy organic shape */
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite;
  border: 5px solid rgba(255, 255, 255, 0.1);
}

/* Keyframe Animations */
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Responsive Modern Hero */
@media screen and (max-width: 960px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 50px;
  }

  .hero-text {
    margin-top: 40px;
  }

  .hero-description {
    margin: 0 auto 30px auto;
  }

  .hero-buttons,
  .hero-socials {
    justify-content: center;
  }

  .blob-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-name {
    font-size: 3rem;
  }
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: var(--transition);
}

.cta-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-img img {
  max-width: 100%;
  height: 600px;
  border-radius: 10px;
  border: 2px solid var(--accent-color);
  object-fit: cover;
}

.about-text h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}
/* modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  margin: 5% auto;
  padding: 40px;
  border: 2px solid var(--accent-color);
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3);
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  margin-bottom: 20px;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.modal-content h2 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.modal-btn {
  background: linear-gradient(135deg, var(--accent-color), #0d9488);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(20, 184, 166, 0.4);
}

.close {
  color: var(--accent-color);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  color: #f8fafc;
  transform: scale(1.2);
}

.skills-list {
  margin-top: 20px;
}
/* --- Skills Progress Bars --- */
.skills-list {
  margin-top: 30px;
}

.skills-list h4 {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.skill-bar {
  margin-bottom: 20px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
}

.bar-bg {
  width: 100%;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 5px;
  overflow: hidden; /* Ensures the fill doesn't spill out */
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.bar-fill {
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 5px;

  /* This makes it slide in when the page loads */
  animation: slideIn 1.5s cubic-bezier(0.1, 0.7, 1, 0.1) forwards;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes slideIn {
  to {
    transform: scaleX(1);
  }
}

/* Animation Keyframes */
@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: var(--target-width);
  }
}
/* --- Contact Form Styling --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  background-color: rgba(15, 23, 42, 0.8);
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 250, 252, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

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

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  min-height: 20px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent-color), #0d9488);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }

  .modal-content {
    padding: 30px;
    margin: 20% auto;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 1rem;
  }
}

/* --- Resume Section (Timeline) --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

/* Left side */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

/* Right side */
.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: var(--accent-color);
  margin-bottom: 5px;
}

.timeline-content .date {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--accent-color);
}

.card-header {
  margin-bottom: 15px;
}

.card-header i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.card-header span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.card-body {
  font-style: italic;
  opacity: 0.9;
}

/* --- Contact & Footer --- */
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: var(--secondary-color);
  border: 1px solid #334155;
  color: var(--text-light);
  border-radius: 5px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

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

.footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--secondary-color);
}

.social-links {
  margin-bottom: 15px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
}
/* telegram bot style*/
/* --- Mobile Responsiveness --- */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 60px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Changed to full width for mobile feel */
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

  .nav-links li {
    margin: 25px 0;
  }

  .nav-links.nav-active {
    transform: translateX(0%);
  }

  .hamburger {
    display: block;
  }

  /* Animate Hamburger to X */
  .toggle .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .bar:nth-child(2) {
    opacity: 0;
  }
  .toggle .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

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

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

  /* Timeline fixes for mobile */
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item:nth-child(odd) {
    text-align: left;
  }

  .timeline-dot {
    left: 22px; /* Fix dot position */
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 22px;
  }
}
.airplain-des{
  padding-top: 30px;
}
.e-commerce-des{
  padding-top: 30px
}