/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
  }

  .nav-title {
    color: white;
    font-size: 1rem;
    font-weight:300;
  }

  .nav-item-txt {
    font-size: 1.2rem;
    color: #e0ebe9;
    transition: color 0.3s;
  }

  .nav-item-txt:hover {
    text-shadow: #333 0px 0px 2px;
  }
  .navbar {
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.6), rgba(78, 205, 196, 0.6)); /* Vibrant gradient with transparency */
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
  }

  .navbar.hidden {
    transform: translateY(-100%);
  }

  .navbar.transparent {
    background: transparent;
    box-shadow: none;
  }

  .hero-section {
    height: 100vh;
    background: linear-gradient(35deg, rgba(255, 60, 60, 0.6), rgba(78, 205, 196, 0.8)); /* Vibrant gradient [[6]] */
    position: relative;
  }
  
  .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .service-card {
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .timeline {
    position: relative;
    padding: 2rem 0;
  }
  

  .contact {
    color: grey;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e0e0e0;
  }
  
  .timeline-item {
    padding: 1rem 0;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  /* Floating Labels for Forms */
  .form-floating input:focus, .form-floating textarea:focus {
    box-shadow: none;
    border-color: #4ecdc4;
  }
  

  .contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
  }

  .btn-office-contact {
    background: transparent;
    color: #4ecdc4;
    border: 1px solid #00C3A9;
    padding: 1rem 2rem;
    border-radius: 5px;
    border-width: 1px;
  }

  /* Footer Social Icons */
  .social-icons a:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .hero-section {
      height: 80vh;
    }
  }


/* Template Showcase Cards */
.template-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
  
.template-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}
  
.template-card:hover img {
    transform: scale(1.1);
}
  
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}
  
.template-card:hover .overlay {
    transform: translateY(0);
}
  
/* Lightbox Styles */
.mfp-img-mobile {
    cursor: zoom-in;
}


/* Client Success Section */
.text-teal {
    color: #00C3A9 !important;
  }
  
  .btn-outline-teal {
    border-color: #00C3A9;
    color: #00C3A9;
  }
  
  .btn-outline-teal:hover {
    background: #00C3A9;
    color: white;
  }
  
  .feature-box {
    transition: transform 0.3s;
    border-radius: 10px;
    background: white;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .footer{
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4); /* Vibrant gradient [[6]] */
  }