
/* --------------------------------------------Footer--------------------------------- */

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

.footer {
    background-color: #ffffff; /* White background */
    padding: 40px 20px;
    color: #000; /* Black text */
    border-top: 1px solid #ddd;
  }
  .footer h5 {
    font-weight: bold;
  }
  .footer .social-icons a {
    font-size: 1rem;
    color: black;
    margin-right: 15px;
  }
  .footer .social-icons a:hover {
    color: #007bff; /* Hover color */
  }
  .footer .quick-links a {
    text-decoration: none;
    color: #000;
  }
  .footer .quick-links a:hover {
    text-decoration: underline;
    color: #007bff;
  }
img {
    border-style: none;
}
img {
    vertical-align: middle;
}
img {
    border: 0;
}



/* -------------------------------image adding------------------------- */

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.row.no-gutters > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}
.image-container img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Ensures the image maintains a 1:1 aspect ratio */
    object-fit: cover;
   
}
/* ------------------------------------------------------------------------------------------------------ */
/* Container styling to create a horizontal layout */
#col2layoutRow2 .col_2_layout {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Styling for each column (left and right) */
#col2layoutRow2 .col_2 {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
}

/* Background and image styling with fixed height for consistency */
#col2layoutRow2 .col_2 .bg {
    position: relative;
    width: 100%;
    height: 559px; /* Set a fixed height to match both columns */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 8px;
}

/* Image styling */
#col2layoutRow2 .col_2 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Title styling */
#col2layoutRow2 .col_2 .title {
    font-size: 1.5em;
    color: #ffffff;
    margin-top: 20px;
    text-align: center;
}

/* Description text styling */
#col2layoutRow2 .col_2 .desc {
    color: #ffffff;
    margin-top: 10px;
    font-size: 1em;
}
/* ------------------------------------------This one for image with upwarding animation------------------------ */
/* Container layout */
#col2layoutRow2 {
    display: flex;
}

.col_2_layout {
    display: flex;
    overflow: hidden;
}

.col_2 {
    position: relative;
    width: 50%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.col_2 .bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Video container styling */
.video-container {
    position: relative;
 
}

/* Placeholder image */
.video-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Hover effect to hide the image placeholder and show the video */
.video-container:hover .video-placeholder {
    opacity: 0;
}

/* Video styling */
.hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title styling */
.col_2 .bg .title {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    text-align: center;
    z-index: 1;
    transition: top 0.3s ease;
    opacity: 1;
}

.col_2 .desc,
.col_2 .buttonContainer {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    color: white;
}

.buttonContainer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #362358;
    background-color: #ffffff;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hover state adjustments */
.col_2:hover .title {
    top: 50%;
}

.col_2:hover .desc,
.col_2:hover .buttonContainer {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* Responsive adjustments */
@media only screen and (max-width: 1366px) {
    .buttonContainer a {
        font-size: 14px;
        padding: 8px 25px;
    }

    .col_2 .bg .title {
        font-size: 2em;
    }
}
/* -------------------------------------Black Backround---------------------- */
/* General layout */
.text_and_image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111111; /* Dark background */
    color: #fff; /* White text color */
    padding: 100px 20px; /* Adjust padding as needed */
}

.text_and_image_container {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between text and image */
}

.text {
    max-width: 50%; /* Adjust text width */
}

.text .title {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff; /* Text color */
}

.text .title span {
    color: #FF4136; 
}

.text .desc {
    font-size: 1.2em;
    line-height: 1.6;
}

.image {
    position: relative;
    max-width: 50%; 
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 8px; 
}

.playBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 50%;
    padding: 15px;
}

.playBtn a img {
    width: 50px;
    height: 50px;
    
}
.dummy-video {
    background-color: #333; /* Dark background for placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 1.5rem;
  }


  /* Introduction Section Styling */
  .intro-section {
   
    padding: 3rem;
    text-align: center;
    background-color: #b6cde3;
}

.intro-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.intro-section p {
    color: white;
    font-size: 1.1rem;
}

