/* 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: transform 0.3s ease, box-shadow 0.3s ease, background-color 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: transform 0.3s ease, box-shadow 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 ===== */
.footer {
    background: linear-gradient(180deg, #16191d 0%, #1e2227 60%, #212529 100%);
    color: #cdd3da;
    padding: 64px 0 0;
    position: relative;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff8c00 0%, #667eea 50%, #ff8c00 100%) 1;
}

/* Brand tagline */
.footer-tagline {
    color: #7a8490;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Footer section headings */
.footer h2 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    position: relative;
}

.footer h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff8c00, #667eea);
}

/* Footer inline links (About, Terms, etc.) */
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8c96a2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link::before {
    content: "›";
    color: #ff8c00;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.footer-link:hover {
    color: #ff8c00;
    transform: translateX(4px);
}

/* Quick-link nav items */
.footer .nav-link {
    color: #8c96a2;
    font-size: 0.9rem;
    padding: 0.2rem 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer .nav-link::before {
    content: "›";
    color: #ff8c00;
    font-size: 1.1rem;
    line-height: 1;
}

.footer .nav-link:hover {
    color: #ff8c00;
    transform: translateX(4px);
}

/* Social icon pills */
.footer .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cdd3da;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
    -webkit-text-fill-color: unset;
}

.footer .social-icons a:hover {
    background: linear-gradient(135deg, #ff8c00, #667eea);
    border-color: transparent;
    color: #fff;
    -webkit-text-fill-color: #fff;
    transform: translateY(-4px);
}

/* Newsletter form */
.footer .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .newsletter-form input[type="email"] {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px;
    background-color: rgba(255, 255, 255, 0.06);
    color: #e9ecef;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
}

.footer .newsletter-form input[type="email"]:focus {
    border-color: #ff8c00;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .newsletter-form input[type="email"]::placeholder {
    color: #5c6470;
}

.footer .newsletter-form button {
    background: linear-gradient(135deg, #ff8c00, #e67e00);
    border: none;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.footer .newsletter-form button:hover {
    background: linear-gradient(135deg, #667eea, #6a11cb);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.35);
}

/* Divider & copyright strip */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2.5rem 0 0;
}

.footer-copyright-strip {
    background: rgba(0, 0, 0, 0.25);
    padding: 1rem 0;
    font-size: 0.82rem;
    color: #5c6470;
}

/* Keep legacy selector working */
.footer .text-center {
    font-size: 0.9rem;
    margin-top: 0;
}