/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .navbar {
      z-index: 10;
      transition: background-color 0.3s ease-in-out;
  }
  
  .navbar.bg-transparent {
      background: rgba(255, 255, 255, 0.1) !important;
      backdrop-filter: blur(10px);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
  }
  
  .navbar-brand {
      font-weight: bold;
      font-size: 1.5rem;
      color: #000;
  
      font-family: "Indie Flower", cursive;
      font-size: 1.5rem; 
      display: flex;
      align-items: center;
  }
  
  
  
  .logo {
      height: 25px;
      margin-right: 2px;
      margin-top: -7px; 
  }
  
  .brand-text {
      font-size: 1.5rem;
      display: flex;
      align-items: center;
  }
  
  .text-orange {
      color: orange;
  }
  
  .text-dark {
      color: black;
      margin-left: 0;
  }
  
  
  
  .navbar-nav .nav-link {
      font-size: 1.1rem;
      margin-left: 15px;
  }
  
  .navbar-nav .nav-link.active {
      color: #9c40c0;
  }
  
  .navbar-toggler-icon {
      background-color: #000;
  }
  
  .btn-primary {
      background-color: #ff4b2b;
      border: none;
  }
  
  .btn-primary:hover {
      background-color: #ff3a1b;
  }




  .hero-modern {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #1e1e2f 0%, #3f3cbb 100%);
    overflow: hidden;
    padding: 4rem 1rem;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-modern h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-modern h1 span {
    background: linear-gradient(to right, #facc15, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-modern .subtitle {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d1d5db;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.hero-modern .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.btn-orange {
    background: #fb923c;
    border: none;
    color: white;
}

.btn-orange:hover {
    background: #f97316;
    transform: scale(1.05);
}

.btn-outline-orange {
    border: 2px solid #fb923c;
    color: white;
    background: transparent;
}

.btn-outline-orange:hover {
    background: #fb923c;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-modern h1 {
        font-size: 2.2rem;
    }

    .hero-modern .subtitle {
        font-size: 0.9rem;
   
        letter-spacing: 0.3rem;
    }

    .hero-modern .btn {
        width: 100%;
    }
}





  .services-section {
    background: linear-gradient(135deg, #f4f6fc, #e9efff);
    padding: 2rem 0;
}
.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.services-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}
.service-card {
    border: none;
    border-radius: 1.25rem;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.08);
}
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e9f0ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
}
.service-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.btn-read-more {
    margin-top: 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
}






.feature {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    color: white; /* White text for contrast */
    width: 100%;
    max-width: 250px;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffcc00; /* Gold for icons */
}

.feature h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
}

.feature p {
    font-size: 0.9rem;
    color: #f0f0f0; /* Light grey for readability */
}









.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-trial {
    background-color: orange;
    border: none;
    padding: 15px 40px;
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-trial:hover {
    background-color: #ff8500;
    transform: translateY(-5px);
}

.img-stack {
    position: relative;
}

.img-visualization {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: blur(1.5px); /* Apply blur to the images */
}

.img-top {
    position: absolute;
    top: -50px;
    left: 80px;
    transform: scale(0.95);
}

.img-visualization:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .management-tool {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .img-top {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 20px;
        transform: scale(1);
    }
}



.img-fluid:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}



.timeline-line {
    height: 4px;
    background: #d3d3d3;
    z-index: 0;
  }
  
  .timeline-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border: 4px solid white;
    position: relative;
    z-index: 1;
  }
  
  .timeline-icon:hover {
    transform: scale(1.15);
  }
  
  .timeline-items .col-md-2 {
    position: relative;
  }
  
  @media (max-width: 767px) {
    .timeline-line {
      display: none !important;
    }
  }
  





 /* Card and form styling */





.footer {
    background-color: #212529;
    color: #e9ecef;
    padding: 60px 0;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #212529 100%);
}

.footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #212529 100%);
}

.footer h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer .nav-link {
    color: #e9ecef;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer .nav-link:hover {
    color: orange;
}

.footer .social-icons a {
    color: orange;
    font-size: 1.6rem;
    margin-right: 15px;
    transition: color 0.3s;
}


.footer .social-icons a:hover {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text; /* WebKit-based browsers */
    background-clip: text; /* Standard property */
    -webkit-text-fill-color: transparent; /* WebKit-based browsers */
    color: transparent; /* Ensures text color is transparent to show gradient */
}

.footer .newsletter-form {
    display: flex;
    flex-direction: column;
}

.footer .newsletter-form input[type="email"] {
    border-radius: 0.25rem;
    border: 1px solid #495057;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #343a40;
    color: #e9ecef;
}

.footer .newsletter-form button {
    background-color: orange;
    border: none;
    color: #ffffff;
    padding: 10px;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.footer .newsletter-form button:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.footer .text-center {
    font-size: 0.9rem;
    margin-top: 30px;
}