* {
    margin: 0;
    padding: 0;
  }

  .navbar {
    padding: 0.8rem 0rem;
    transition: all 0.3s ease-in-out;
    height: 5rem;
    position: relative;
    z-index: 1050;
  }

  /* Navbar Brand (Logo & Text) */
  .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-right: auto; /* Keeps logo on the left */
  }

  /* Logo Size */
  .navbar-logo {
    height: 4.5rem; /* Slightly bigger */
    width: 4.5rem;
  }

  /* Logo Text */
  .logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }

  .logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #07708dea;
  }
  
  .logo-text p {
    font-size: 0.9rem;
    color: #325368d9;
    margin: 0px 20px;
  }

  /* Toggler Button */
  .custom-toggler {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1.8rem;
  }

  /* Menu Icon */
  .menu-icon {
    color: #333;
    transition: transform 0.3s ease-in-out;
  }

  /* Close Icon */
  .close-icon {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  /* Navbar Links */
  .navbar-nav .nav-item .nav-link {
    font-size: 1.1rem;
    color: #000;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
  }

  .navbar-nav .nav-item .nav-link:hover {
    color: rgb(19, 113, 139);
  }

  /* Active Link */
  .navbar-nav .nav-item .nav-link.active {
    color: rgb(238, 162, 21);
  }

  /* Mobile Responsive Fixes */
  @media (max-width: 992px) {
    .container {
      display: block;
      align-items: center;
      justify-content: space-between;
    }

    /* Ensure logo stays on the left */
    .navbar-brand {
      display: flex;
      align-items: center;
      position: relative;
      left: 0;
      transform: none;
    }

    /* Toggler stays on the left */
    .custom-toggler {
      order: -1;
    }

    /* Smaller logo for mobile */
    .navbar-logo {
      height: 3.5rem;
      width: 3.5rem;
    }

    /* Adjust collapsed menu */
    .navbar-collapse {
      background-color: rgba(255, 255, 255, 0.95);
      padding: 1rem;
      border-radius: 8px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      z-index: 1050;
    }

    .navbar-collapse.show {
      display: block;
    }

    /* Remove underline effect in mobile */
    .navbar-nav .nav-item .nav-link::after {
      width: 0;
    }
  }

  body {
    color: #333;
    line-height: 1.6;
  }

  /* Header Styling */
  .service-header {
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }

  .service-header h1 {
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
  }

  .service-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .service-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
  }

  /* Main Content Area */
  .service-image {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
  }
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .service-content h2 {
    font-weight: 700;
    color: #0c2461;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
  }

  .service-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0c2461;
  }

  .service-content .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
  }

  .service-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* Button Styling */
  .btn-primary {
    background-color: #0c2461;
    border-color: #0c2461;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .btn-primary:hover,
  .btn-primary:focus {
    background-color: #1e3799;
    border-color: #1e3799;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 36, 97, 0.3);
  }

  .btn-outline-secondary {
    color: #0c2461;
    border-color: #cad3e2;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .btn-outline-secondary:hover,
  .btn-outline-secondary:focus {
    background-color: #f5f7fa;
    color: #0c2461;
    border-color: #0c2461;
    transform: translateY(-2px);
  }

  /* Service Items */
  .services-section {
    background-color: #f8fafc;
    padding: 70px 0;
  }

  .services-section .section-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .services-section .section-title h2 {
    font-weight: 700;
    color: #0c2461;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }

  .services-section .section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0c2461;
  }

  .services-section .lead {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
  }

  .service-item {
    height: 100%;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    /* margin-bottom: 25px; */
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .service-item:hover {
    background-color: white;
    border-left: 4px solid #0c2461;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .service-item h4 {
    margin-bottom: 15px;
    color: #0c2461;
    font-weight: 600;
    font-size: 1.25rem;
  }

  .service-item i {
    color: #0c2461;
    margin-right: 10px;
  }

  .service-item p {
    color: #666;
    margin-bottom: 0;
  }

  /* Why Choose Us Section */
  .why-choose-section {
    padding: 70px 0;
  }

  .why-choose-section .section-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .why-choose-section .section-title h2 {
    font-weight: 700;
    color: #0c2461;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
  }

  .why-choose-section .section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0c2461;
  }

  .why-choose-section .lead {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;

    margin: 0 auto;
  }

  .why-choose-item {
    display: flex;
    /* margin-bottom: 30px; */
    align-items: flex-start;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
  }

  .why-icon {
    background-color: #e7f1ff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
    color: #0c2461;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(12, 36, 97, 0.1);
  }
  .why-choose-item:hover {
    background-color: #cbddf9; /* Choose your new background color */
    transition: background-color 0.3s ease;
}

  .why-choose-item:hover .why-icon {
    background-color: #0c2461;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(12, 36, 97, 0.2);
  }

  .why-choose-item h4 {
    font-weight: 600;
    color: #0c2461;
    margin-bottom: 10px;
    font-size: 1.25rem;
  }

  .why-choose-item p {
    color: #666;
    margin-bottom: 0;
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, #e8f4ff 10%, #b9d2f6 100%);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .cta-section h3 {
    font-weight: 700;
    color: #0c2461;
    margin-bottom: 15px;
  }

  .cta-section .lead {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.15rem;
  }

  .cta-section .btn-lg {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .cta-section .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 36, 97, 0.15);
  }

  /* Additional Responsive Adjustments */
  @media (max-width: 767px) {
    .service-header {
      padding: 50px 0;
    }
    .container{
      padding: 0 30px;
    }

    .service-header h1 {
      font-size: 2.2rem;
    }

    .service-header p {
      font-size: 1.1rem;
    }
    
    .service-content h2 {
      font-size: 1.8rem;
    }

    .service-image img {
     
      object-fit: fill;
    }
    .why-icon {
      width: 50px;
      height: 50px;
    }

    .why-choose-item h4 {
      font-size: 1.1rem;
    }

    .cta-section {
      padding: 30px 20px;
    }
  }

  /* Footer styling */
  footer {
    background-color: #3333339d;
    color: white;
    padding: 2rem 1rem;
    margin-top: auto;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* Logo section */
  .footer-logo {
    flex: 1;
    min-width: 200px;
  }

  .footer-logo img {
    max-width: 130px;
    height: auto;
  }
  
  .footer-logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #07708dea;
  }
  
  .footer-logo-text p {
    font-size: 0.9rem;
    color: #325368d9;
    margin: 0px 20px;
  }

  /* Quick links section */
  .footer-links {
    flex: 1;
    min-width: 200px;
  }

  .footer-links h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #4d9aff;
  }

  /* Contact section */
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }

  .footer-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4d4d4d;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .social-links a:hover {
    background-color: #4d9aff;
  }

  /* Bottom bar */
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding-left: 30px;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
      width: 100%;
    }
  }