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;
            }
        
    }

    /* Example content to demonstrate scrolling */
    .content-section {
        padding: 100px 20px;
        background-color: #e9e9e9;
        margin-bottom: 20px;
    }

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
:root {
    --dark-blue: #0a192f;
    --teal: #0047AB;
    --light-blue: #ccd6f6;
    --slate: #8892b0;
    --navy: #112240;
}


.banner-container {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-blue);
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    width: 50%;
    color: white;
    z-index: 2;
    padding-right: 5%;
}

.banner-image {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.banner-image img {
    margin-right: 20px;
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    transition: transform 0.5s ease;
}

.banner-image:hover img {
    transform: translateY(-5px);
}

.banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    font-weight: 700;
    color: var(--light-blue);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    color: var(--slate);
    line-height: 1.6;
}

.banner-btn {
    display: inline-block;
    padding: 1rem 1.75rem;
    background: transparent;
    color: var(--teal);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
    border: 1px solid var(--teal);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.banner-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.3);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--teal);
    transform: scale(1.3);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 25, 47, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.nav-arrow:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--teal);
}

.arrow-left {
    left: 30px;
}

.arrow-right {
    right: 30px;
}

.company-logo {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 20;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
}

.company-logo span {
    color: white;
    margin-left: 8px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .banner-slide {
        flex-direction: column;
        padding: 80px 20px 20px;
        text-align: center;
    }
    
    .banner-content {
        width: 80%;
        margin: auto;
        margin-bottom: 2rem;
    }
    .banner-content p{
        width: 80%;
        margin: auto;
    }
    
     
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .arrow-left {
        left: 15px;
    }
    
    .arrow-right {
        right: 15px;
    }
    
    .company-logo {
        left: 20px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }
    .banner-content p{
        width: 90%;
        margin: auto;
    }
    
    .banner-btn {
        margin-top: 40px;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }
}
 

.flex-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    justify-content: center; /* Centers the boxes horizontally */
    align-items: center; /* Centers items vertically */
    padding: 20px;
}

.flex-box {
    width: 300px;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}
.flex-box:hover{
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.flex-box img {
    max-width: 100px; /* Ensure image doesn't overflow the box */
    height: auto;  /* Maintain aspect ratio */
    margin-bottom: 10px;
}
.flex-box p{
    color: rgb(54, 53, 53);
}

/* Media query for responsiveness.  Adjust as needed. */
@media (max-width: 768px) { /* Medium screens and smaller */
    .flex-box {
        width: 100%; /* Make each box take up full width */
        margin: 10px 0; /* Adjust margins for single-column layout */
    }
    .flex-box {
        width: 300px;
        text-align: center;
        padding: 20px;
        margin: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-sizing: border-box; /* Include padding and border in element's total width and height */
    }
}
@media (max-width: 1200px) {
    .flex-container{
        gap: 20px;
    }
}



.dxc-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    background: linear-gradient(to left, #99c3ff, white, white, white, white );
}

.dxc-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
}


.dxc-image {
    width: 50%;
    max-width: 600px;
    margin-right: 20px;
}

.dxc-image img {
    width: 100%;
    height: auto;
    display: block;
}

.dxc-text {
    width: 50%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}

.dxc-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0047AB; /* Primary color */
}

.dxc-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dxc-text button {
    background-color: #0047AB;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}



@media (max-width: 768px) {
    .dxc-content {
        flex-direction: column;
        align-items: center;
    }

    .dxc-image, .dxc-text {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .dxc-image {
        margin-bottom: 20px;
    }

     
}
.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #f4f4f4;
  }

  .card {
    background: white;
    border-left: 5px solid #0047AB;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #0047AB;
  }

  .icon-title svg {
    margin-right: 0.75rem;
    fill: #0047AB;
    width: 32px;
    height: 32px;
  }

  .card p {
    color: #333;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .section-container {
      flex-direction: row;
      justify-content: center;
    }

    .card {
      margin: 1rem;
    }
  }


 
/* Responsive adjustments */
       .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .headerv {
            text-align: left;
            margin-bottom: 40px;
            color: #0047AB;
            margin-left: 10px;
        }

        .header h1 {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            color: #0047AB;
        }

        .header .logo {
            float: right;
            font-size: 1.2em;
            color: #0047AB; /* Blue logo color */
        }

        .values-grid {
            background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/net.avif);
            background-repeat: no-repeat;
            background-size: cover;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
             /* background-color: #0047AB; */
            padding: 20PX;
        }

        .value-box {
            transition: tranform 0.3s ease-in;
            background-color: white;
            padding: 10px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            
        }
        .value-box:hover{
            transform: translateY(-2px);
        }
        
        .value-box h2 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .value-box p {
            line-height: 1.6;
        }

        .value-number {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 2em;
            font-weight: bold;
            color: #007bff; /* Blue number color */
        }

        .value-box:nth-child(even) .value-number {
            color: #28a745; /* Green number color for even boxes */
        }

        .value-box:nth-child(3) .value-number,
        .value-box:nth-child(4) .value-number {
            color: #dc3545; /* Red number color for boxes 3 and 4 */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            .vision-mission-section {
                
                display: flex;
                justify-content: center;
                flex-direction: column;
                margin: 20px;
                align-items: center;
                font-family: sans-serif;
                padding: 40px;
                background-color: #f9f9f9; /* Light grey background */
                text-align: center;
              }
               
              .vision-mission-section h2 {
                font-size: 2em; /* Large heading */
                font-weight: bold;
                margin-bottom: 20px;
                text-transform: uppercase;
                position: relative; /* For the underline effect */
                text-align:  center;
              }
              .header h1 {
                font-size: 2em;
                font-weight: bold;
                margin-bottom: 10px;
                color: #000;
                text-align: center;
            }
            .header h1 {
                font-size: 2em;
                font-weight: bold;
                margin-bottom: 10px;
            }
        }

 
        .container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header {
            text-align: left;
            margin-bottom: 40px;
            position: relative;
        }

        .header h1 {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            color: #000;
        }

        .header::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: linear-gradient(to bottom right, #0047AB, #4169E1);
            clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 0 100%);
            z-index: -1;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .reason-box {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .reason-box img {
            width: 100%;
            height: 200px; /* Fixed height for images */
            object-fit: cover; /* Cover the entire box */
            border-radius: 8px 8px 0 0; /* Rounded top corners */
            margin-bottom: 10px; /* Space between image and text */
        }

        .reason-box h2 {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #0047AB;
            display: flex;
            align-items: center;
        }

        .reason-box h2::before {
            content: '✔';
            color: #0047AB;
            margin-right: 10px;
            font-size: 1.2em;
        }

        .reason-box p {
            line-height: 1.6;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }

            .header::after {
                width: 100px;
                height: 100px;
            }

            .reason-box img {
                height: 150px; /* Adjust image height for smaller screens */
            }
        }


        :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;
            }
        }