:root {
    --primary-color: #2207ec;
    --secondary-color: #00cecb;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
}
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
    }
    
    .navbar {
        background-color: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.9s ease;
        font-weight: 700;
    }
    
    /* .navbar :active{
        color: white;
        
    } */

    .navbar.scrolled {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        padding: 5px 0;
        border-radius: 30px;
        margin-top: 8px;
    }
    
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/working/hero.webp');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 200px 0;
        position: relative;
        
    }
    
    .btn-primary {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        padding: 5px 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 30px;
    }
    
    .btn-primary:hover {
        background-color: #2d2bc0;
        border-color: #0ddaf5;
        transform: translateY(-3px);
    }
    
    .service-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px ;
        margin-bottom: 20px;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: #0ddaf5 0px 20px 30px -10px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.2);
        color: var(--accent-color);
    }
    
    .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .portfolio-img {
        transition: all 0.5s ease;
    }
    
    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(69, 153, 20, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }
    
    .portfolio-item:hover .portfolio-img {
        transform: scale(1.1);
    }
    
    .testimonial-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        padding: 20px;
        height: 100%;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .client-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--secondary-color);
        transition: all 0.3s ease;
    }
    
    .testimonial-card:hover .client-img {
        transform: scale(1.1);
        border-color: var(--accent-color);
    }
    
    .stats-item {
        text-align: center;
        padding: 30px 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .stats-item:hover {
        background-color: var(--light-color);
        transform: translateY(-5px);
        box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    }
    
    .stats-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary-color);
        transition: all 0.3s ease;
    }
    
    .stats-item:hover .stats-number {
        color: var(--accent-color);
    }
    
    .contact-info-card {
        padding: 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-card:hover {
        background-color: var(--light-color);
        transform: translateY(-5px);
    }
    
    .contact-icon {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .contact-info-card:hover .contact-icon {
        transform: rotate(15deg);
        color: var(--accent-color);
    }
    
    footer {
        background: linear-gradient(135deg, var(--primary-color), var(--footersec-color));
        color: white;
        padding: 50px 0 20px;
    }
    
    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        margin-right: 10px;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }
    
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: var(--secondary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }
    
    .back-to-top:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        transform: translateY(-5px);
    }
    .shimmer-text {
        font-size: 4rem;
        font-weight: 700;
        font-family: 'fantasy', Impact, Haettenschweiler;
        background: linear-gradient(45deg, #ff0000, #ff7300, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00f5, #ff0000);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 15s linear infinite;
      }
  
      @keyframes shimmer {
        0% {
            background-position: 0% 50%;
          }
          50% {
            background-position: 100% 50%;
          }
          100% {
            background-position: 0% 50%;
          }
      }


      #whatsapp-message {
        position: fixed;
        bottom: 60px; /* Distance from the bottom */
        right: 10px;  /* Distance from the right */
        z-index: 1000; /* Ensure it stays on top */
      }
    
      .whatsapp-icon {
        cursor: pointer; /* Changes cursor to a pointer */
      }

      @media (max-width: 768px) {
    .hero-section {
        padding: 120px 0; /* Reduced from 200px to 120px for mobile */
        min-height: auto; /* Remove fixed height if present */
    }
    
    /* Optional: Adjust background position if needed for mobile */
    .hero-section {
        background-position: center 30%;
    }

       .shimmer-text {
        font-size: 3rem;
        font-family: 'fantasy', Impact, Haettenschweiler;
        background: linear-gradient(45deg, #ff0000, #ff7300, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00f5, #ff0000);
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 15s linear infinite;
      }
  

}