
      /* Base Styles */
      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
        height: 100vh;
        display: flex;
        flex-direction: column;
        scroll-behavior: smooth;
      }

/* Hero Section */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Fade-In Animation (renamed for clarity) */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade-Out Animation */
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50px);
  }
}

/* Apply fade-in to the background */
.hero-section.fade-in-bg {
  animation: fadeInRight 1.2s ease-in-out forwards;
}

/* Apply fade-out to the background */
.hero-section.fade-out-bg {
  animation: fadeOutLeft 1.2s ease-in-out forwards;
}

/* Hero Text */
.hero-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 10%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.7rem;
  font-weight: bold;
}

.hero-text h1 span {
  color: rgb(243, 253, 252);
  background: linear-gradient(90deg, #064c89, #2e7dff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Initialize text elements as hidden */
.hero-text h1,
.hero-text p,
.hero-buttons {
  opacity: 0;
  transform: translateX(50px);
  transition: none;
}

/* Apply fade-in to text elements */
.hero-text h1.fade-in,
.hero-text p.fade-in,
.hero-buttons.fade-in {
  animation: fadeInRight 1.2s ease-in-out forwards;
}

/* Apply fade-out to text elements */
.hero-text h1.fade-out,
.hero-text p.fade-out,
.hero-buttons.fade-out {
  animation: fadeOutLeft 1.2s ease-in-out forwards;
}

/* Ensure carousel items don’t interfere with opacity */
.carousel-item {
  transition: transform 1.2s ease-in-out;
}

      /* Buttons */
      .btn-dark-blue {
        background-color: #064c89;
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 18px;
        border: none;
        font-weight: 500;
        width: 120px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .btn-dark-blue:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(6, 76, 137, 0.3);
      }

      .btn-dark-blue::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
      }

      .btn-dark-blue:hover::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      .btn-light-blue {
        background-color: white;
        color: #064c89;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 18px;
        border: 1px solid #064c89;
        font-weight: 500;
        width: 120px;
        transition: all 0.3s ease;
      }

      .btn-light-blue:hover {
        background-color: #f0f7ff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(6, 76, 137, 0.1);
      }

      .pulse-btn {
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(6, 76, 137, 0.7);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(6, 76, 137, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(6, 76, 137, 0);
        }
      }

      .active {
        color: #064c89;
      }

      /* About Section */
      .about-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5%;
        border-radius: 15px;
        background: linear-gradient(to right, #f9f9f9, #ffffff);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
      }

      .about-section:hover {
        transform: translateY(-5px);
      }

      .about-section h3 {
        font-size: 2rem;
        font-weight: bold;
        color: #064c89;
        margin-bottom: 20px;
        position: relative;
      }

      .about-section h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #064c89, #2e7dff);
        border-radius: 3px;
      }

      .about-section p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: center;
      }

      /* Feature Cards */
      .feature-card {
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease-in-out;
        height: 100%;
        border: 1px solid transparent;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
        border-color: rgba(6, 76, 137, 0.1);
      }

      .icon-container {
        width: 80px;
        height: 80px;
        background-color: #eef2ff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        transition: all 0.3s ease;
      }

      .feature-card:hover .icon-container {
        transform: scale(1.1);
        background-color: #dce6ff;
      }

      .icon-container img {
        width: 60px;
        transition: transform 0.3s ease;
      }

      .feature-card:hover .icon-container img {
        transform: scale(1.1);
      }

      .feature-title {
        font-weight: bold;
        color: #212529;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
      }

      .feature-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #064c89, #2e7dff);
        transition: width 0.3s ease;
      }

      .feature-card:hover .feature-title::after {
        width: 100%;
      }

      .bg-light-blue {
        background-color: #edf2ff;
      }

      .bg-light-yellow {
        background-color: #fff9db;
      }

      .bg-light-gray {
        background-color: #f8f9fa;
      }

      /* List Items */
      .list-item-box {
        background-color: #f7f8fa;
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
      }

      .list-item-box:hover {
        background-color: #eef2ff;
        transform: translateX(5px);
        border-left: 3px solid #064c89;
      }

      .highlight-text {
        color: #2e7dff;
        font-weight: bold;
        position: relative;
        display: inline-block;
      }

      .highlight-text::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #064c89, #2e7dff);
      }

      /* Feature Boxes */
      .container2 {
        padding: 50px 20px;
        text-align: center;
      }

      .feature-box {
        background: #f6f7f9;
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        height: 100%;
        border: 1px solid transparent;
      }

      .feature-box:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        border-color: rgba(6, 76, 137, 0.1);
        background: #ffffff;
      }

      .feature-box img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        transition: transform 0.3s ease;
      }

      .feature-box:hover img {
        transform: scale(1.1);
      }

      .feature-text h5 {
        font-weight: bold;
        margin-bottom: 5px;
        color: #064c89;
      }

      /* Pricing Section */
      .pricing-section {
        padding: 70px 20px;
        text-align: center;
        background: linear-gradient(to bottom, #f9f9f9, #ffffff);
      }

      .pricing-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1a1443;
        margin-bottom: 15px;
      }

      .pricing-subtitle {
        color: #7a7a7a;
        margin-bottom: 50px;
        font-size: 1.1rem;
      }

      .pricing-card {
        transition: all 0.4s ease;
        border: 1px solid transparent;
      }

      .pricing-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: rgba(6, 76, 137, 0.1);
      }

      .bg-highlight {
        background-color: #fff8e1;
      }

      .feature-icon {
        color: #2e7dff;
        margin-right: 10px;
      }

      .btn-subscribe {
        background-color: #6a4df4;
        color: #fff;
        border-radius: 8px;
        font-weight: 500;
        padding: 10px;
        transition: all 0.3s ease;
      }

      .btn-subscribe:hover {
        background-color: #5b3ee5;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(106, 77, 244, 0.3);
      }

      .plan-header {
        font-weight: 700;
        font-size: 1.2rem;
        color: #1a1443;
      }

      .plan-desc {
        background-color: #f1f4ff;
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
        margin: 10px 0;
        display: inline-block;
        transition: all 0.3s ease;
      }

      .pricing-card:hover .plan-desc {
        background-color: #e1e7ff;
      }

      .plan-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1443;
        margin: 15px 0;
      }

      .feature-list {
        text-align: left;
        padding: 0;
      }

      .feature-list li {
        margin-bottom: 10px;
        font-size: 0.95rem;
        transition: transform 0.3s ease;
        padding: 5px 0;
      }

      .feature-list li:hover {
        transform: translateX(5px);
      }

      .col_gray {
        background: #f6f7f9;
      }

      /* Testimonials Section */
      .testimonials-section {
        background: linear-gradient(135deg, #064c89, #1a237e) !important;
        color: white;
        padding: 70px 0;
        position: relative;
        overflow: visible;
        margin-top: 50px;
        margin-bottom: 50px;
        min-height: 500px;
        display: block !important;
      }

      .testimonials-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 1;
      }

      .testimonials-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        z-index: 1;
      }

      .testimonials-section .container {
        position: relative;
        z-index: 2;
      }

      .testimonials-section h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
      }

      .testimonials-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #2e7dff;
      }

      .text-light-blue {
        color: #8abaff;
      }

      .testimonial-card {
        background-color: white !important;
        color: #333 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        border-radius: 12px !important;
        transition: all 0.4s ease;
        border: 1px solid transparent;
        height: 100%;
        display: flex !important;
        flex-direction: column;
        padding: 20px;
        margin-bottom: 20px;
        opacity: 1 !important;
        visibility: visible !important;
        min-height: 150px;
      }

      .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
      }

      .testimonial-card h6 {
        color: #064c89;
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
      }

      .testimonial-card h6::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #2e7dff;
      }

      .testimonial-card p {
        font-style: italic;
        color: #555;
        line-height: 1.6;
        position: relative;
        padding-left: 20px;
        flex-grow: 1;
      }

      .testimonial-card p::before {
        content: '"';
        position: absolute;
        left: 0;
        top: 0;
        font-size: 24px;
        color: #064c89;
        font-family: Georgia, serif;
        line-height: 1;
      }

      /* Responsive adjustments for testimonials */
      @media (max-width: 767px) {
        .testimonials-section {
          padding: 50px 0;
          text-align: center;
          min-height: auto;
        }

        .testimonials-section h2::after {
          left: 50%;
          transform: translateX(-50%);
        }

        .testimonial-card {
          margin-bottom: 20px;
          min-height: 120px;
        }
      }

      /* Newsletter Form */
      .newsletter-form {
        position: relative;
        transition: all 0.3s ease;
      }

      .newsletter-form:hover {
        transform: translateY(-5px);
      }

      .newsletter-form .input-group {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        overflow: hidden;
      }

      .newsletter-form .input-group-text {
        background-color: #f8f9fa;
        border: none;
        color: #064c89;
      }

      .newsletter-form .form-control {
        border: none;
        padding: 12px;
        font-size: 16px;
      }

      .newsletter-form .form-control:focus {
        box-shadow: none;
        border-color: #064c89;
      }

      /* Accordion */
      .accordion-item {
        border: none;
        margin-bottom: 10px;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      .accordion-item:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .accordion-button {
        padding: 15px 20px;
        font-weight: 600;
        color: #064c89;
        background-color: #f8f9fa;
        border: none;
        transition: all 0.3s ease;
      }

      .accordion-button:not(.collapsed) {
        color: #064c89;
        background-color: #edf2ff;
      }

      .accordion-button:focus {
        box-shadow: none;
        border-color: #064c89;
      }

      .accordion-body {
        padding: 15px 20px;
        background-color: #ffffff;
      }

      /* Footer */
      .footer {
        background-image: linear-gradient(45deg, rgba(130, 89, 219, 0.2), rgba(44, 192, 226, 0.2), rgba(182, 103, 181, 0.2)), linear-gradient(135deg, rgb(39, 20, 149), rgb(65, 82, 185), rgb(91, 144, 220));
        padding: 60px 0 30px;
        font-size: 16px;
        margin-top: auto;
        position: relative;
        color: #fff;
      }

      .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #064c89, #2e7dff, #064c89);
      }

      .footer a {
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 5px;
      }
      
      .footer  {
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        display: inline-block;
        margin-bottom: 5px;
      }

      .footer a:hover {
        /* color: #2e7dff; */
        color: black;
        transform: translateX(3px);
      }

      .footer hr {
        border-top: 1px solid rgba(6, 76, 137, 0.1);
        margin: 20px 0;
      }

      .footer-logo {
        display: flex;
        align-items: center;
      }

      .footer-bottom {
        font-size: 14px;
        text-align: left;
        margin-top: 15px;
      }

      /* Carousel Indicators */
      .carousel-indicators {
        position: absolute;
        bottom: 10px;
       display: none;
      }

      .carousel-indicators .active {
        background-color: #064c89 !important;
        width: 12px !important;
        height: 12px !important;
        opacity: 1;
      } 

      .carousel-indicators button {
        background-color: rgba(6, 76, 137, 0.5) !important;
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        border: none;
        margin: 0 5px;
        opacity: 0.5;
        transition: all 0.3s ease;
      }

      .carousel-indicators button:hover {
        opacity: 0.8;
      }

      /* Responsive Styles */
      @media (min-width: 768px) {
        .hero-section {
          display: flex;
          align-items: center;
          justify-content: start;
          padding: 0;
          background-position: right 15%;
        }

        .hero-text {
          width: 70%;
          text-align: start;
        }

        .hero-text p {
          text-align: justify;
        }

        .pos-center {
          margin-left: 40%;
        }

        .left-image-container img {
          display: block;
          max-width: 100%;
          height: auto;
          border-radius: 15px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          transition: all 0.5s ease;
        }

        .left-image-container:hover img {
          transform: scale(1.03);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
      }

      @media (max-width: 767px) {
        .hero-section {
          min-height: 60vh;
          text-align: center;
          padding: 20px;
        }

        .hero-text {
          width: 100%;
          margin-left: 0;
          text-align: center;
        }

        .hero-text h1 {
          font-size: 2rem;
        }

        .hero-buttons {
          justify-content: center;
        }

        .about-section {
          text-align: center;
          padding: 30px 15px;
        }

        .about-section h3 {
          font-size: 1.8rem;
        }

        .feature-card,
        .testimonial-card {
          margin-bottom: 20px;
        }

        .left-image-container img {
          display: block;
          width: 100%;
          margin-bottom: 30px;
          border-radius: 10px;
        }

        .navbar-collapse {
          text-align: center;
        }

        .navbar-nav {
          width: 100%;
        }

        .mobile-menu {
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 10px;
        }
      }

      /* Animation Classes for AOS */
      [data-aos] {
        opacity: 0;
        transition-property: opacity, transform;
      }

      [data-aos].aos-animate {
        opacity: 1;
      }

      [data-aos="fade-up"] {
        transform: translateY(50px);
      }

      [data-aos="fade-down"] {
        transform: translateY(-50px);
      }

      [data-aos="fade-right"] {
        transform: translateX(-50px);
      }

      [data-aos="fade-left"] {
        transform: translateX(50px);
      }

      [data-aos="zoom-in"] {
        transform: scale(0.9);
      }

      [data-aos].aos-animate {
        transform: translateY(0) translateX(0) scale(1);
      }

      .btn-dark-blue a{
        color: white;
        text-decoration: none;
      }
      .btn-light-blue a{
        color: #064c89;
        text-decoration: none;
      }