/* Animation for Cards on Scroll */
.card-container {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-container.show {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effect */
.card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.card img {
    transition: transform 0.10s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.animated-text-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated-text-section.show {
    opacity: 1;
    transform: translateY(0);
}
.container, .container-fluid {
    --bs-gutter-x: 0rem !important;
    overflow-x: hidden
  }


  /* Initial state */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px); /* Starts 100px below its final position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0); /* Moves to its final position */
}

body {
    font-family: "Poppins",arial,sans-serif !important;
   
}

  .hero-section {
            background-image: url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        .container {
            padding-top: 40px;
        }
        .masonry {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .masonry-item {
            background: #FF6347;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease-in-out;
            width: 100%;
        }
        .masonry-item h3 {
            margin-bottom: 10px;
        }
        .masonry-item p {
            font-size: 1rem;
        }
        .masonry-item:hover {
            background: #2E75B6;
            transform: translateY(-5px);
        }
        .cta-btn {
            background: #FF6347;
            color: white;
            padding: 15px 25px;
            font-size: 1.25rem;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
            margin-top: 20px;
            transition: 0.3s ease-in-out;
        }
        .cta-btn:hover {
            background: #2E75B6;
            color: #FF6347;
            transform: scale(1.1);
        }

        
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  
  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }
  .card-img-container {
    position: relative;
    display: inline-block;
}

.card-img-top {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: auto;
}

.card-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 223, 0, 0.5); /* Yellow overlay */
    opacity: 0; /* Initially invisible */
    transition: opacity 0.3s ease-in-out;
}

.card-img-container:hover::after {
    opacity: 1; /* Show the overlay on hover */
}
  
.jumbotron {
    background-image: url('img/1896x590-path-to-the-intelligent-enterprise.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    height: 80vh; /* Adjust height as needed */
    margin-bottom: 0;
  }
  
.text-box {
    max-width: 600px; /* Width control for the text box */
    margin-left: 0; /* Ensure alignment to the left edge */
  }
  
  .jumbotron h1,
  .jumbotron p {
    color: white;
  }

  /* Define the fixed size for each column */
  .fixed-size {
    width: 632px;
    height: 392px;
 
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: left;
}

/* Background color for text columns */
.bg-custom {
    background-color: #015E5D;
    padding: 20px;
}

/* Styling for the main heading and subheading */
.text-large {
    font-size: 3rem;
    font-weight: 900;
  
}

.text-small {
    font-size: 1rem;
    margin-top: 10px;
}

/* Image styling for contained fit */
.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-custom-2 {
    background-color: #746FA7;
    padding: 20px;
}


.custom-card-row {
    display: flex;
    flex-wrap: nowrap;
}
.custom-card {
    width: 315px;
    height: 391px;
    overflow: hidden;
}
.custom-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}
.custom-image-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}
.custom-text-card {
    background-color: #2E75B6; /* Example background color */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    height: 100%; /* Ensures full height for text card */
}
.custom-text-card p {
    margin: 0; /* Remove any default paragraph margin */
}



.image-container {
    position: relative;
    overflow: hidden;
  }
  .image-container img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Ensures the image maintains a 1:1 aspect ratio */
    object-fit: cover;
  }
  .default-text{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease; /* Smooth animation */
  }

  .hover-text {
    position: absolute;
    
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease; /* Smooth animation */
  }
 
  .hover-text {
    bottom: -40px; /* Hidden initially below the default text */
    opacity: 0; /* Invisible by default */
  }
  .image-container:hover .default-text {
    bottom: 180px; /* Moves up on hover */
  }
  .image-container:hover .hover-text {
    bottom: 20px; /* Moves up to just below the default text */
    opacity: 1; /* Becomes visible */
  }
  .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Full image coverage */
  background-color: rgba(20, 20, 21, 0.7); /* #2E75B6 with 70% opacity */
  opacity: 0; /* Invisible by default */
  transition: opacity 0.3s ease;
}


.image-container:hover .hover-overlay {
  opacity: 1; /* Overlay appears on hover */
}
.img-fluid {
    max-width: 100%;
    height: auto;
}


