/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: clip !important ;
}

html {
  scroll-behavior: smooth;
}
.w-m {
  max-height: 200px;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo .logo-text {
  font-size: 1.8rem;
 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(header.jpg);
}
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(102, 126, 234, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-name {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.typing-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cursor {
  color: #667eea;
  animation: blink 1s infinite;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  color: #a0a0a0;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #d0d0d0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
}

.profile-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-10px);
}

.profile-avatar {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(102, 126, 234, 0.3);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.profile-info p {
  color: #a0a0a0;
  margin-bottom: 20px;
}

.profile-languages {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.language-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 2px solid #667eea;
  border-bottom: 2px solid #667eea;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* About Section */
.about {
  background: rgba(255, 255, 255, 0.02);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #d0d0d0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
}
.stat-numbers {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.9rem;
  color: #a0a0a0;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.tech-item i {
  font-size: 73px;
  color: #5959ff !important; 
}
.tech-item {
  
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
}

/* Experience Section */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-date {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  width: 45%;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-10px);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.company-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #667eea;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a0a0a0;
}

.timeline-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Education Section */
.education {
  background: rgba(255, 255, 255, 0.02);
}

.education-grid {
  display: flex;
 justify-content: center;
}

.education-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.education-card:hover {
  transform: translateY(-10px);
}

.education-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.education-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #667eea;
}

.education-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a0a0a0;
}

.certifications h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  
  text-align: center;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  background: rgba(102, 126, 234, 0.1);
}

.cert-provider {
 
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.cert-card h4 {
  font-size: 1rem;
  color: #d0d0d0;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.skill-category h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #667eea;
  text-align: center;
}

.skill-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.skill-name {
  width: 120px;
  font-weight: 500;
}

.skill-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 0 15px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
  width: 0;
  transition: width 2s ease-in-out;
}

.skill-percent {
  font-weight: 600;
  color: #667eea;
  min-width: 40px;
}

/* Achievements Section */
.achievements {
  background: rgba(255, 255, 255, 0.02);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.achievement-card:hover {
  transform: translateY(-10px);
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.achievement-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #667eea;
}

.achievement-card p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.achievement-year {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.volunteer-section {
  margin-top: 60px;
}

.volunteer-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #667eea;
}

.volunteer-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.volunteer-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.volunteer-content h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #667eea;
}

