 html, body {
    min-height: 100%;
    width: 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;
 }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Reset body and html to ensure full width */
    html, body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    /* Container reset */
    .container,
    .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    /* Carousel styles */
    .carousel-container {
        width: 100vw;
        background: linear-gradient(to right, #003366, #004080);
        overflow: hidden;
        position: relative;
        min-height: 500px;
        margin: 0;
        padding: 0;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        position: relative;
    }

    .carousel-wrapper {
        width: 100%;
        position: relative;
        margin: 0;
    }

    .carousel-slide {
        display: none;
        width: 100%;
        padding: 60px 0;
        position: relative;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

        .carousel-slide.active {
            display: block;
            opacity: 1;
        }

    .content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }


    .text-content {
        flex: 1;
        color: white;
        max-width: 600px;
    }

        .text-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .text-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

    .image-content {
        flex: 1;
        max-width: 50%;
    }

        .image-content img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
        }

    .connect-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: white;
        color: #003366;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

        .connect-button:hover {
            background-color: #e6e6e6;
            transform: translateY(-2px);
        }

    .carousel-dots {
        text-align: center;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        z-index: 2;
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .dot.active {
            background-color: white;
        }

    @media (max-width: 768px) {
        .content-wrapper

    {
        flex-direction: column;
    }

    .text-content,
    .image-content {
        max-width: 100%;
    }

        .text-content h1 {
            font-size: 2rem;
        }

    .carousel-container {
        min-height: auto;
    }

    }

    .define-section {
        padding: 80px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        gap: 50px;
    }

    .define-image {
        flex: 1;
        position: relative;
    }

        .define-image img {
            width: 100%;
            height: auto;
            border-radius: 50%;
            position: relative;
            z-index: 1;
        }

    .star-decoration {
        position: absolute;
        color: #003366;
        font-size: 24px;
    }

    .star-1 {
        top: -20px;
        left: -20px;
    }

    .star-2 {
        bottom: 40px;
        right: -10px;
    }

    .star-3 {
        bottom: -10px;
        left: 40%;
    }

    .define-content {
        flex: 1;
        padding-right: 20px;
    }

        .define-content h2 {
            font-size: 2.5rem;
            color: #003366;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .define-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
        }

    .know-more-btn {
        display: inline-block;
        padding: 12px 25px;
        background: none;
        color: #003366;
        border: 2px solid #003366;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .know-more-btn:hover {
            background: #003366;
            color: white;
            transform: translateY(-2px);
        }

    @media (max-width: 768px) {
        .define-section

    {
        flex-direction: column;
        padding: 40px 20px;
    }

    .define-content {
        padding-right: 0;
    }

        .define-content h2 {
            font-size: 2rem;
        }

    .define-image {
        order: -1;
        margin-bottom: 30px;
    }

    }

    .what-we-offer {
        background-color: #14183E;
        padding: 80px 0;
        color: white;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .offer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 20px;
    }

        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: white;
        }

        .section-title h3 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: white;
        }

    .services-container {
        display: flex;
        gap: 30px;
    }

    .services-tabs {
        flex: 0 0 300px;
    }

    .service-tab {
        background: white;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
        color: #14183E; /* Added to ensure text is dark */
    }

        .service-tab:hover {
            transform: translateX(10px);
        }

        .service-tab.active {
            background: #0046FF;
            color: white;
        }

        .service-tab i {
            font-size: 24px;
        }

    .service-content {
        flex: 1;
        background: white;
        border-radius: 20px;
        padding: 40px;
        display: none;
    }

        .service-content.active {
            display: flex;
            gap: 30px;
        }

    .content-text {
        flex: 1;
    }

        .content-text h4 {
            font-size: 2rem;
            color: #14183E;
            margin-bottom: 20px;
        }

        .content-text p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

    .know-more-link {
        color: #0046FF;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
    }

    .content-image {
        flex: 1;
    }

        .content-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
        }

    @media (max-width: 768px) {
        .services-container

    {
        flex-direction: column;
    }

    .services-tabs {
        flex: none;
    }

    .service-content.active {
        flex-direction: column;
    }

    }