.icon-color {
    color: #2E75B6 !important;
  }
  /* ---------------------------------------------Changing header---------------------------------- */
  
  /* -----------------------------------Application html ---------------------------------- */
  .banner {
    position: relative;
    background-image: url('img/PerformanceTesting.PNG'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the full area */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Optional: Keeps the image fixed when scrolling */
    color: white;
    height: 300px; /* Adjust height to fill the entire viewport */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    text-align: left;
    /* You can add additional styles for text here */
}

  
.expertise-text {
    font-size: 1.5rem;
    color: #333;
    opacity: 0;
    transform: translateY(20px); 
    animation: fadeInUp 1s ease forwards; 
}

.expertise-title {
    color: #0056b3;
    font-weight: bold;
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start position for slide-up effect */
    animation: fadeInUp 1s ease forwards 0.3s; /* Delay for a staggered effect */
}

.card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    background-color: #d3d3d3; 
    border-radius: 8px;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-10px); /* Move card up slightly on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a shadow for a "lifted" look */
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s; }

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bg-color-12 {
    background-color: #e8e8e8 !important;
    padding-top: 10px;
}
.success-story {
    position: relative;
    overflow: hidden; /* Hide any overflow */
    color: white;
    text-align: left;
    width: 100%; /* Ensure the width is 100% of the parent container */
    box-sizing: border-box; /* Include padding/borders in width/height calculation */
}

.success-story img {
    width: 100%;
    height: auto;
    display: block; /* Ensures no extra space below the image */
}

.story-content {
    position: absolute;
    bottom: 0; /* Position at the top */
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    width: 100%; /* Ensures it stays within the parent container */
}

.story-content h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

  .blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 24px;
    height: 300px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}
.blog-card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.section-title {
    color: #0066cc;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.button-show-more {
    background-color: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 30px auto;
    display: block;
}

.button-show-more:hover {
    background-color: #0066cc;
    color: white;
}

.card {
    height: 100%;
}
.card-img {
    object-fit: cover; 
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.row .col-md-3 {
    display: flex;
    flex-direction: column;
}
 /* ----------------------------------------------14.11.2024------------------------------------------------------------- */
 .card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}
.card img {
    transition: transform 0.3s ease; 
}
.card:hover img {
    transform: scale(1.1); 
}
.read-more {
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s ease;
}
.read-more:hover {
    color: #0056b3;
}
.extra-content {
    display: none;
}

/* -------------------------------------cloud.html-------------------------------------------------- */
    /* Custom Styling */
    .fullstride-section {
       
        padding: 50px 0;
        background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1%, transparent 0%);
        background-size: 2px 2px;
    }

 

    .fullstride-section {
        background-color: #1A1A59; /* dark blue background color */
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh; /* Full viewport height */
        text-align: center;
        padding: 50px 20px;
    }
   

    .fullstride-section h1 {
        font-weight: bold;
    }
    .fullstride-section p {
        font-size: 18px;
    }

    .services-section h2 {
        text-align: center;
        font-weight: bold;
        color: #355589; /* Dark blue color for title */
        margin-bottom: 10px;
    }
    .services-section hr {
        width: 50px;
        border: 2px solid #32a1ce; /* Light blue color for line */
        margin: 0 auto 30px;
    }
    
    .service-card {
        border: none;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        transition: transform 0.3s;
        height: 100px; /* Set a fixed height for uniformity */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .service-card:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    .service-icon {
        font-size: 40px;
        color: #32a1ce; /* Light blue color for icons */
        margin-bottom: 15px;
    }
    .service-title {
        font-weight: bold;
        color: #355589; /* Dark blue color for text */
    }

    .case-study-section {
        background-color: #1a9cb0; /* Blue background color */
        color: white;
        padding: 120px 0;
        text-align: left; /* Align text to the left */
        padding-left: 20px; /* Optional: Adds space from the left edge */
    }
    
    .case-study-section h1 {
        font-size: 4rem; /* Increase font size to make it larger */
        font-weight: bold;
        letter-spacing: 2px; /* Optional: Adds space between letters */
    }

/* Styles for the main container */
.industry-section {
  background-color: black;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.industry-section h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Styles for each card */
.industry-card {
    position: relative;
    overflow: hidden;
    color: white;
    height: 300px; 
}

/* Ensure the image covers the entire card area */
.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.industry-card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.2em;
    font-weight: bold;
}
/* Styles for the section */
.enterprise-section {
   
    padding: 50px 0;
}

.enterprise-section h2 {
    font-size: 2em;
    color: #4b3d75; /* Matches the purple shade in the image */
    font-weight: bold;
}

.enterprise-section p {
    font-size: 1.1em;
   
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4b3d75; /* Custom button color */
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 25px;
}


.image-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-color: #4b3d75;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.report-cover {
    border-radius: 10px;
  
}
.card {
    border-radius: 10px;
}