.volunteer-content p {
  line-height: 1.6;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image {
  position: relative;
  overflow: hidden;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

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

.project-links {
  display: flex;
  gap: 20px;
}

.project-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.project-link:hover {
  transform: scale(1.1);
}

.project-content {
  padding: 30px;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #667eea;
}

.project-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Contact Section */
.contact {
  background: rgba(255, 255, 255, 0.02);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #667eea;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #667eea;
}

.contact-details a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #667eea;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a0a0;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text p {
  color: #a0a0a0;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  color: #a0a0a0;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-3px);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clients Section */
.clients {
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.clients-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.carousel-slide {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: brightness(1) contrast(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.carousel-btn-prev {
  left: -25px;
}

.carousel-btn-next {
  right: -25px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background: rgba(102, 126, 234, 0.6);
}

/* Auto-scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.carousel-track.auto-scroll {
  animation: scroll 20s linear infinite;
}

.carousel-track.auto-scroll:hover {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .education-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
    backdrop-filter: blur(20px);
  }
.tech-grid-container {
  width: 90vw !important;
    
}
  .about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #d0d0d0;
  width: 90vw !important; 
}
  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-content {
    width: 100%;
    margin-left: 40px !important;
    margin-right: 0 !important;
  }

  .timeline-date {
    left: 20px;
    transform: translateX(-50%);
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

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

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

  .volunteer-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn-prev {
    left: -20px;
  }

  .carousel-btn-next {
    right: -20px;
  }

  .carousel-slide {
    flex: 0 0 150px;
  }

  .client-logo {
    width: 120px;
    height: 60px;
  }
}

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

  .section {
    padding: 60px 0;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    padding: 12px 25px;
  }

  .profile-card {
    padding: 20px;
  }

  .profile-avatar {
    width: 150px;
    height: 150px;
  }

  .timeline-content {
    padding: 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .carousel-container {
    padding: 20px 10px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 120px;
  }

  .client-logo {
    width: 100px;
    height: 50px;
    padding: 10px;
  }
}

/* Utility Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
 
        .tech-grid-container {
            width: 50%;
            max-width: 1200px;
           
            backdrop-filter: blur(20px);
            
            border-radius: 20px;
            padding: 40px 0;
            overflow: hidden;
            position: relative;
        }

        .tech-grid-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            pointer-events: none;
        }

        .tech-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .tech-row {
            height: 100px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Efecto de desvanecimiento en los bordes */
        .tech-row::before,
        .tech-row::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 10;
            pointer-events: none;
        }

        .tech-row::before {
            left: 0;
            background: linear-gradient(to right, 
                rgba(10, 10, 10, 1) 0%,
                rgba(10, 10, 10, 0.8) 30%,
                transparent 100%);
        }

        .tech-row::after {
            right: 0;
            background: linear-gradient(to left, 
                rgba(10, 10, 10, 1) 0%,
                rgba(10, 10, 10, 0.8) 30%,
                transparent 100%);
        }

        .tech-track {
            display: flex;
            align-items: center;
            gap: 40px;
            white-space: nowrap;
            will-change: transform;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        /* Animaciones para cada fila */
        .tech-row:nth-child(1) .tech-track {
            animation: slideRightToLeft 25s linear infinite;
        }

        .tech-row:nth-child(2) .tech-track {
            animation: slideLeftToRight 30s linear infinite;
        }

        .tech-row:nth-child(3) .tech-track {
            animation: slideRightToLeft 28s linear infinite;
        }

        .tech-item {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .tech-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.2) 0%, 
                rgba(118, 75, 162, 0.2) 100%);
            border-radius: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tech-item:hover::before {
            opacity: 1;
        }

        .tech-item:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: rgba(102, 126, 234, 0.6);
            box-shadow: 
                0 20px 40px rgba(102, 126, 234, 0.3),
                0 0 0 1px rgba(102, 126, 234, 0.2);
        }

        .tech-item i {
            font-size: 32px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .tech-item svg {
            width: 32px;
            height: 32px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .tech-item:hover i,
        .tech-item:hover svg {
            transform: scale(1.2) rotate(5deg);
        }

        /* Colores específicos para cada tecnología */
        .python { color: #3776ab; }
        .javascript { color: #f7df1e; }
        .php { color: #777bb4; }
        .html5 { color: #e34f26; }
        .css3 { color: #1572b6; }
        .bootstrap { color: #7952b3; }
        .shopify { color: #96bf48; }
        .wordpress { color: #21759b; }
        .react { color: #61dafb; }
        .nodejs { color: #339933; }
        .git { color: #f05032; }
        .github { color: #181717; }
        .docker { color: #2496ed; }
        .aws { color: #ff9900; }
        .figma { color: #f24e1e; }
        .sass { color: #cc6699; }
        .tailwind { color: #06b6d4; }
        .vue { color: #4fc08d; }
        .angular { color: #dd0031; }
        .laravel { color: #ff2d20; }

        /* Animaciones */
        @keyframes slideRightToLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes slideLeftToRight {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Efecto de pausa al hover */
        .tech-grid-container:hover .tech-track {
            animation-play-state: paused;
        }

        /* Efecto de brillo en el contenedor */
        .tech-grid-container {
            position: relative;
            overflow: hidden;
        }

        .tech-grid-container::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
             
            animation: shimmer 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes shimmer {
            0%, 100% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            50% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tech-item {
                width: 60px;
                height: 60px;
            }
            
            .tech-item i,
            .tech-item svg {
                font-size: 24px;
                width: 24px;
                height: 24px;
            }
            
            .tech-track {
                gap: 30px;
            }
            
            .tech-row {
                height: 80px;
            }
            
            .tech-row::before,
            .tech-row::after {
                width: 60px;
            }
        }

        @media (max-width: 480px) {
            .tech-item {
                width: 102px;
    height: 60px;
            }
            
            .tech-item i,
            .tech-item svg {
                font-size: 20px;
                width: 20px;
                height: 20px;
            }
            
            .tech-track {
                gap: 25px;
            }
            
            .tech-row {
                height: 70px;
            }
            
            .tech-grid {
                gap: 20px;
            }
        }

        /* Título opcional */
        .tech-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
  

       .cicon i {
  font-size: 37px;
  color: #5959ff !important; 
}



.cert-prov{
  height: 120px !important;
  background-color: transparent !important;
}
.certifications {
    margin-bottom: 40px;
}

.certifications h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #667eea;
}

.cert-carousel-container {
    position: relative;
    width: 90vw;
    height: 300px;
    overflow: hidden;
     
    border-radius: 20px;
    backdrop-filter: blur(10px);
     
}

.cert-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-track {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: slideCarousel 40s linear infinite;
    will-change: transform;
}

.cert-card {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
 
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card.center {
    transform: scale(1.2);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.3),
        0 0 0 2px rgba(102, 126, 234, 0.2);
    z-index: 10;
}

.cert-card.center::before {
    opacity: 1;
}

.cert-card.center .cert-overlay {
    opacity: 1;
    visibility: visible;
}

.cert-provider {
    width: 100%;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
   
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cert-card.center .cert-provider {
    transform: scale(1.1);
}

.cert-prov {
    width: 90%;
     object-fit: contain;
}

.cert-card h4 {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.cert-card.center h4 {
    color: #ffffff;
    font-weight: 600;
}

.cert-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.cert-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 8px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.center-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(102, 126, 234, 0.3) 20%,
        rgba(102, 126, 234, 0.6) 50%,
        rgba(102, 126, 234, 0.3) 80%,
        transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* Animación del carrusel */
@keyframes slideCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-230px * 8)); /* 200px width + 30px gap */
    }
}

/* Pausa la animación al hacer hover */
.cert-carousel-container:hover .cert-track {
    animation-play-state: paused;
}

/* Efecto de desvanecimiento en los bordes */
.cert-carousel-container::before,
.cert-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 15;
    pointer-events: none;
}

.cert-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.8) 30%,
        transparent 100%);
}

.cert-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.8) 30%,
        transparent 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .cert-carousel-container {
        height: 280px;
    }
    elemento {
}
.hero-text {
 
  padding: 30px !important;

}
    .cert-card {
        width: 180px;
        height: 220px;
       
    }
    
    .cert-provider {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .cert-prov {
        width: 50px;
        height: 50px;
    }
    
    .cert-card h4 {
        font-size: 0.9rem;
    }
    
    .cert-track {
        gap: 25px;
    }
    
    @keyframes slideCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-205px * 8)); /* 180px width + 25px gap */
        }
    }
}

@media (max-width: 480px) {
    .cert-carousel-container {
        height: 250px;
    }
    
    .cert-card {
        width: 160px;
        height: 200px;
        
    }
    
    .cert-provider {
        width: 100%;
        height: 85px;
        margin-bottom: 12px;
    }
    
    .cert-prov {
        width: 90% !important;
         
    }
    
    .cert-card h4 {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .cert-track {
        gap: 20px;
    }
    
    .cert-btn {
        padding: 8px 8px;
        font-size: 0.8rem;
    }
    
    @keyframes slideCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 8)); /* 160px width + 20px gap */
        }
    }
}