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

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

h2 {
  font-size: 3rem;
}

.hd-tittle {
  color: #4e4e4e;
}

.hd-tittle span {
  margin-left: 8px;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: auto;
  width: 150px;
}

.logo img {
  height: 100%;
  width: 100%;
}

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

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

.nav-link:hover {
  color: #ff6b35;
}

.contact-btn {
  color: #fff;
  padding: 10px 32px;
  background-color: #ff6b35;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  border: 1px solid transparent;
  transition: all .3s;
  ;
}

.contact-btn:hover {
  background: #e55a2b;
}

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

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


/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background: #f8f9fa;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.hero-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;

}

.highlight {
  color: #ff6b35;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  color: #fff;
  padding: 10px 32px;
  background-color: #ff6b35;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  border: 1px solid transparent;
  transition: all .3s;
  font-family: "Jost", sans-serif;
  cursor: pointer;
}

.cta-btn:hover {
  background: #e55a2b;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-info p {
  color: #666;
  font-size: 0.9rem;
}

.download-btn {
  color: #fff;
  padding: 10px 32px;
  background-color: #ff6b35;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .3s;
  font-family: "Jost", sans-serif;
  cursor: pointer;
}

.download-btn:hover {
  background: #e55a2b;
}


/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}



/* Experience Section */
.experience {
  padding: 80px 0;
  background: #f5f3f0;
  /* Changed to cream/beige background to match reference */
  /* position: relative; */
}

.resume-indicator {
  /* position: absolute; */
  top: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.resume-dot {
  width: 12px;
  height: 12px;
  background: #ff6b35;
  border-radius: 50%;
  margin: 0 0 6px 5px;
}

.resume-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.experience-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b2b2b2;
}

.timeline-section {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  left: -49px;
  top: 0;
  width: 22px;
  height: 22px;
  background: #ff6b35;
  border-radius: 50%;
  border: 4px solid #f5f3f0;
  z-index: 2;
}

.timeline-label {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-left: 20px;
}

.timeline-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.timeline-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
}

.card-description {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin-top: 20px;
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-row>span:first-child {
  min-width: 80px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.skill-bar-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.skill-bar-bg {
  flex: 1;
  height: 6px;
  background: #e8e8e8;
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: #ff6b35;
  border-radius: 3px;
  transition: width 2s ease-in-out;
}

.skill-percentage {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  min-width: 35px;
  text-align: right;
}

/* projects */

#projects {
  padding: 60px 20px;
  text-align: center;
}

#projects h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-family: jost, sans-serif;
}

#projects p {
  color: #666;
  font-size: 15px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 400px;
  /* object-fit: cover; */
  display: block;
  transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Button */
.explore-btn {
  background: #fff;
  color: #333;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.explore-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ff6b35;
}

/* Hover Effect */


.project-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .explore-btn {
  transform: translateY(0);
  opacity: 1;
}


/* Partners Section */
.partners {
  padding: 80px 0;
  background: #f8f9fa;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  align-items: center;
}

.partner-logo {
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s;
}

/* .partner-logo:hover {
  opacity: 1;
} */

.partner-logo img {
  max-width: 200px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}


/* Blog Section */
.blog {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content p {
  color: #666;
  line-height: 1.6;
}


/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #666;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

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

.submit-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #e55a2b;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 100px 0 20px;
}

.footer-logo {
  height: auto;
  width: 150px;
}

.footer-logo img {
  height: 100%;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ff6b35;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #e55a2b;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .timeline-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .resume-indicator {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .hero-content,
  .about-content,
  .experience-grid,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 3rem;
    font-family: jost, sans-serif;
  }

  .experience-timeline {
    padding-left: 40px;
  }

  .timeline-dot {
    left: -29px;
  }

  .timeline-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 10px;
  }

  .timeline-card {
    padding: 20px;
  }

  .resume-indicator {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px;
  }

  .navbar {
    padding: 1rem 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

  .section-title {
    font-size: 1.8rem;
  }

  .experience-timeline {
    padding-left: 30px;
  }

  .timeline-dot {
    left: -19px;
    width: 12px;
    height: 12px;
  }

  .timeline-line {
    left: 15px;
  }

  .timeline-label {
    font-size: 16px;
    padding-left: 10px;
  }

  .timeline-cards {
    padding-left: 5px;
  }

  .timeline-card {
    padding: 16px;
  }

  .skill-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .skill-row>span:first-child {
    min-width: auto;
  }

  .skill-bar-container {
    width: 100%;
  }
}

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

/* Animation for skill bars */
.skill-progress.animate {
  animation: fillBar 2s ease-in-out forwards;
}

@keyframes fillBar {
  from {
    width: 0%;
  }

  to {
    width: var(--target-width);
  }
}

/* Initial state */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateX(100px);
  /* by default right */
  transition: all 0.8s ease-out;
}

.animate-left {
  transform: translateX(-100px);
  /* from left */
}

.animate-right {
  transform: translateX(100px);
  /* from right */
}

/* When visible */
.animate-in {
  opacity: 1;
  transform: translateX(0);
}
