 html, body {
     height: 100%;
     margin: 0;
     padding: 0;
 }

 body {
     display: flex;
     flex-direction: column;
     min-height: 100vh;
 }

 .main-content {
     flex: 1 0 auto;
     padding-bottom: 40px;
 }

 .navbar {
     background-color: white !important;
     box-shadow: 0 2px 4px rgba(0,0,0,0.1);
     padding: 0.75rem 1rem; /* Slightly increased padding */
     min-height: 80px; /* Ensure navbar is tall enough */
     display: flex;
     align-items: center;
 }

 .navbar-nav {
     margin-left: auto;
     margin-right: 2rem;
 }

 .nav-item {
     margin-left: 0.5rem;
     margin-right: 0.5rem;
 }

 .navbar-brand img {
     height: 60px; /* Increased from 40px */
     width: auto;
     margin-right: 10px; /* Added some spacing after the logo */
     transition: all 0.3s ease; /* Smooth transition for any changes */
 }


 .navbar-brand {
     padding: 0;
     font-weight: bold;
     color: #0046cc !important;
     font-size: 1.5rem;
     display: flex;
     align-items: center;
 }

     .navbar-brand span {
         color: #333;
     }

 .nav-link {
     color: #333 !important;
     font-weight: 500;
     padding: 0.5rem 1rem !important;
     transition: all 0.3s ease;
 }

     .nav-link:hover {
         color: #0046cc !important;
     }

     .nav-link.active {
         background-color: #0046cc !important;
         color: white !important;
         border-radius: 4px;
     }

 .get-in-touch {
     background-color: #0046cc;
     color: white !important;
     padding: 0.5rem 1.5rem !important;
     border-radius: 4px;
     text-decoration: none;
     margin-left: 1rem;
 }

     .get-in-touch:hover {
         background-color: #003399;
     }

 /* Enhanced Dropdown Styling */
 .nav-item.dropdown {
     position: relative;
 }

 .dropdown-menu {
     border: none;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     padding: 8px 0;
     margin-top: 10px;
     min-width: 220px;
     animation: dropdown-fade 0.2s ease-in-out;
 }

 .dropdown-item {
     padding: 10px 20px;
     color: #333;
     font-size: 14px;
     transition: all 0.2s ease;
 }

     .dropdown-item:hover {
         background-color: #f8f9fa;
         padding-left: 24px;
         color: #0047AB;
     }

 /* Optional: Add a subtle arrow indicator */
 .dropdown-menu::before {
     content: '';
     position: absolute;
     top: -5px;
     left: 20px;
     width: 10px;
     height: 10px;
     background: white;
     transform: rotate(45deg);
     border-top: 1px solid rgba(0,0,0,0.05);
     border-left: 1px solid rgba(0,0,0,0.05);
 }

 /* Animation for smooth appearance */
 @keyframes dropdown-fade {
     from

 {
     opacity: 0;
     transform: translateY(-8px);
 }

 to {
     opacity: 1;
     transform: translateY(0);
 }

 }

 /* Active state styling */
 .dropdown-item.active,
 .dropdown-item:active {
     background-color: #0047AB;
     color: white;
 }

 /* Hover effect for main dropdown toggle */
 .nav-link.dropdown-toggle:hover {
     color: #0047AB !important;
 }

 .navbar-brand img {
     height: 40px;
     width: auto;
 }

 footer {
     background-color: #0F1744;
     color: white;
     padding: 40px 0;
     margin-top: auto;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     padding: 0 20px;
 }

 .footer-section h3 {
     color: white;
     font-size: 18px;
     margin-bottom: 20px;
     font-weight: 500;
 }

 .footer-section ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

     .footer-section ul li {
         margin-bottom: 10px;
     }

         .footer-section ul li a {
             color: white;
             text-decoration: none;
             font-size: 14px;
             transition: opacity 0.3s;
         }

             .footer-section ul li a:hover {
                 opacity: 0.8;
             }

 .footer-contact {
     color: white;
     font-size: 14px;
 }

     .footer-contact p {
         margin-bottom: 10px;
     }

 .newsletter-form {
     display: flex;
     gap: 10px;
     margin-bottom: 20px;
 }

     .newsletter-form input {
         padding: 8px 12px;
         border: none;
         border-radius: 4px;
         flex-grow: 1;
     }

     .newsletter-form button {
         padding: 8px 20px;
         background-color: white;
         border: none;
         border-radius: 4px;
         cursor: pointer;
         transition: background-color 0.3s;
     }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 15px;
 }

     .social-links a {
         color: white;
         font-size: 20px;
         transition: opacity 0.3s;
     }

         .social-links a:hover {
             opacity: 0.8;
         }

 .copyright {
     text-align: center;
     padding-top: 20px;
     font-size: 12px;
     opacity: 0.8;
 }

 .navbar-brand img {
     height: 40px;
     width: auto;
 }

 .footer-logo img {
     height: 50px;
     width: auto;
     margin-bottom: 20px;
 }


 .follow-section h4 {
     color: white;
     margin-bottom: 15px;
 }

    .about-us-hero {
        position: relative;
        width: 100vw;
        margin-left: -50vw;
        left: 50%;
        padding: 0;
        background-size: cover;
        background-position: center;
        min-height: 500px;
        overflow: hidden;
    }

        .about-us-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(15, 25, 65, 0.95) 50%, rgba(15, 25, 65, 0.8) 100%);
            z-index: 0;
        }

        .about-us-hero .container {
            position: relative;
            z-index: 1;
        }

        .about-us-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .about-us-hero p {
            font-size: 1.2rem;
            line-height: 1.8;
        }

    .connect-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #ffffff;
        color: #0F1941;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

        .connect-btn:hover {
            background-color: #0F1941;
            color: #ffffff;
            border: 2px solid #ffffff;
        }
    /* Add responsive adjustments */
     @media screen and (max-width: 768px) {
        .about-us-hero h1 {
            font-size: 2.5rem;
        }

        .about-us-hero p {
            font-size: 1.1rem;
        }
    }
 
 
    .services-section {
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .services-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #000;
        }

        .services-section .description {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

    .service-card {
        background: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease;
        margin: 0 15px;
    }

        .service-card:hover {
            transform: translateY(-5px);
        }

    .service-icon {
        width: 80px;
        height: 80px;
        background-color: #0D47A1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

        .service-icon i {
            font-size: 32px;
            color: #fff;
        }

    .service-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #000;
    }

    .service-description {
        color: #666;
        line-height: 1.6;
    }

    .slider-container {
        position: relative;
        padding: 0 60px;
    }

    .services-slider {
        display: flex;
        transition: transform 0.5s ease;
        overflow: hidden;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #0D47A1;
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 2;
        transition: background 0.3s ease;
    }

        .slider-arrow:hover {
            background: #083378;
        }

        .slider-arrow.prev {
            left: 0;
        }

        .slider-arrow.next {
            right: 0;
        }

    .service-slide {
        flex: 0 0 300px;
        max-width: 300px;
        padding: 15px;
    }

    .services-slider {
        display: flex;
        transition: transform 0.5s ease;
        overflow: visible; /* Changed from hidden to visible */
    }

    .slider-container {
        overflow: hidden; /* Container handles the overflow */
    }
 
 
    .values-section {
        padding: 80px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/background.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        position: relative;
        width: 100vw; /* Added: Full viewport width */
        margin-left: calc(-50vw + 50%); /* Added: Negative margin technique */
        margin-right: calc(-50vw + 50%); /* Added: Negative margin technique */
    }

    .values-container { /* New class instead of generic container */
        max-width: 1200px; /* Or your desired max-width */
        margin: 0 auto;
        padding: 0 15px;
    }
    /* Rest of your existing styles remain the same */
    .values-section h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .values-section .description {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 3rem;
        opacity: 0.9;
    }

    .value-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        height: 100%;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .value-card:hover {
            transform: translateY(-10px);
        }

    .value-icon-wrapper {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 0 auto 1.5rem;
    }

    .value-icon-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0D47A1;
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        z-index: 1;
    }

    .value-icon-img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        z-index: 2;
    }

    .value-title {
        color: #0F1941;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .value-description {
        color: #666;
        line-height: 1.6;
    }

     @media screen and (max-width: 768px) {
        .values-section h2 {
            font-size: 2.5rem;
        }

        .value-card {
            margin-bottom: 2rem;
        }
    }
 
 
    .cta-section {
        padding: 80px 0;
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
        /* Add full width styles */
        width: 100vw;
        margin-left: -50vw;
        left: 50%;
        right: 50%;
    }

    .cta-container {
        display: flex;
        align-items: center;
        gap: 2rem;
        max-width: 100%;
    }

    .cta-image {
        flex: 1;
        position: relative;
        /* Ensure image container takes full height */
        height: 100%;
        min-height: 500px;
        overflow: hidden;
    }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

    .cta-content {
        flex: 1;
        padding: 2rem 4rem 2rem 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0F1941;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .cta-description {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        background-color: #0D47A1;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .cta-button:hover {
            background-color: #083378;
            transform: translateY(-2px);
        }

     @media screen and (max-width: 992px) {
        .cta-container {
            flex-direction: column;
        }

        .cta-image {
            width: 100%;
            min-height: 300px;
        }

        .cta-content {
            width: 100%;
            padding: 2rem;
        }

        .cta-title {
            font-size: 2rem;
        }
    }
 
 
    .process-section {
        padding: 80px 0;
        background: #fff;
        overflow: hidden;
    }

    .process-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .process-flow {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 60px;
    }

    .process-flow-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .process-step {
        text-align: center;
        width: 30%;
        margin-bottom: 30px;
    }

    .step-number {
        background: #0D47A1;
        color: white;
        padding: 5px 15px;
        border-radius: 5px;
        display: inline-block;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        background: white;
        border: 3px solid #0D47A1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

        .step-icon i {
            font-size: 40px;
            color: #0D47A1;
        }

    .step-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0F1941;
    }

    .step-description {
        color: #666;
        line-height: 1.6;
        font-size: 1rem;
    }

     @media (max-width: 992px) {
        .process-step

    {
        width: 100%;
    }

    .process-flow,
    .process-flow-bottom {
        flex-direction: column;
    }

    }