.card-img {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    object-fit: cover;
    height: 100%;
}



.card-text {
    color: #555;
}

  
  
  .news-section {
    background-color: #ffffff; /* White background */
  }
  
  .section-title {
    color: #000; /* Black text color */
    font-size: 2.5rem;
    font-weight: bold;
  }
  
.read-more-btn{
    background-color: #0066cc;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }
  
  .carousel-container {
    position: relative;
    max-width: 100%;
  }
  
  .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 250px;
    object-fit: cover;
  }
  
  .card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .read-more-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    color: white;
    background-color: #007bff;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
  }
  
  .read-more-btn .plus-icon {
    margin-right: 8px;
    font-size: 1.2rem;
  }

  .container {
    max-width: 1200px;

    margin: 0 auto;
    text-align: left;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
  }
  
  .carousel {
    position: relative;
  }
  
  .carousel-inner {
    display: flex;
  }
  
  .carousel-item {
    transition: transform 0.5s ease;
  }
  
  .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  

  
  .card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    background-color: #007bff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #0056b3;
  }
  
  .plus-icon {
    font-size: 16px;
    margin-right: 5px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  }
  
  .carousel-control-prev:hover .carousel-control-prev-icon,
  .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8);
  }

  
  


.image-container {

    overflow: hidden;
    width: 100%;
    height: 100%;
}

.full-width-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curved-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}
.card-text {
    font-size: 0.9rem;
    color: #333;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    position: relative;
}
.card-text {
    font-size: 0.9rem;
    color: #333;
}
.video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card-img {
    height: 100%;
    object-fit: cover;
}

.card-text {
    color: #666;
    font-size: 0.9rem;
}
.card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #0000;
}
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.text-decoration-none:hover {
    text-decoration: none;
}
/* ------------------------Our clients--------------------------------- */
.partner-logo {
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 150px; /* Set the desired width here */
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    margin: 0 auto; /* Center align inside column */
}
.partner-logo:hover {
    transform: translateY(-5px); 
}
.partner-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.banners {
    position: relative;
    width: 100%; /* Ensure full width */
    height: 100vh; /* Adjust height to fill the viewport or set your desired height */
}

.image-content {
    width: 100%;
    height: 100%; /* Ensure it takes full height */
}

