body {
    width: 100%;
    margin: auto;
    font-family: sans-serif;
    }



    .top-links {
        background-color: #f0f0f0;
        padding: 5px 20px;
        text-align: right;
    }

    .top-links a {
        color: #007bff;
        text-decoration: none;
        margin: 0 10px;
    }

    .headerr {
        background-color: white;
        padding: 5px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100; /* Ensure it's above other content */
    }
.logo{
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.logo h3{
    margin-right: 20px;

    color: #0047AB;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
    .logo img {
        width: 50px;
        height: 50px ;
        margin-right: 20px;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    .nav-links a, .nav-links .dropdown-btn {
        color: #0047AB;
        text-decoration: none;
        padding: 10px 15px;
        margin: 0 5px;
        cursor: pointer;
        border: none;
        background: none;
    }

    .nav-links .dropdown {
        position: relative;
    }

    .nav-links .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 160px;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 4px;
    }

    .nav-links .dropdown-content a {
        
        color: #0047AB;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    .nav-links a:hover{
        background-color: #0047AB;
        color: white;
        padding: 10px 16px;
    }

    .nav-links .dropdown.show .dropdown-content {
        display: block;
    }

     

    .search-container {
        display: flex;
        align-items: center;
    }

    .search-container input[type="text"] {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-right: 5px;
    }

    .search-container button {
        background-color: #007bff;
        color: white;
        padding: 8px 12px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }

    .menu-icon {
        display: none;
        cursor: pointer;
        font-size: 1.5em;
        color: #333;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .nav-links.responsive {
            display: block;
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .nav-links.responsive a, .nav-links.responsive .dropdown-btn {
            display: block;
            text-align: left;
            padding: 12px 16px;
        }

        .nav-links.responsive .dropdown-content {
            position: static;
            box-shadow: none;
            min-width: auto;
        }

        .nav-links.responsive .dropdown-content a {
            padding-left: 25px;
        }

        .headerr {
            flex-wrap: wrap;
        }

        .logo {
            flex: 1 1 100%;
            text-align: center;
        }

        .search-container {
            display: none;
        }

        .top-links {
            text-align: center;
        }

        .menu-icon {
            display: block;
            position: absolute;
            top: 15px;
            right: 20px;
            margin-bottom: 20px;
            color: #0047AB;
        }

        .logo h3{
            margin-right: 50px;
            color: #0047AB;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
            .logo img {
                width: 50px;
                height: 50px ;
                margin-right: 20px;
            }
        
    }

    .custom-banner {
        
        width: 100%;
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        
      }
      
      .banner-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 50px; /* Add padding */
      }
      
      .text-content {
        width: 50%; /* Adjust as needed */
        padding-right: 30px;
      }
      
      .text-content h1 {
        font-size: 2.5rem;
        color: #0047AB;
        margin-bottom: 20px;
      }
      
      .text-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
      }
      
      .contact-button {
        background-color: #0047AB;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
      }
      
      .image-content {
        width: 50%; /* Adjust as needed */
        text-align: right;
      }
      
      .image-content img {
        margin-top: 20px;
        max-width: 100%;
        height: auto;
        border-radius: 5px;
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .custom-banner {
                margin-top: 300px;
        }
        .banner-content {
          flex-direction: column-reverse;
          align-items: center;
          padding: 20px;
        }
      
        .text-content, .image-content {
          width: 100%;
          text-align: center;
          padding-right: 0;
        }
      
        .image-content {
          margin-bottom: 20px;
        }
      }

 
      .mission-vision {
        padding: 80px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        color: #0047AB;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #0047AB;
    }
    
    .mv-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
    }
    
    .mv-card {
        flex: 1;
        min-width: 300px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 71, 171, 0.1);
        padding: 40px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .mv-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 71, 171, 0.2);
    }
    
    .mv-card h3 {
        font-size: 1.8rem;
        color: #0047AB;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .mv-card h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #0047AB;
    }
    
    .mv-card p {
        color: #555;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .mv-icon {
        font-size: 3rem;
        color: #0047AB;
        margin-bottom: 20px;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        /* .about-banner {
            height: 300px;
        }
        
        .banner-content h1 {
            font-size: 2rem;
        }
        
        .banner-content p {
            font-size: 1rem;
        } */
        
        .mv-container {
            flex-direction: column;
        }
        
        .mv-card {
            min-width: 100%;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
    }




    .services-section {
        padding: 50px 0;
        background-color: #f9f9f9; /* Light background for contrast */
      }
      
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      .section-heading {
        text-align: center;
        margin-bottom: 50px;
      }
      
      .section-heading h2 {
        color: #0047AB; /* Primary color */
        font-size: 1.5em;
        font-weight: 500;
        margin-bottom: 10px;
      }
      
      .section-heading h1 {
        font-size: 2.5em;
        margin-bottom: 15px;
      }
      
      .section-heading p {
        color: #666;
        font-size: 1em;
        line-height: 1.6;
      }


      .carousel-wrapper {
        max-width: 100%;
        overflow: hidden;
        padding: 3rem 1rem;
        position: relative;
      }
  
      .carousel-track {
        display: flex;
        gap: 2rem;
        transition: transform 0.6s ease-in-out;
        padding: 0 1rem;
      }
  
      .carousel-item {
        flex: 0 0 auto;
        width: 350px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
        text-align: center;
        padding: 1rem;
        box-sizing: border-box;
        border-top: 6px solid #0047AB;
      }
  
      .carousel-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 1rem;
      }
  
      .carousel-item h3 {
        color: #0047AB;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }
  
      .carousel-item p {
        font-size: 0.95rem;
        color: #0047AB;
        line-height: 1.5;
      }
  
      .selectors {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
      }
  
      .dot {
        height: 12px;
        width: 12px;
        margin: 0 6px;
        background-color: #ccc;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s;
        cursor: pointer;
      }
  
      .dot.active {
        background-color: #0047AB;
      }
  
      @media (max-width: 768px) {
        .carousel-track {
          gap: 1rem;
        }
      }





      :root {
        --primary-color: #01193a;
        --secondary-color: #ffffff;
        --accent-color: #f8f9fa;
    }
    
    
    .footer-container {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 40px 20px;
        
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
    
    .logo-circle span {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 24px;
        font-weight: 700;
    }
    
    .tagline {
        font-style: italic;
        margin-top: 10px;
        opacity: 0.9;
    }
    
    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    }
    
    .contact-info {
        list-style: none;
    }
    
    .contact-info li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-info i {
        margin-right: 10px;
        margin-top: 3px;
    }
    
    .quick-links {
        list-style: none;
    }
    
    .quick-links li {
        margin-bottom: 12px;
    }
    
    .quick-links a {
        color: var(--secondary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .quick-links a:hover {
        padding-left: 5px;
        opacity: 0.8;
    }
    
    .footer-bottom {
        max-width: 1200px;
        margin: 30px auto 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        font-size: 14px;
        opacity: 0.8;
    }
    
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
        }
        
        .footer-section {
            margin-bottom: 30px;
        }
    }