<!-- Strategic Partner Section -->
 
    .strategic-section {
        padding: 80px 0;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .strategic-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .strategic-header h2 {
            font-size: 2.5rem;
            color: #000;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .strategic-header p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

    .strategic-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .strategic-card {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        height: 300px;
        cursor: pointer;
    }

    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .strategic-card:hover .card-image {
        transform: scale(1.1);
    }

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        color: white;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        transition: all 0.3s ease;
    }

    .strategic-card:hover .card-overlay {
        background: linear-gradient(to top, rgba(0,35,102,0.9) 0%, rgba(0,35,102,0.8) 100%);
    }

    .card-content {
        transform: translateY(60px);
        transition: transform 0.3s ease;
    }

    .strategic-card:hover .card-content {
        transform: translateY(0);
    }

    .card-blue {
        background-color: #002366;
        color: white;
        padding: 20px;
    }

    .card-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .card-text {
        margin-bottom: 20px;
        line-height: 1.6;
        opacity: 0;
        height: 0;
        transition: all 0.3s ease;
    }

    .strategic-card:hover .card-text {
        opacity: 1;
        height: auto;
        margin-bottom: 20px;
    }

    .know-more-btn {
        display: inline-block;
        padding: 10px 25px;
        border: 2px solid white;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-align: center;
        font-weight: 500;
        opacity: 0;
        transform: translateY(20px);
    }

    .strategic-card:hover .know-more-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .know-more-btn:hover {
        background: white;
        color: #002366;
    }

    @media (max-width: 1024px) {
        .strategic-cards

    {
        grid-template-columns: repeat(2, 1fr);
    }

    }

    @media (max-width: 768px) {
        .strategic-cards

    {
        grid-template-columns: 1fr;
    }

    .strategic-header h2 {
        font-size: 2rem;
    }

    .strategic-section {
        padding: 40px 20px;
    }

    }

<!-- Client Logo Section -->
 
    .clients-section {
        background: linear-gradient(135deg, #1a0068 0%, #4b0082 100%);
        padding: 60px 0;
        overflow: hidden;
        position: relative;
        margin-top: 80px;
        min-height: 100vh; /* Changed to ensure visibility */
        width: 100%;
        display: block; /* Added to ensure proper rendering */
    }

    /* Add this to ensure the container takes up space */
    .section-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1; /* Added to ensure content stays above background */
    }

    .clients-header {
        margin-top: 50px;
        flex: none; /* Changed from flex: 0 0 40% */
        position: relative; /* Changed from sticky */
        text-align: center; /* Centers the text */
        margin-bottom: 40px; /* Adds space between header and logos */
    }

        .clients-header h3 {
            color: #8B5CF6;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .clients-header h2 {
            color: #ffc107;
            font-size: 2.5rem;
            font-weight: bold;
        }

    .logo-carousel {
        display: flex;
        flex-direction: column; /* Change to column to stack rows */
        gap: 30px; /* Space between rows */
        width: fit-content;
        transform: translateZ(0);
    }

    .logo-slide {
        display: flex;
        gap: 40px;
        padding: 0 20px;
        animation: scroll 30s linear infinite; /* Move animation to individual rows */
        will-change: transform;
    }

    .logo-container {
        background: white;
        border-radius: 8px;
        padding: 20px;
        width: 200px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    /* Add reverse animation for second row */
    .logo-slide:nth-child(2) {
        animation: scroll-reverse 30s linear infinite;
    }

        .logo-container:hover {
            transform: scale(1.05);
        }

        .logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

    .carousel-track {
        overflow: hidden;
        width: 100%;
        padding: 20px 0;
    }

    @keyframes scroll {
        0%

    {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    }
    @keyframes scroll-reverse {
        0%

    {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }

    }

    /* Pause animation on hover */
    .carousel-track:hover .logo-carousel {
        animation-play-state: paused;
    }

    @media (max-width: 768px) {
        .clients-header h2

    {
        font-size: 2rem;
    }

    .logo-container {
        width: 150px;
        height: 60px;
    }

    }

 
    .blog-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 32px 16px;
    }

    .blog-title {
        font-size: 24px;
        font-weight: bold;
        color: #0066cc;
        margin-bottom: 32px;
        text-align: center;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

        .blog-grid a {
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
            display: block;
        }

            .blog-grid a:hover {
                transform: translateY(-5px);
            }

    .blog-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .blog-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

    .blog-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-content {
        padding: 24px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

        .blog-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 12px 0;
            color: #333;
            line-height: 1.4;
        }

    .blog-categories {
        font-size: 14px;
        color: #666;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .blog-date {
        font-size: 14px;
        color: #888;
        margin-top: auto;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .blog-grid

    {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    }

    @media (max-width: 1024px) {
        .blog-grid

    {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-content {
        padding: 20px;
    }

    }

    @media (max-width: 640px) {
        .blog-grid

    {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-container {
        padding: 16px;
    }

    .blog-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .blog-image {
        height: 180px;
    }

    }

 
    .contact-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f9f9f9; /* Light gray background */
        padding: 40px;
        border-radius: 16px;
        margin: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }


    .contact-content {
        flex: 1;
        padding-right: 40px;
    }

    .contact-label {
        color: #0039CB;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 16px;
        display: block;
    }

    .contact-heading {
        font-size: 36px;
        font-weight: bold;
        line-height: 1.2;
        margin: 20px 0 30px 0;
        color: #000;
    }

    .contact-button {
        display: inline-block;
        color: #0039CB;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        border-bottom: 2px solid #0039CB;
        padding-bottom: 4px;
        transition: all 0.3s ease;
    }

        .contact-button:hover {
            opacity: 0.8;
            padding-right: 5px;
        }

    .contact-image {
        flex: 1;
        max-width: 500px;
    }

        .contact-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
        }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-banner

    {
        flex-direction: column;
        padding: 20px;
    }

    .contact-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-heading {
        font-size: 28px;
    }

    .contact-image {
        max-width: 100%;
    }

    }
 
    .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;
    }

    }
 