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;
            }
        
    }


    :root {
        --primary-color: #0047AB;
        --primary-light: rgba(0, 71, 171, 0.1);
        --secondary-color: #f8f9fa;
        --text-color: #333;
        --light-color: #ffffff;
    }

   

    body {
        background-color: var(--secondary-color);
        color: var(--text-color);
        line-height: 1.6;
    }

    .services-container {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    .section-subtitle {
        color: var(--text-color);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: var(--light-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
        padding: 40px 25px;
        border-top: 4px solid var(--primary-color);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 71, 171, 0.15);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-light);
        border-radius: 50%;
        color: var(--primary-color);
        font-size: 30px;
    }

    .service-title {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

    .service-description {
        color: var(--text-color);
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .learn-more {
        display: inline-block;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        position: relative;
        padding-bottom: 3px;
        transition: color 0.3s ease;
    }

    .learn-more::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .learn-more:hover {
        color: #003580;
    }

    .learn-more:hover::after {
        width: 100%;
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

  
    :root {
        --primary-color: #01193a;
        --secondary-color: #ffffff;
        --accent-color: #f8f9fa;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .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;
        }
    }