/* Base Styles */
:root {
    --primary-color: #ff4d4d;
    --secondary-color: #2d4059;
    --dark-color: #1a1a2e;
    --light-color: #f7f7f7;
    --gray-color: #6c757d;
    --text-color: #333;
    --white-color: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
  }
  
  a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 100px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header .subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .highlight {
    color: var(--primary-color);
  }
  
  .bg-light {
    background-color: var(--light-color);
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
  }
  
  .primary-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .primary-btn:hover {
    background-color: #e63e3e;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .secondary-btn {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
  }
  
  .secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  /* Header */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
  }
  
  #header.scrolled {
    padding: 10px 0;
    background-color: var(--white-color);
  }
  
  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
  }
  
  .logo span {
    color: var(--primary-color);
  }
  
  #nav-menu ul {
    display: flex;
  }
  
  #nav-menu li {
    margin-left: 30px;
  }
  
  #nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
  }
  
  #nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  #nav-menu a:hover::after,
  #nav-menu a.active::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('../assets/bg_image_1.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white-color);
  }
  
  .hero-content .profession {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e6e6e6;
    margin-bottom: 25px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    margin-bottom: 30px;
  }
  
  .hero-buttons .btn {
    margin: 0 10px 10px;
    color: white;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    margin: 0 10px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
  }
  
  @media screen and (max-width: 768px) {
    .hero-section {
      padding: 120px 0 70px;
      height: auto;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content .profession {
      font-size: 1.2rem;
    }
  }
  
  @media screen and (max-width: 576px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
  }

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

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.personal-info {
    margin: 30px 0;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
}

.info-title {
    min-width: 120px;
    font-weight: 600;
}

/* Skills Section */
.skills-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.skill-group h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-info h4 {
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Experience Section */
.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.timeline-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--light-color);
}

.timeline-item .date {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.timeline-item ul {
    margin-left: 20px;
}

.timeline-item li {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
    list-style-type: disc;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
}
/* Portfolio Section */
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  margin: 0 5px 10px;
  color: var(--text-color);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 25px;
  padding: 10px;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 220px; /* Height is shorter than width to create landscape orientation */
  width: 100%;
  margin-bottom: 15px;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes images cover the container while maintaining aspect ratio */
  object-position: center; /* Centers the image */
  transition: transform 0.5s ease;
  max-width: 100%;
  display: block; /* Removes any extra space below the image */
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  padding: 0 15px;
}

.portfolio-info h4 {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.portfolio-info p {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.view-project {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--white-color);
  border-radius: 50%;
  color: var(--primary-color);
  line-height: 40px;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.view-project:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
/* Testimonials Section */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin: 10px;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}

.contact-card {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 77, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 50px 0 20px;
}

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

.footer-logo h2 {
    font-size: 2rem;
    color: var(--white-color);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-social a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* GitHub Portfolio Section */
.github-portfolio {
  background: var(--light-color);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.github-portfolio h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.github-portfolio p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

.github-portfolio .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .skills-content,
    .experience-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .timeline-section:first-child {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 120px 0 70px;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        margin-bottom: 50px;
        text-align: center;
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    #nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white-color);
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    #nav-menu.active {
        left: 0;
    }
    
    #nav-menu ul {
        flex-direction: column;
        padding: 30px;
    }
    
    #nav-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .profession {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-social a {
        margin: 0 7px;
    }
}

@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .result-card,
  .expertise-card {
    padding: 30px 20px;
  }
  
  .result-number {
    font-size: 2.5rem;
  }
  
  .achievement-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-tags {
    justify-content: center;
  }
  
  .github-portfolio {
    padding: 20px 15px;
  }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    overflow-y: auto;
  }

  .modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
  }

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

  .close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
  }

  .close-modal:hover {
    color: #000;
  }

  .modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
  }

  .modal-header h2 {
    margin: 0 0 5px;
    font-size: 28px;
  }

  .modal-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
  }

  .modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 992px) {
    .modal-body {
      flex-direction: row;
    }
  }

  .project-gallery {
    position: relative;
    background-color: #f5f5f5;
    width: 100%;
  }
  
  @media (min-width: 992px) {
    .project-gallery {
      width: 60%;
    }
  }

  .gallery-container {
    position: relative;
    overflow: hidden;
    height: 300px;
  }

  @media (min-width: 768px) {
    .gallery-container {
      height: 400px;
    }
  }

  @media (min-width: 992px) {
    .gallery-container {
      height: 500px;
    }
  }

  .gallery-images {
    display: flex;
    transition: transform 0.3s ease-in-out;
    height: 100%;
  }

  .gallery-image {
    min-width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
  }

  .gallery-nav button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .gallery-nav button:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .gallery-indicators {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background-color: #f5f5f5;
  }

  .gallery-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .gallery-indicator.active {
    background-color: #333;
  }

  /* Project Details Styles */
  .project-details {
    padding: 30px;
    width: 100%;
  }

  @media (min-width: 992px) {
    .project-details {
      width: 40%;
    }
  }

  .project-details h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .project-meta {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
  }

  .meta-item {
    margin-right: 30px;
    margin-bottom: 15px;
  }

  .meta-item h4 {
    margin: 0 0 8px;
    font-size: 16px;
  }

  .meta-item p, .meta-item ul {
    margin: 0;
    color: #666;
  }

  .meta-item ul {
    padding-left: 20px;
  }

  .project-link {
    margin-top: 25px;
  }

  .project-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
  }

  .project-link a:hover {
    background-color: #555;
  }

  .portfolio-info .view-project {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .portfolio-info .view-project:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  /* Achievements Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.achievement-item {
  text-align: center;
  padding: 20px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.achievement-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.result-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.result-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.result-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.result-description {
  font-size: 0.95rem;
  color: var(--gray-color);
  line-height: 1.6;
}

/* Technical Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.expertise-card {
  background: var(--white-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: white;
}

.expertise-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.expertise-card p {
  font-size: 0.95rem;
  color: var(--gray-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.tech-tag {
  background: var(--light-color);
  color: var(--dark-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: var(--transition);
}

.tech-tag:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);

}