.people-image {
    width: 100%; /* Makes the image take full width */
    height: 100%; /* Makes the image take full height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    object-position: center; /* Ensures the image is centered */
    display: block; /* Prevents space below the image */
}
/* -----------------------------------Contact Us------------------------------ */
.header-section {
   
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .header-section .img-fluid {
    object-fit: cover;
   
  }
  
  .header-section .overlay {
    background: none;
    z-index: 1;
  }
  
  .header-section .content {
    z-index: 2;
  }
  
  .container {
    z-index: 3;
  }
  
  .social-icons-container {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 5px 10px;
    text-align: center;
  }
  
  .social-icons-container a {
    text-decoration: none;
  }
  
  .social-icons-container a:hover {
    background-color: white;
    color: black;
  }
  
  .btn-outline-light {
    border-color: white;
    color: white;
  }
  
  .btn-outline-light:hover {
    background-color: white;
    color: black;
  }
  .contact-form-container {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }
  .contact-form-container h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }
  .form-control {
    border-radius: 20px;
  }
  .contact-form-container {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }
  .contact-form-container h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }
  .form-control {
    border-radius: 20px;
  }
  .form-check-label {
    color: white;
  }
  .form-check a {
    color: #ffd700;
    text-decoration: none;
  }
  .form-check a:hover {
    text-decoration: underline;
  }
  .contact-form-container {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }
  .contact-form-container h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }
  .form-control {
    border-radius: 20px;
  }
  .form-check-label {
    color: white;
  }
  .form-check a {
    color: #ffd700;
    text-decoration: none;
  }
  .form-check a:hover {
    text-decoration: underline;
  }
  .form-header {
    text-align: center;
    margin-bottom: -50px; /* Adjust the space below the paragraph */
    margin-top: 40px; /* Add space above the paragraph */
    font-size: 1.1rem;
    color: #333; /* Adjust color to match the design */
    max-width: 800px;
    margin-left: auto;   /* Center-align horizontally */
    margin-right: auto;  /* Center-align horizontally */
  }
  .home-link {
    font-size: 1.2rem; /* Adjust the font size for better visibility */
    position: absolute;
    top: 100px; /* Move the link closer to the top */
    left: 100px; /* Align to the left corner */
    z-index: 5;
  }

  #shareButton {
    position: relative;
   
    right: 20px;
  }
  .fixed-header {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: #003d7a; /* Dark blue background */
    color: white;              /* White text */
    height: 60px;              /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;           /* Spacing on left and right */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow */
  }

  .fixed-header a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }

  .fixed-header a:hover {
    text-decoration: underline;
  }

  .header-center {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-icons i {
    font-size: 1.2rem;
    cursor: pointer;
  }


  /* Corporate Office Section Styling */
.container h3 {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 28px;
    color: #003d7a;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .address-container {
    background-color: white; /* Dark gray background */
    color: #ffffff; /* White text */
    padding: 20px;
    border-radius: 10px;
    font-family: 'Proxima Nova', sans-serif;
  }
  
  .address-container h5 {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 15px;
  }
  
  .address-container p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .address-container .btn-custom {
    background-color: #003d7a;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .address-container .btn-custom:hover {
    background-color: #0056b3;
  }
  
  .map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* General Container Styling */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .row .col-md-6 {
      margin-bottom: 20px;
    }
  
    .map-container iframe,
    .address-container {
      margin-bottom: 20px;
    }
  }
/* -------------------------------------------------------------------------------------------------------- */
.navbar {
    padding: 15px 0;
    background-color: white;
    height: 80px; /* Adjust this value as needed */
    font-family: 'Open Sans', sans-serif;
      font-weight: 300; /* Light weight for Open Sans */
    align-items: center; /* Centers the content vertically */
    font-size: 20px; /* Increase font size for navigation links */
      -webkit-font-smoothing: antialiased; /* Smoothens font rendering */
      -moz-osx-font-smoothing: grayscale;
}

.navbar-brand img {
    height: 68px;
}

.nav-link {
    color: #1b1b1b !important;
    padding: 8px 16px !important;
    position: relative;
    font-size: 20px; /* Increase font size for navigation links */
    font-weight: 300; /* Light weight for Open Sans */
      -webkit-font-smoothing: antialiased; /* Smoothens font rendering */
      -moz-osx-font-smoothing: grayscale;
}
.navbar-nav .nav-link {
    font-size: 17px; /* Increase font size for navigation links */
    font-weight: 300; /* Light weight for Open Sans */
      -webkit-font-smoothing: antialiased; /* Smoothens font rendering */
      -moz-osx-font-smoothing: grayscale;
}

.nav-link:hover {
    color: #2E75B6 !important;
}

.nav-link.active {
    color: #2E75B6 !important;
}

.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    padding: 20px;
    width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #6366f1;
    margin-top: 0;
    margin-left: 20px; /* Adds space to the left */
    margin-right: 20px; /* Adds space to the right */
}


