  :root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --accent: #0dcaf0;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --blue: #0d6efd;
    --teal: #20c997;
    --gradient-start: #0d6efd;
    --gradient-end: #20c997;
  }
  body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: #212529;
    /* max-width: 1440px; */
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .content-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  /* Navbar */
  .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar.scrolled {
    padding: 0.5rem 0;
  }
  .navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
  }
  .navbar-brand .logo-text {
    color: var(--primary);
  }
  .navbar-brand .logo-icon {
    color: var(--accent);
    margin-right: 5px;
  }
  .nav-link {
    font-weight: 500;
    position: relative;
    margin: 0 0.5rem;
  }
  .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--gradient-start);
    transition: all 0.3s ease;
  }
  .nav-link:hover:after,
  .nav-link.active:after {
    width: 100%;
    left: 0;
  }
  /* Hero Section */
  .hero-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    min-height: 100vh;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

   .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  background: none;
    opacity: 0.02;
    z-index: 0;
    display: none !important;
  } 

  .hero-content {
    max-width: 500px;
  }

  .hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
  }

  .hero-title .highlight {
    background: linear-gradient(
      135deg,
      var(--gradient-start) 0%,
      var(--gradient-end) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }

  .hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    transform: translateY(-50%);
    position: absolute;
    right: -50px; /* Adjust as needed for positioning */
    top: 50%;
  }
  .btn-primary-gradient,
  .btn-outline-primary {
    position: relative;
    z-index: 10;
    cursor: pointer;
  }
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
  }
  .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
  }
  .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
  }
  .btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
  }
  /* Features Section */
  .features-section {
    padding: 5rem 0;
    background: white;
  }
  .section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
  }
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(
      135deg,
      var(--gradient-start) 0%,
      var(--gradient-end) 100%
    );
    border-radius: 2px;
  }
  .section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
    text-align: center;
  }
  .feature-item {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
  }
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  .feature-item i {
    font-size: 2rem;
    color: var(--gradient-start);
    margin-bottom: 1rem;
  }
  .feature-item h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }

  /* Benefits Section */
  .benefits-section {
    padding: 5rem 0 1rem 0;
    background: white;
  }

  .benefit-content {
    max-width: 900px;
    margin: 0 auto 3rem;
  }

  .benefit-item {
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
  }

  .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .icon {
    font-size: 2rem;
    color: var(--primary);
  }

  .icon i {
    font-size: 2rem;
    color: var(--primary);
  }

  .benefit-item h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }

  /* Info */
  .info-section {
    background: #377dff;
    background-image: url("img/block.svg");
    padding: 1rem 0;
  }

  .info-content {
    max-width: 1140px;
    color: white;
    margin: 0 auto 3rem;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 5rem 0;
    background: white;
  }

  .pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .toggle-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
  }

  .toggle-btn:first-child {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .toggle-btn:last-child {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .toggle-btn.active {
    background: var(--primary);
    color: white;
  }

  .pricing-container {
    display: none;
  }

  .pricing-container.active {
    display: block;
  }

  .pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    height: 100%;
  }

  .pricing-table:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .pricing-header {
    background: var(--dark);
    color: white;
    padding: 2rem;
    text-align: center;
  }

  .pricing-header h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
  }

  .price span {
    font-size: 1rem;
    opacity: 0.8;
  }

  .pricing-body {
    padding: 2rem;
  }

  .pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }

  .pricing-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
  }

  .pricing-body ul li:last-child {
    border-bottom: none;
  }

  .pricing-body ul li i {
    color: var(--primary);
    margin-right: 0.5rem;
  }

  /* Testimonials Section */
  .testimonials {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url(" https://placehold.co/1920x1080/0d6efd/ffffff?text=")*/
    /*  no-repeat center center;*/
    opacity: 0.1;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .testimonial-card blockquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.1;
    font-family: Georgia, serif;
  }

  .client-info {
    display: flex;
    align-items: center;
  }

  .client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
  }

  .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .client-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .client-role {
    opacity: 0.8;
    font-size: 0.9rem;
  }

  /* About Section */
  .about-section {
    padding: 5rem 0;
    background: white;
  }

  .about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
  }

  .service-item {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
  }

  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .service-item i {
    font-size: 2rem;
    color: var(--gradient-start);
    margin-bottom: 1rem;
  }

  .service-item h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5599fd 0%, #0dcaf0 100%);
  }

  .contact-item {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
  }

  .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .contact-item i {
    font-size: 2rem;
    color: var(--gradient-start);
    margin-bottom: 1rem;
  }

  .contact-item h4 {
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .contact-form {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  }

  /* Footer */
  footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-links h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-links ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s;
  }

  .footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
  }

  .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }

  .copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
  }

  .floating-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
  }

  .floating-icon:hover {
    background: #0b5ed7;
    transform: scale(1.1);
  }

  /* Disclaimer */
  .disclaimer {
    background: #cfe2ff;
    padding: 1rem 0;
  }

  .disclaimer-content {
    max-width: 1140px;
    margin: 1.5rem auto 1.5rem;
  }

  /* Animations */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }

  .animate-float {
    animation: float 6s ease-in-out infinite;
  }

  .animate-delay-1 {
    animation-delay: 0.5s;
  }
  .animate-delay-2 {
    animation-delay: 1s;
  }
  .animate-delay-3 {
    animation-delay: 1.5s;
  }

  /* Responsive */
  @media (max-width: 991.98px) {
    .hero-title {
      font-size: 2.8rem;
    }
    .hero-subtitle {
      font-size: 1.25rem;
    }
    .btn-primary-gradient,
    .btn-outline-primary {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }
    .feature-icon {
      margin: 0 auto 3rem;
    }
    .section-title::after {
      width: 40px;
    }
  }

  @media (max-width: 767.98px) {
    .hero-title {
      font-size: 2.3rem;
    }
    .hero-section {
      padding: 6rem 0 3rem;
    }
    .section-title::after {
      width: 40px;
    }
    .benefit-item,
    .service-item,
    .contact-item {
      margin-bottom: 1.5rem;
    }
  }

  .service-item {
    position: relative;
    padding: 30px 20px;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    color: #333;
    overflow: hidden;
    transition: color 0.5s ease;
  }

  /* Create a border with gradient animation */
  .service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px; /* border thickness */
    background: linear-gradient(270deg, #0d6efd, #20c997, #0d6efd, #20c997);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
  }

  /* Inner content container to cover the gradient except border */
  .service-item > * {
    position: relative;
    z-index: 1;
  }

  /* Hover effect: faster animation + text/icon color white */
  .service-item:hover::before {
    animation: gradientShift 3s ease infinite;
  }

  .service-item:hover {
    color: #0b5ed7;
  }

  /* Icons inside service-item, color inherits */
  .service-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #0d6efd;
    transition: color 0.5s ease;
  }

  /* Headings inside service-item */
  .service-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.5s ease;
  }

  /* Paragraph styling */
  .service-item p {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.5s ease;
  }

  /* On hover, paragraph color lighten */
  .service-item:hover p {
    color: #0b5ed7;
  }

  /* Animation for gradient shifting */
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .btn-usa-pulse {
    background-color: #007bff; /* Bootstrap blue */
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 600;
    animation: pulse-bg 2s infinite;
    display: inline-block;
  }

  @media (max-width: 7768px) {
    .btn-usa-pulse {
      display: none !important;
    }
  }

  .call-us-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: pulse 1.5s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Blinking/Pulsing Effect */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
  }

  /* Hide on Mobile if Needed */
  @media (max-width: 576px) {
    .call-us-btn {
      padding: 10px 16px;
      font-size: 14px;
    }
  }

  /* Hover effect CSS */
  .feature-item {
    transition: background-color 0.5s ease, color 0.5s ease;
  }
  .feature-item i,
  .feature-item h4 {
    transition: color 0.5s ease;
  }
  .feature-item:hover {
    background-color: #0d6efd !important;
  }
  .feature-item:hover i,
  .feature-item:hover h4 {
    color: white !important;
  }

  @media (max-width: 768px) {
    .top-panel {
      display: none !important; /* Hide top panel on mobile */
      background-color: white !important;
    }
    .bg-dark.text-light.py-1.fixed-top{
      display: none;
    }
    .mobile-nav {
    top: 0px !important; /* Remove space since top panel is hidden */
    }
  }



  @media (max-width: 2040px) {
  section#home{
    margin-top: 90px !important;
  }
  }


  @media (max-width: 768px){
    section#home{
      margin-top: 30px !important;
    }
  } 

  .iti {
  width: 100%;
}

.iti input {
  width: 100%;
  box-sizing: border-box;
}


.pricing-body p {
  flex-grow: 1; /* This pushes the button down */
}

.pricing-body a.btn {
  margin-top: auto; /* Keeps button at bottom */
}

.pricing-table {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-header {
  flex-shrink: 0;
}

.pricing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