.mega-dropdown-menu .dropdown-header {
    font-size: 18px;
    color: #333;
    padding: 10px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 10px;
}

.mega-dropdown-menu .dropdown-item {
    padding: 8px 0;
    color: #666;
    font-weight: 400;
    border-bottom: 1px solid #f8f9fa;
}

.mega-dropdown-menu .dropdown-item:hover {
    color: #666;
    background-color: transparent;
}
.mega-dropdown-menu {
    min-width: 600px;
    padding: 20px;
}
.mega-dropdown-menu .dropdown-column {
    padding: 10px 20px;
}
.mega-dropdown-menu h6 {
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}
.mega-dropdown-menu a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 5px 0;
}
.mega-dropdown-menu a:hover {
    text-decoration: underline;
}

.dropdown-column {
    padding: 0 20px;
}

@media (max-width: 991px) {
    .mega-dropdown-menu {
        padding: 10px;
    }
    
    .dropdown-column {
        padding: 0;
        margin-bottom: 20px;
    }
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-selector img {
    width: 20px;
    margin-right: 5px;
}
/* -------- */

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.navbar-nav .dropdown-menu h6 {
    font-size: 1rem; /* Increase font size of headings */
    color: #000;
    margin-bottom: 15px;
    border-left: 4px solid #ffc107; /* Add a yellow left border */
    padding-left: 10px;
}
.navbar-nav .dropdown-item {
    font-size: 0.9rem; /* Slightly increase font size */
    color: #333;
}
.navbar-nav .dropdown-menu .list-unstyled {
    padding-left: 0;
}

.navbar-nav .dropdown-menu .col-md-6 {
    padding-right: 15px;
}
/* --------------------- */
/* General Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 117px !important;
    right: 0px;
    width: 80%;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 20px;
    background-color: #fff;
}


/* Heading Styles */
.navbar-nav .dropdown-menu h6 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

/* Item Styling */
.navbar-nav .dropdown-menu .dropdown-item {
    font-size: 0.95rem;
    color: #333;
    padding: 5px 10px;
}

/* Heading Styles */
.navbar-nav .dropdown-menu h6 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

/* Item Styling */
.navbar-nav .dropdown-menu .dropdown-item {
    font-size: 0.95rem;
    color: #333;
    padding: 5px 10px;
}

/* Column Spacing */
.navbar-nav .dropdown-menu .col-md-4 {
    padding-right: 15px;
}

/* Adjust Individual Menu Items */
.navbar-nav .dropdown-menu {
    min-width: unset; /* Remove static width */
    padding: 20px; /* Add some padding for better spacing */
}

.custom-dropdown-menu {
    position: absolute;
    left: 0 !important;
    transform: none !important;
}

.nav-item.dropdown {
    position: static;
}
.navbar {
    padding: 0;
}

.navbar-nav {
    align-items: center;
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.nav-link {
    padding: 20px 15px !important;
    color: #131313 !important;
}

.nav-item.position-static {
    position: static;
}

.dropdown-menu {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    vertical-align: middle;
}
.navbar {
    padding: 0;
}

.navbar-nav {
    align-items: center;
}

.dropdown-menu {
    border-radius: 0 !important;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}


.dropdown-menu[data-bs-popper] {
    top: 94% !important;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
}
.nav-link {
    padding: 20px 30px !important;
    color: #131313 !important;
}

.nav-item.position-static {
    position: static;
}

.dropdown-menu {
    animation: fadeIn 0.3s ease-in;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    vertical-align: middle;
}
/* ---------------------Application developement----------------------------- */
body {
    background-color: #f8f9fa;
  }
  
  h1 {
    color: #212529;
  }
  

  body {
    background-color: #f8f9fa;
  }
  
  h1 {
    color: #212529;
  }
  
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  
  
 
  .card {
    display: flex;
    flex-direction: column;
  }
 
  .card:nth-child(2) ul {
    margin-bottom: 0 !important; /* Ensures no margin below the list */
  }

  .bg-custom {
    background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.sub-section {
    margin-bottom: 2rem;
}

.sub-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.list-custom {
    padding-left: 1.2rem;
}

.list-custom li {
    margin-bottom: 0.5rem;
}
  /* --------------------------Maintenace service---------------------------------------------------------------- */
  body {
    font-family: Arial, sans-serif;
}

h1 {
    color: #333;
}

h2 {
    color: #111;
}

p {
    color: #555;
}

ul li {
    margin-bottom: 10px;
}
/* -----------------------------------AsFramework-------------------------------------- */
/* Background styling */
.bg-section {
  
    background-image: url('img/p-bg.jpg'); /* Replace with actual background image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
    color: white;
}

h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

hr {
    border-color: #fff;
    opacity: 1;
}

.text-start img,
.text-center img {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.increase-size {
    width: 100%; /* Adjusts the image width to fill the container */
    max-width: 500px; /* Sets a maximum width */
    height: auto; /* Keeps the aspect ratio */
}

.process-section {
    padding: 40px 20px;
    background-color: #f8f9fa; /* Light background for contrast */
  }

  .process-title {
    font-size: 2rem;
    font-weight: bold;
    color: #343a40; /* Dark title color */
    text-align: center;
    margin-bottom: 20px;
  }

  .table-header {
    background-color: #007bff !important; /* Blue background for header */
    color: white; /* White text */
    text-align: center;
  }

  .table td,
  .table th {
    vertical-align: middle;
  }

  /* -----------------------DevOps---------------------------------------------------------------------------- */
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.sub-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.divider {
    width: 80px;
    height: 4px;
    background-color: #007bff; /* Accent color */
    margin: 0.5rem auto;
}
.content-section {
    padding: 2rem 0;
}
.content-section {
    padding: 40px 20px;
    text-align: left;
  }
  .content-section h2 {
    font-size: 28px;
    font-weight: bold;
  }
  .content-section p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
  }
  .image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 20px;
  }
/* --------------------------------mobility------------------------------------------- */

/* Header Styling */
.text-center h5 {
  font-size: 1.1rem;
  color: #6c757d; /* Bootstrap secondary color */
}

/* Left Content Styling */
h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #343a40; /* Dark color for title */
}

p {
  font-size: 1rem;
  color: #555;
}



/* Title Section */
h2 {
    font-size: 2rem;
    color: #007bff; /* Blue color for the heading */
    font-weight: bold;
  }
  
  hr {
    border: none;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  
  /* Description Section */
  p {
    font-size: 1rem;
    color: #6c757d; /* Gray text color */
  }
  

  
  /* Key Features Styling */
  ul.list-group {
    font-size: 1rem;
    color: #555;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .list-group-item {
    padding: 0.75rem 1.25rem;
    border: none; /* Remove list item border */
    background-color: #ffffff; /* White background */
  }
  /* ---------------------------User Experience--------------------------------------------- */
  .user-experience-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.image-container {
    position: relative;
    padding: 1rem;
}

.experience-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .image-container {
        margin-top: 2rem;
    }
}

 /* Domain-Specific Classes */
 .domain-expertise-section { /* Represents the entire domain-expertise/banner section */
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .domain-expertise-image { /* For the image element in the domain-expertise section */
    width: 100%;
    height: auto;
  }
  .domain-expertise-overlay { /* Overlay container for text */
    position: absolute;
    top: 5%;
    left: 1%;
    color: black;
    text-align: left;
    padding: auto;
    
  }
  .domain-expertise-title { /* For the main title text */
    font-size: 17;
    font-weight: 600;
    margin-bottom: 10px;
    color: #01498d;
  }
  .domain-expertise-subtitle { /* For any subtitle or description */
    font-size: 16px;
    font-weight: 400;
    color: black;
    font-family: "Open Sans", sans-serif;
  }
  .card img {
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }

  /* Clear filter on hover */
  .card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05); /* Optional: Add slight zoom effect */
  }

  /* Optional: Add a box shadow for hover effect */
  .card:hover {
    box-shadow: 0 4px 15px rgba(114, 138, 189, 0.397);
    transition: box-shadow 0.3s ease;
  }