/* Navbar for all pages */
/* Basic styling for the navigation bar */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-y: scroll;
    overflow-x: hidden !important;
    /* Enable vertical scrolling */
    height: 100%;
    /* Ensure the body takes up full height */
    max-width: 100%;
}

/* General Navigation Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    position: relative;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    /* Ensure links are visible by default */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    color: black;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #b9c4c3;
    border-radius: 5px;
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

#service-tab:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px;
    /* white-space: nowrap; */
}

.dropdown a {
    color: black;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    /* Hidden in larger screens */
    cursor: pointer;
    font-size: 24px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Show toggle on smaller screens */
    }

    .nav-links {
        display: none;
        /* Hide links by default in mobile view */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
        /* Show links when toggle is clicked */
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .dropdown {
        position: static;
        box-shadow: none;
    }
}

/* Dropdown menu */
.dropdown {
    display: none;
    /* Hide dropdown by default */
    position: absolute;
    top: 100%;
    /* Position dropdown below parent */
    left: 0;
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Dropdown item styling */
.dropdown li {
    width: 100%;
    /* Ensure items take up the full width */
    padding: 10px;
    /* Add spacing around each item */
    box-sizing: border-box;
    /* Include padding in width calculations */
}

/* Mobile: Toggle the menu to show 3 dots */
.menu-toggle {
    display: none;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide the navigation links by default */
        flex-direction: column;
        /* Stack the links vertically */
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        /* Adjust to position below logo */
        left: 0;
        background-color: white;
    }

    .nav-links.open {
        display: flex;
        /* Show the navigation links when menu is open */
    }

    .menu-toggle {
        display: none;
        cursor: pointer;
        width: 30px;
        /* Adjust the size of the menu icon */
        height: 30px;

        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    /* Media query for mobile screens */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
            /* Show the menu icon on mobile screens */
        }
    }


    .dropdown {
        position: static;
        /* Adjust dropdown for mobile screens */
        width: 100%;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        /* Ensure menu items fill the screen */
    }

    .nav-links a {
        padding: 10px;
        width: 100%;
        display: block;
    }
}

/* For larger screens (above 768px), show normal navigation */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
        /* Hide the 3 dots menu toggle on larger screens */
    }
}

/* Show dropdown when hovering over the Services link */
#service-tab:hover .dropdown {
    display: block;
}


/* Hover effect for links */
.nav-links a:hover {
    background-color: #b9c4c3;
    border-radius: 5px;
}

/* Dropdown menu */
.dropdown {
    display: none;
    /* Hide dropdown by default */
    position: absolute;
    top: 100%;
    /* Position dropdown below parent */
    left: 0;
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Dropdown item styling */
.dropdown li {
    width: 100%;
    /* Ensure items take up the full width */
    padding: 10px;
    /* Add spacing around each item */
    box-sizing: border-box;
    /* Include padding in width calculations */
}

/* Mobile: Toggle the menu to show 3 dots */
.menu-toggle {
    display: none;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide the navigation links by default */
        flex-direction: column;
        /* Stack the links vertically */
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        /* Adjust to position below logo */
        left: 0;
        background-color: white;
    }

    .nav-links.open {
        display: flex;
        /* Show the navigation links when menu is open */
    }

    .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }

    /* .menu-toggle:before {} */

    .dropdown {
        position: static;
        /* Adjust dropdown for mobile screens */
        width: 100%;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        /* Ensure menu items fill the screen */
    }

    .nav-links a {
        padding: 10px;
        width: 100%;
        display: block;
    }
}

/* For larger screens (above 768px), show normal navigation */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
        /* Hide the 3 dots menu toggle on larger screens */
    }
}

/* Dropdown menu */
.dropdown {
    display: none;
    /* Hide dropdown by default */
    position: absolute;
    top: 100%;
    /* Position dropdown below parent */
    left: 0;
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* .dropdown li {
    width: 200px;
} */
.dropdown li {
    width: 100%;
    /* Ensure items take up the full width */
    padding: 10px;
    /* Add spacing around each item */
    box-sizing: border-box;
    /* Include padding in width calculations */
}

/* .dropdown a {
    color: white;
    padding: 10px;
} */
.dropdown li a {
    display: block;
    /* Make links block-level so they take up the full line */
    text-decoration: none;
    color: white;
}

.dropdown a:hover {
    background-color: #ada6a6;
}

/* Show dropdown when parent is hovered */
.nav-links li:hover .dropdown {
    display: block;
}

/* Starting of Home Page Styles _index */
/* Navbar for all Pages*/
/* Image Slider Styling For Home Page Index */
/* Slider container styling */
/* .slider-index {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
} */
.slider-index {
    position: relative;
    width: 100%;
    max-width: 100% !important;
    height: 100vh;
    overflow: hidden;
}

.slides-index {
    width: 100%;
    height: 100%;
}

.slideindex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideindex.active {
    opacity: 1;
}

.slideindex video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    /* Places the video behind the caption */
}

/* General Responsiveness for Slider */
@media (max-width: 1400px) {
    .slider-index {
        height: 500px;
        /* Adjust slider height */
    }
}

@media (max-width: 768px) {
    .slider-index {
        max-width: 100%;
        margin: 10px auto;
        height: 480px;
        /* Further reduce slider height */
    }

    .slideindex video {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .slider-index {
        max-width: 100%;
        margin: 15px auto;
        height: 320px;
        /* Compact height for small screens */
    }

    .slideindex video {
        border-radius: 4px;
    }
}

/* Caption Styling */
.caption-index {
    position: absolute;
    bottom: 5%;
    left: 10%;
    right: 10%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    max-width: 80%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Text Styling */
.caption-index h1 {
    margin: 0;
    font-size: calc(1.5rem + 0.3vw);
    /* Dynamic font size for heading */
    font-family: 'sans-serif';
}

.caption-index p {
    margin: 0.5rem 0 0;
    font-size: calc(1rem + 0.2vw);
    /* Dynamic font size for paragraphs */
    line-height: 1.5;
    font-family: 'sans-serif';
}

/* Tablet Responsiveness (768px and below) */
@media (max-width: 768px) {
    .caption-index {
        bottom: 5%;
        justify-content: center;
        left: 5%;
        right: 5%;
        padding: 0.8rem;
        max-width: 90%;
    }

    .caption-index h1 {
        font-size: 1.4rem;
        /* Slightly smaller heading */
    }

    .caption-index p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Mobile Responsiveness (480px and below) */
@media (max-width: 480px) {
    .caption-index {
        bottom: 5%;
        justify-content: center;
        left: 3%;
        right: 3%;
        padding: 0.7rem;
        max-width: 95%;
    }

    .caption-index h1 {
        font-size: 0.8rem;
        /* Adjust for smaller screens */
    }

    .caption-index p {
        font-size: 0.6rem;
        line-height: 1.2;
    }
}

/* Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .slider-index {
        height: 600px;
        /* Larger slider height */
    }

    .caption-index {
        bottom: 5%;
        left: 10%;
        right: 10%;
    }

    .caption-index h1 {
        font-size: 2rem;
    }

    .caption-index p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

/* Image Slider Styling For Home Page Index*/

/* Scrolling bar container for home page index*/
.scrolling-bar {
    background-color: white;
    /* 12% opacity */
    padding: 10px 0;
    overflow: hidden;
    /* Hide overflow for smooth scrolling */
    margin-top: 0px;
    /* Add space above the bar */
}

/* Scrolling images container */
.scrolling-images {
    display: flex;
    animation: scroll-left 22s linear infinite;
    /* Scroll animation */
}

/* Images in the bar */
.scrolling-images img {
    width: 100px;
    /* Set a fixed width for each image */
    height: 100px;
    /* Set a fixed height for each image */
    margin: 0 10px;
    /* Add spacing between images */
    border-radius: 10px;
    /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Add shadow for effect */
}

.scrolling-images:hover {
    animation-play-state: paused;
    /* Pause the animation on hover */
}

/* Keyframes for scrolling animation */
@keyframes scroll-left {
    0% {
        transform: translateX(40%);
    }

    100% {
        transform: translateX(-40%);
    }
}

/* Container for the single image bar */
.single-image-bar {
    background-color: #c0eefa;
    /* Light gray background for the bar */
    text-align: center;
    /* Center the image horizontally */
    padding: 20px 0;
    /* Add vertical padding */
    margin-top: 5px;
    /* Add space above the bar */
}

/* Title styling (text above the image) */
.bar-title {
    font-size: 28px;
    /* Larger font for the title */
    font-weight: bold;
    /* Make the title bold */
    margin: 0 0 10px 0;
    /* Add spacing below the title */
    color: #333;
    /* Dark text color */
}

/* Styling the single image */
.single-image-bar img {
    max-width: 60%;
    /* Make the image responsive */
    height: auto;
    /* Maintain the image's aspect ratio */
    border-radius: 10px;
    /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Add a shadow effect */
}

/* Subtitle styling (text below the image) */
.bar-subtitle {
    font-size: 20px;
    /* Slightly smaller font for the subtitle */
    margin: 10px 0 0 0;
    /* Add spacing above the subtitle */
    color: #555;
    /* Slightly lighter text color */
}

/* Container for the cards bar */
.cards-bar-index {
    display: flex;
    justify-content: space-around;
    /* Evenly distribute the cards */
    background-color: white;
    /* Light background color for the bar */
    padding: 10px 0;
    /* Add padding inside the bar */
    margin-top: 5px;
    /* Add space above the bar */
    flex-wrap: wrap;
    /* Allow wrapping of cards */
}

/* Individual card styling */
.card-index {
    background-color: rgba(118, 118, 128, 0.27);
    /* 12% opacity */
    border: 1px solid #ddd;
    /* Light border around the card */
    border-radius: 10px;
    /* Rounded corners for the card */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow effect */
    width: 22%;
    /* Set card width to fit 4 cards in a row */
    text-align: center;
    /* Center align the content */
    padding: 15px;
    /* Add padding inside the card */
    transition: transform 0.3s, box-shadow 0.3s;
    /* Smooth hover effect */
    margin-bottom: 20px;
    /* Space between cards */
}

/* Card hover effect */
.card-index:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* Enhance shadow on hover */
}

/* Card image styling */
.card-index img {
    width: 100%;
    /* Make the image fill the card's width */
    height: 200px;
    /* Adjust height for a balanced appearance */
    object-fit: cover;
    /* Ensure the image covers the area without distortion */
    border-radius: 10px;
    /* Match the card's rounded corners */
    margin-bottom: 10px;
    /* Space below the image */
}

/* Card title styling */
.card-title-index {
    font-size: 18px;
    /* Font size for the title */
    font-weight: bold;
    /* Bold text for the title */
    margin: 10px 0;
    /* Spacing around the title */
    color: #333;
    /* Dark text color */
    font-family: 'sans-serif';
}

/* Card description styling */
.card-description-index {
    font-size: 16px;
    /* Smaller font for the description */
    color: #555;
    /* Slightly lighter text color */
    line-height: 1.5;
    /* Better readability */
    text-align: justify;
    /* Align text to justify */
    font-family: 'sans-serif';
}

/* Styling for the "Mindpik" text inside the card bar */
.card-bar-title {
    text-align: center;
    /* Center-align the text */
    font-size: 30px;
    /* Set font size */
    font-weight: bold;
    /* Make the text bold */
    color: #194391;
    /* Set text color */
    margin-bottom: 20px;
    /* Space below the text */
    font-family: 'sans-serif';
}

/* Responsive Design */
@media (max-width: 1264px) {
    .card-index {
        width: 35%;
        /* Reduce width for medium screens (2 cards per row) */
    }
}

@media (max-width: 1024px) {
    .card-index {
        width: 35%;
        /* Reduce width for medium screens (2 cards per row) */
    }
}

@media (max-width: 768px) {
    .card-index {
        width: 100%;
        /* Stack cards vertically on smaller screens */
        margin-bottom: 15px;
        /* Adjust spacing between cards */
    }
}

@media (max-width: 480px) {
    .card-index {
        width: 100%;
        /* Full width cards on very small screens */
        margin-bottom: 10px;
        /* Less space between stacked cards */
    }

    .card-bar-title {
        font-size: 24px;
        /* Adjust title font size for smaller screens */
    }
}

/* Container for the image and description */
.image-container-index {
    position: relative;
    display: inline-block;
}

/* Styling for the images */
.image-container-index img {
    width: 300px;
    /* Fit the card's width */
    height: 300px;
    /* Set a fixed height */
    border-radius: 10px;
}

/* Hidden description overlay */
.image-description-index {
    position: absolute;
    bottom: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.7);  */
    color: white;
    padding: 10px;
    text-align: justify;
    font-size: 16px;
    border-radius: 0 0 10px 10px;
    /* Match the image's border radius */
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
    /* Smooth fade-in/out effect */
    font-family: 'sans-serif';
    height: 100%;
    /* Cover the image */
    display: flex;
    justify-content: ceter;
    align-items: center;
    text-align: justify;
    visibility: hidden;
    /* Ensure it doesn't take up space */
}

/* Show description on hover */
.image-container-index:hover .image-description-index {
    opacity: 1;
    /* Fully visible */
    visibility: visible;
    /* Make it appear */
}

/* Learn More */
.learn-more-btn {
    display: inline-block;
    /* Make the button a block-level element */
    margin: 15px auto 0;
    /* Centers the button and adds top margin */
    padding: 10px 25px;
    background-color: #194391;
    color: ghostwhite;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Learn More */

/* Enquiry Now */
.enquiry-now-btn {
    display: inline-block;
    /* Make the button a block-level element */
    margin: 15px auto 0;
    /* Centers the button and adds top margin */
    padding: 10px 25px;
    background-color: limegreen;
    color: ghostwhite;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Enquiry Now */

/* About Us section on Home Page -index */
/* Styling for the new bar */
.new-bar {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    background-color: #231171;
    margin: 0;
}

/* Left Side: Image Styling */
.new-bar-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.new-bar-left img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

/* Right Side: Text Styling */
.new-bar-right {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.new-bar-right h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.new-bar-right p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Mindpik is Tailored to Give Effective Solution section on Home Page - Styling for .new-bar-bar */
.new-bar-bar {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    /* background-color: #8ad9f1; */
    background: linear-gradient(90deg, #231171 2%, #8ad9f1 100%);
    margin: 0;
}

/* Left Side: Image Styling */
.new-bar-bar-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.new-bar-bar-left img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

/* Right Side: Text Styling */
.new-bar-bar-right {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.new-bar-bar-right h2 {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
}

.new-bar-bar-right p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Responsive Design */

/* Large Screens (1400px and above) */
@media (min-width: 1400px) {

    .new-bar,
    .new-bar-bar {
        justify-content: center;
        gap: 50px;
    }

    .new-bar-left,
    .new-bar-right,
    .new-bar-bar-left,
    .new-bar-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {

    .new-bar,
    .new-bar-bar {
        flex-wrap: wrap;
        gap: 30px;
    }

    .new-bar-left img,
    .new-bar-bar-left img {
        height: auto;
    }

    .new-bar-right,
    .new-bar-bar-right {
        max-width: 80%;
    }

    .new-bar-right h2,
    .new-bar-bar-right h2 {
        font-size: 22px;
    }

    .new-bar-right p,
    .new-bar-bar-right p {
        font-size: 15px;
    }
}

/* Small Screens (768px and below) */
@media (max-width: 768px) {

    .new-bar,
    .new-bar-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .new-bar-left,
    .new-bar-right,
    .new-bar-bar-left,
    .new-bar-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .new-bar-left img,
    .new-bar-bar-left img {
        max-width: 100%;
    }

    .new-bar-right h2,
    .new-bar-bar-right h2 {
        font-size: 20px;
    }

    .new-bar-right p,
    .new-bar-bar-right p {
        font-size: 14px;
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {

    .new-bar,
    .new-bar-bar {
        padding: 10px;
        gap: 10px;
    }

    .new-bar-left img,
    .new-bar-bar-left img {
        max-width: 100%;
        height: auto;
    }

    .new-bar-right h2,
    .new-bar-bar-right h2 {
        font-size: 18px;
    }

    .new-bar-right p,
    .new-bar-bar-right p {
        font-size: 14px;
    }
}

/* Start Styling for the GIS bar */
.gis-bar {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    background: linear-gradient(2deg, #063A65 2%, #DBBEFF 100%);
    margin: 0;
}

/* Left side: Image styling */
.gis-bar-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.gis-bar-left img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

.gis-bar-right {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

/* Heading styling */
.gis-bar-right h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

/* Right side: Paragraph styling */
.gis-bar-right p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Styling for the list items */
li {
    color: white;
    font-family: 'sans-serif';
    font-size: 16px;
    margin-bottom: 8px;
    /* Add spacing between list items */
}

/* Responsive Adjustments */
/* Large Screens (1400px and above) */
@media (min-width: 1400px) {

    .gis-bar {
        justify-content: center;
        gap: 50px;
    }

    .gis-bar-left,
    .gis-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {

    .gis-bar {
        flex-wrap: wrap;
        gap: 30px;
    }

    .gis-bar-left img {
        height: auto;
    }

    .gis-bar-right {
        max-width: 80%;
    }

    .gis-bar-right h2 {
        font-size: 22px;
    }

    .gis-bar-right p {
        font-size: 15px;
    }
}

/* Small Screens (768px and below) */
@media (max-width: 768px) {

    .gis-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .gis-bar-left,
    .gis-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .gis-bar-left img {
        max-width: 100%;
    }

    .gis-bar-right h2 {
        font-size: 20px;
    }

    .gis-bar-right p {
        font-size: 14px;
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {

    .gis-bar {
        padding: 10px;
        gap: 10px;
    }

    .gis-bar-left img {
        max-width: 100%;
        height: auto;
    }

    .gis-bar-right h2 {
        font-size: 18px;
    }

    .gis-bar-right p {
        font-size: 14px;
    }
}

/* End Styling for the GIS bar */
/* Who bar Styling For Home Page _index */
/* Who Bar Styling */
.who-bar-index {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    background: linear-gradient(2deg, #063A65 2%, #DBBEFF 100%);
    margin: 0;
}

/* Left Side: Text Content */
.who-bar-left-index {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.who-bar-left-index h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.who-bar-left-index p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image Content */
.who-bar-right-index {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.who-bar-right-index img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .who-bar-index {
        justify-content: center;
        gap: 50px;
    }

    .who-bar-left-index,
    .who-bar-right-index {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .who-bar-index {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .who-bar-right-index img {
        height: auto;
    }

    .who-bar-right-index {
        max-width: 80%;
    }

    .who-bar-left-index h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .who-bar-left-index p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .who-bar-index {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .who-bar-left-index,
    .who-bar-right-index {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .who-bar-right-index img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .who-bar-left-index h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .who-bar-left-index p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .who-bar-index {
        padding: 10px;
        gap: 10px;
    }

    .who-bar-right-index img {
        max-width: 100%;
        height: auto;
    }

    .who-bar-left-index h2 {
        font-size: 18px;
    }

    .who-bar-left-index p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */

/* Who bar Styling For Home Page _index */

/* Styling for the new bar */
.list-bar {
    display: flex;
    /* Use flexbox to arrange list items horizontally */
    justify-content: space-between;
    /* Space out the list items evenly */
    padding: 20px;
    /* Padding around the bar */
    background: linear-gradient(2deg, #063A65 2%, #DBBEFF 100%);
    /* Light background color for the who bar */
    margin: 0px 0;
    /* Space above and below the bar */
}

/* Styling for each list item */
.list-item {

    border-radius: 10px;
    /* Rounded corners */
    padding: 15px;
    /* Padding inside the list item */
    width: 30%;
    /* Each item takes 30% of the bar's width */
    text-align: center;
    /* Center the content inside the list item */
    position: relative;
    /* Positioning context for dropdown */

}

/* Different background colors for each item */
.item-1 {
    background: linear-gradient(to top left, #e6f5f6 0%, #ff9999 100%);
}

.item-2 {
    background: linear-gradient(to top left, #e6f5f6 0%, #ff9999 100%);
}

.item-3 {
    background: linear-gradient(to top left, #e6f5f6 0%, #ff9999 100%);
}

/* List Title */
.list-title {
    font-size: 16px;
    /* font-weight: bold; */
    margin-bottom: 10px;
    font-family: 'sans-serif';
}

/* Container for the cards bar */
.cards-bar-bar {
    display: flex;
    justify-content: space-around;
    /* Evenly distribute the cards */
    background-color: white;
    /* Light background color for the bar */
    padding: 20px 0;
    /* Add padding inside the bar */
    margin-top: 5px;
    /* Add space above the bar */
}

/* Individual card styling */
.cards {
    background: linear-gradient(to top left, #87ecf3 0%, #668fe2 100%);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50%;
    height: 250px;
    /* Set a fixed smaller height */
    text-align: center;
    padding: 20px;
    /* Adjust padding for spacing */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Card hover effect */
.cards:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* Enhance shadow on hover */
}

/* Card image styling */
.cards img {
    width: 100px;
    /* Set the width of the image */
    height: 100px;
    /* Set the height of the image */
    border-radius: 50%;
    /* Create a circular shape */
    margin-bottom: 10px;
    /* Space below the image */
    object-fit: cover;
    /* Ensure the image covers the circle without distortion */
}

/* Card title styling */
.cards-title {
    font-size: 18px;
    /* Font size for the title */
    font-weight: bold;
    /* Bold text for the title */
    margin: 10px 0;
    /* Spacing around the title */
    color: black;
    /* Dark text color */
}

/* Card description styling */
.cards-description {
    font-size: 16px;
    /* Smaller font for the description */
    color: black;
    /* Slightly lighter text color */
    line-height: 1.5;
    /* Better readability */
    text-align: justify;
    /* Align text to justify */
    font-family: 'sans-serif';
}

/* Styling for the "Mindpik" text inside the card bar */
.cards-bar-title {
    text-align: center;
    /* Center-align the text */
    font-size: 30px;
    /* Set font size */
    font-weight: bold;
    /* Make the text bold */
    color: #194391;
    /* Set text color to red */
    margin-bottom: 20px;
    /* Space below the text */
    font-family: 'sans-serif';
}

.cards-bar-text-text-text {
    background-color: rgba(118, 118, 128, 0.27);
    /* 12% opacity */
    padding: 20px;
    /* Optional: Adds padding around the content */
}

.cards-bar-title-title-title {
    text-align: center;
    /* Center-align the text */
    font-size: 25px;
    /* Set font size */
    font-weight: bold;
    /* Make the text bold */
    color: #194391;
    /* Set text color to red */
    margin-bottom: 0px;
    /* Space below the text */
    font-family: 'sans-serif';
}

/* Mindpik Falls Different and Excellent From Others */

.design-container {
    position: relative;
    width: 90%;
    height: 350px;
    /* Set a fixed height to match the card heights */
    margin: 0 auto;
    /* Center the container */
}

/* Cards */
.design-card {
    position: absolute;
    /* Absolute positioning for overlapping effect */
    top: 0;
    left: 0;
    /* Start all cards from the same left position */
    width: 35%;
    padding: 35px;
    border-radius: 0 140px 140px 0;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.design-card p {
    /* Base styles */
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.5;
    justify-content: center;
    color: ghostwhite;
    margin: 0;
    padding: 1rem;

    /* Responsive adjustments */
    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 480px) {
        font-size: 12px;
        padding: 0.8rem;
    }
}

.design-card p {
    /* Base styles */
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.0;
    justify-content: flex-start;
    color: ghostwhite;
    margin: 0;
    padding: 0.5rem;

    /* Responsive adjustments */
    @media (max-width: 1400px) {
        font-size: 16px;
    }

    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 480px) {
        font-size: 12px;
        padding: 0.8rem;
    }
}

/* Individual Card Backgrounds */
.design-card-1 {
    background: linear-gradient(45deg, #062c72 35%, #3883A9 65%);
    z-index: 3;
    left: 0;
    /* Higher z-index so it appears on top */
}

.design-card-2 {
    background: linear-gradient(45deg, #062c72 35%, #436A95 65%);
    left: 30%;
    /* Slight offset for overlapping */
    z-index: 2;
}

.design-card-3 {
    background: linear-gradient(45deg, #062c72 35%, #056DA0 65%);
    left: 60%;
    /* Slight offset for overlapping */
    z-index: 1;
}

/* Individual Card Backgrounds */
/* .design-card-1 {
    background-color: #056DA0;
    z-index: 3;
    left: 0;
    Higher z-index so it appears on top
}

.design-card-2 {
    background-color: #3883A9;
    left: 30%;
    Slight offset for overlapping
    z-index: 2;
}

.design-card-3 {
    background-color: #436A95;
    left: 60%;
    Slight offset for overlapping
    z-index: 1;
} */

/* Card Content */
.design-card .design-icon {
    width: 100px;
    height: 100px;
    background: orange;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.design-card .design-icon img {
    width: 60%;
    height: 60%;
}

.design-card h3 {
    font-size: 18px;
    color: orange;
    margin-bottom: 10px;
}

.design-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .design-container {
        height: 400px;
    }
}

@media (max-width: 1264px) {
    .design-container {
        height: auto;
        /* Let the height adapt to content */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .design-card {
        position: static;
        /* Remove absolute positioning */
        width: 100%;
        margin-bottom: 20px;
        padding: 18px;
        border-radius: 20px;
    }

    .design-card .design-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
    }

    .design-card h3 {
        font-size: 16px;
        /* Adjusted for smaller screens */
    }

    .design-card p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .design-container {
        height: auto;
        /* Let the height adapt to content */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .design-card {
        position: static;
        /* Remove absolute positioning */
        width: 100%;
        margin-bottom: 20px;
        padding: 18px;
        border-radius: 20px;
    }

    .design-card .design-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
    }

    .design-card h3 {
        font-size: 16px;
        /* Adjusted for smaller screens */
    }

    .design-card p {
        font-size: 14px;
        line-height: 1.4;
        padding: 0.5rem;
    }
}

/* Mobile Screen Breakpoint */
@media (max-width: 480px) {
    .design-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        /* Optional padding for spacing */
    }

    .design-card {
        position: static;
        width: 90%;
        /* Full width for smaller screens */
        margin-bottom: 15px;
        padding: 16px;
        border-radius: 20px;
    }

    .design-card .design-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .design-card h3 {
        font-size: 16px;
        /* Adjusted for smaller screens */
    }

    .design-card p {
        font-size: 12px;
        line-height: 1.4;
        padding: 0.5rem;
    }
}

/* Mindpik Falls Different and Excellent From Others */

/* Chatbot Widget Styling Starts Here */
#chatbot-container {
    position: fixed;
    bottom: 70px;
    /* Adjusted for spacing between toggle and chatbot */
    right: 10px;
    width: 350px;
    display: none;
    flex-direction: column;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* Ensuring the chatbot widget appears above other elements */
}

#chat-header {
    background: #0078d7;
    color: #fff;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-header h3 {
    margin: 0;
    font-size: 16px;
}

#close-chatbot {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
}

#close-chatbot:hover {
    color: #ffcccc;
}

/* Chatbox Styling */
#chatbox {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

/* Responsiveness for Chatbox */
@media (max-width: 1024px) {
    #chatbox {
        height: 250px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    #chatbox {
        height: 200px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    #chatbox {
        height: 150px;
        padding: 5px;
    }

    /* Adjust chatbot for small screens */
    #chatbot-container {
        width: 90%;
        right: 5%;
        /* Center the widget */
        bottom: 80px;
        /* Adjust bottom to avoid overlap with the toggle button */
    }
}

/* Message Styling */
.user-message,
.bot-message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

.user-message {
    background-color: #f1f1f1;
    text-align: right;
}

.bot-message {
    background-color: #e7f3ff;
}

.bot-message button {
    margin-top: 5px;
    padding: 5px 10px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.bot-message button:hover {
    background: #1da851;
}

/* Input Container Styling */
#input-container {
    display: flex;
    padding: 10px;
    background: #f9f9f9;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    margin-left: 10px;
    padding: 10px 15px;
    background: #0078d7;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #005cbf;
}

/* Toggle Button Styling */
#toggle-chatbot {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #0078d7;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    /* Ensure toggle is above chatbot */
}

#toggle-chatbot:hover {
    background: #005cbf;
}

#toggle-chatbot span {
    font-size: 18px;
}

/* Chatbot Widget Styling Ends Here */
/* Home Page certificate Styles _index */
/* Container for the certificate cards bar */
.certificate-cards-bar-index {
    display: flex;
    justify-content: space-around;
    /* Evenly distribute the cards */
    background-color: white;
    /* Light background color for the bar */
    padding: 10px 0;
    /* Add padding inside the bar */
    margin-top: 5px;
    /* Add space above the bar */
    flex-wrap: wrap;
    /* Allow wrapping of cards */
}

/* Individual card styling */
.certificate-card-index {
    background-color: rgb(207 207 213 / 27%);
    /* background-color: rgba(118, 118, 128, 0.27); */
    /* 12% opacity */
    border: 1px solid #ddd;
    /* Light border around the card */
    border-radius: 10px;
    /* Rounded corners for the card */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Center align the content */
    padding: 20px;
    /* Add padding inside the card */
    transition: transform 0.3s, box-shadow 0.3s;
    /* Smooth hover effect */
    margin-bottom: 20px;
    /* Space between cards */
}

/* Card hover effect */
.certificate-card-index:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* Enhance shadow on hover */
}

/* Card image styling */
.certificate-card-index img {
    width: 100px;
    /* Make the image fill the card's width */
    height: 100px;
    /* Adjust height for a balanced appearance */
    object-fit: contain;
    /* Ensure the image covers the area without distortion */
    border-radius: 10px;
    /* Match the card's rounded corners */
    margin-bottom: 10px;
    /* Space below the image */
}

.certificate-image-container-index {
    position: relative;
    display: inline-block;
}

/* Styling for the images */
/* .certificate-image-container-index img {
            width: 100px;
            height: 100px;
            border-radius: 10px;
        } */

/* Styling for the images */
.certificate-image-container-index img {
    /* width: 250px; */
    width: 225px;
    /* Fit the card's width */
    height: 150px;
    /* Set a fixed height */
    border-radius: 10px;
}

/* Show description on hover */
.certificate-image-container-index:hover {
    opacity: 1;
    /* Fully visible */
    visibility: visible;
    /* Make it appear */
}

@media (min-width: 1600px) {

    /* Card image styling */
    .certificate-card-index img {
        width: 125px;
        /* Make the image fill the card's width */
        height: 125px;
        /* Adjust height for a balanced appearance */
        object-fit: contain;
        /* Ensure the image covers the area without distortion */
        border-radius: 10px;
        /* Match the card's rounded corners */
        margin-bottom: 10px;
        /* Space below the image */
    }

    .certificate-image-container-index {
        position: relative;
        display: inline-block;
    }

    /* Styling for the images */
    .certificate-image-container-index img {
        width: 125px;
        /* Fit the card's width */
        height: 125px;
        /* Set a fixed height */
        border-radius: 10px;
    }
}

@media (min-width: 2400px) {

    /* Card image styling */
    .certificate-card-index img {
        width: 200px;
        /* Make the image fill the card's width */
        height: 200px;
        /* Adjust height for a balanced appearance */
        object-fit: contain;
        /* Ensure the image covers the area without distortion */
        border-radius: 10px;
        /* Match the card's rounded corners */
        margin-bottom: 10px;
        /* Space below the image */
    }

    .certificate-image-container-index {
        position: relative;
        display: inline-block;
    }

    /* Styling for the images */
    .certificate-image-container-index img {
        width: 200px;
        /* Fit the card's width */
        height: 200px;
        /* Set a fixed height */
        border-radius: 10px;
    }
}

/* Home Page certificate Styles _index End */
/* Home Page case studies Styles _index Start */
/* Main section styling */
.case-studies-section {
    padding: 60px 20px;
    background: linear-gradient(90deg, midnightblue 25%, maroon 75%);
}

.case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: ghostwhite;
    margin-bottom: 20px;
    font-family: 'sans-serif';
}

/* Grid for cards */
.cards-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Increased gap for better spacing */
    flex-wrap: wrap;
}

/* Individual card styling */
.case-study-card {
    background-color: ghostwhite;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 23%;
    /* Allows four cards per row */
    max-width: 225px;
    text-align: center;
}

/* Image styling */
.case-study-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.case-study-image {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
}

/* Content styling */
.card-headline {
    font-family: 'sans-serif';
    font-size: 1.2rem;
    color: black;
    /* Added color for clarity */
    margin-bottom: 10px;
}

.card-subline {
    font-family: 'sans-serif';
    font-size: 0.9rem;
    color: black;
    /* Added color for clarity */
    margin-bottom: 10px;
}

.card-text {
    font-family: 'sans-serif';
    font-size: 0.8rem;
    color: black;
    /* Added color for clarity */
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: inherit;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .case-study-card {
        flex-basis: 45%;
        /* Two cards per row on tablets */
    }
}

@media (max-width: 768px) {
    .case-study-card {
        flex-basis: 45%;
        /* Two cards per row on tablets */
    }
}

@media (max-width: 480px) {
    .cards-grid {
        gap: 20px;
    }

    .case-study-card {
        flex-basis: 100%;
        /* One card per row on mobile */
    }
}

/* Home Page case studies Styles _index End */
/* FAQ Section Styling on Home Page _index*/
.faq-section {
    margin: 0;
    font-family: 'sans-serif';
    background-color: rgba(0, 122, 255, 0.12);
    padding: 20px 10px;
}

/* FAQ Title Styling */
.faq-title {
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #194391;
    text-decoration: underline;
}

/* FAQ Item Styling */
.faq-item {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    max-width: 800px;
}

/* FAQ Question Styling */
.faq-question {
    width: 100%;
    padding: 15px;
    /* background-color: #6fcfff; */
    background: linear-gradient(45deg, maroon 45%, midnightblue 35%);
    text-align: justify;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    box-sizing: border-box;
    /* transition: background-color 0.3s ease; */
}

.faq-question.active {
    /* background-color: #007bff; */
    /* Darker blue for active state */
    color: white;
}

/* FAQ Answer Styling */
.faq-answer {
    display: none;
    width: 100%;
    padding: 15px;
    justify-content: center;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Arrow Styling */
.arrow {
    font-size: 20px;
    font-weight: bold;
    color: ghostwhite;
    /* color: #194391; */
    transition: transform 0.3s ease;
}

.arrow.open {
    transform: rotate(180deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-item {
        width: 80%;
    }

    .faq-question,
    .faq-answer {
        font-size: 14px;
    }

    .arrow {
        font-size: 18px;
    }
}

/*End FAQ Section Styling on Home Page _index*/

/* Styling for the who bar */
.gray-bar {
    background-color: rgba(118, 118, 128, 0.27);
    /* 12% opacity */
    padding: 10px;
    /* Add some padding around the bar */
    text-align: left;
    /* Align text to the left */
    color: white;
    /* White text color */
    font-size: 18px;
    /* Font size for the text */
    font-weight: bold;
    /* Make the text bold */
}

/* Home Page Technology Styles _index */
.technology-bar-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #194391;
    margin-bottom: 20px;
    font-family: 'sans-serif';
}

.technology-bar-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Default grid for large screens (1201px and above) */
.image-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* 8 images per row */
    gap: 50px;
    /* Space between the images */
}

.image-box {
    width: 100px;
    /* Adjust the size of the box */
    /* Let the box take full column width */
    aspect-ratio: 1 / 1;
    height: 100px;
    background-color: #b3d7ff;
    /* Light gray background */
    display: flex;
    flex-direction: column;
    /* Stack image and text vertically */
    justify-content: center;
    align-items: center;
    /* Optional: Slightly rounded corners */
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* Soft shadow */
    box-shadow: 0 0 10px rgba(4, 31, 150, 0.726);
}

.image-grid img {
    width: 80%;
    /* Adjust the size of the square */
    height: 80%;
    /* object-fit: cover;  */
    object-fit: contain;
    /* Maintain image aspect ratio */
    /* border: 1px solid rgb(231, 221, 221);  */
    border-radius: 1px;
    /* Optional: Slightly round the corners */
}

/* Responsive Design */

/* For large screens (1025px — 1200px): 8 images per row */
@media (max-width: 1200px) {
    .image-grid {
        grid-template-columns: repeat(8, 1fr);
        /* 8 images per row */
        gap: 40px;
        /* Slightly reduce the gap */
    }
}

/* For laptops and tablets (769px — 1024px): 6 images per row */
@media (max-width: 1024px) {
    .image-grid {
        grid-template-columns: repeat(6, 1fr);
        /* 6 images per row */
        gap: 30px;
    }
}

/* For mobile devices (481px — 768px): 3 images per row */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 images per row */
        gap: 20px;
        /* Reduce the gap for smaller screens */
    }

    .image-box {
        aspect-ratio: 1 / 1;
        /* Maintain square shape */
    }
}

/* For small mobile devices (320px — 480px): 3 images per row */
@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 images per row */
        gap: 10px;
    }
}

/* Home Page Technology Styles _index */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 5px;
    /* Space between icons */
    margin-top: 10px;
    /* Space above icons */
}

.social-icons a {
    text-decoration: none;
    color: #555;
    /* Default icon color */
    font-size: 24px;
    /* Adjust icon size */
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
    /* Hover color (blue) */
}

.icon-box {
    width: 30px;
    /* Adjust box size */
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    /* Background color for the box */
    border: 1px solid #1a1919;
    /* Border around the box */
    border-radius: 10px;
    /* Optional: Rounded corners for the box */
    transition: background-color 0.3s, border-color 0.3s;
}

.cards-bar-text-text2 {
    text-align: center;
    margin-bottom: 30px;
}

.cards-bar-title2 {
    font-size: 2.2em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'sans-serif';
}

.cards-bar-bar2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card2 {
    width: 315px;
    background-color: #266c9d;
    color: white;
    text-align: center;
    padding: 60px 20px 30px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 50% 50% 0 0 / 50% 50% 0 0;
    transform: rotate(90deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-content2 {
    transform: rotate(-90deg);
}

.card-icon2 {
    width: 100px;
    height: 100px;
    background-color: #ffcc00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-icon2 img {
    width: 50px;
    height: 50px;
}

.card-title2 {
    font-size: 1.4em;
    color: #ffcc00;
    margin-bottom: 15px;
    font-weight: bold;
}

.card-desc2 {
    font-size: 1em;
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .card2 {
        width: 300px;
        transform: rotate(0);
        border-radius: 12px;
    }

    .card-content2 {
        transform: rotate(0);
    }

    .card2:not(:first-child) {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .cards-bar-bar2 {
        flex-direction: column;
        align-items: center;
    }

    .card2 {
        width: 80%;
        margin-left: 0;
        transform: rotate(0);
    }

    .card-content2 {
        transform: rotate(0);
    }
}

/* /////////////End//Of//Home//Page//Styling//Index///////////// */
/* Starting of About Us Page,Services Page,Career Page Styles */
/* Default Styling for Desktop */
.blue-bar {
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    padding: 10px 20px;
    text-align: left;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet and Mobile Screens */
@media (max-width: 768px) {
    .blue-bar {
        padding: 15px;
        font-size: 16px;
        text-align: center;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .blue-bar {
        padding: 12px;
        font-size: 14px;
        text-align: center;
        line-height: 1.5;
    }
}

/* Default Styling for Desktop */
.white-bar {
    background-color: white;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for desktop */
    gap: 20px;
    max-width: 1600px;
    height: 400px;
    margin: 20px auto;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .white-bar {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
        height: auto;
        /* Let height adjust based on content */
        padding: 15px;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 600px) {
    .white-bar {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
        height: auto;
        /* Auto height for content */
        padding: 10px;
    }
}

/* About Us Styling for About Page _about Start  */
.about-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    margin: 0;
}

/* Left Side: Text */
.about-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.about-bar-left h1 {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-family: 'sans-serif';
    font-size: 25px;
}

.about-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Video */
.about-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.about-bar-right iframe {
    width: 800px;
    height: 400px;
    border-radius: 5px;
}

/* Responsive Adjustments */

/* Larger Screens (1920px and above) */
@media (min-width: 1400px) {
    .about-bar {
        justify-content: center;
        gap: 50px;
    }

    .about-bar-left,
    .about-bar-right {
        max-width: 50%;
    }

    .about-bar-right iframe {
        width: 100%;
        height: 100%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .about-bar {
        justify-content: center;
        gap: 50px;
    }

    /* .about-bar-left,
    .about-bar-right {
        max-width: 40%;
    } */
}

/* Small Screens (768px and below) */
@media (max-width: 768px) {
    .about-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .about-bar-left,
    .about-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-bar-right iframe {
        width: 100%;
        height: 100%;
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {
    .about-bar {
        padding: 10px;
        gap: 10px;
    }

    .about-bar-left,
    .about-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-bar-right iframe {
        width: 100%;
        height: auto;
    }
}

/* About Us Styling for About Page _about End  */

/* Who Bar Styling for About Page _about Start  */

.who-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #231171;
    margin: 0;

}

/* Left Side: Text */
.who-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.who-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.who-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.who-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.who-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .who-bar {
        justify-content: center;
        gap: 50px;
    }

    .who-bar-left,
    .who-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .who-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .who-bar-right {
        max-width: 80%;
    }

    .career-bar-right img {
        height: auto;
    }

    .who-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .who-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .who-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .who-bar-left,
    .who-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .who-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .who-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .who-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .who-bar {
        padding: 10px;
        gap: 10px;
    }

    .who-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .who-bar-left h2 {
        font-size: 18px;
    }

    .who-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Who Bar Styling for About Page _about End  */
/* Card Styling for About Page _about Start  */
.card-about {
    background: linear-gradient(to bottom, #4f06a9 0%, #ae82e4 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'sans-serif';
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.card-about:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-about img {
    max-width: 100%;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card-about:hover img {
    transform: scale(1.05);
}

.card-about h3 {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    font-family: 'sans-serif';
    font-size: 24px;
    color: ghostwhite;
    margin-bottom: 10px;
}

.card-about p {
    text-align: justify;
    font-family: 'sans-serif';
    font-size: 14px;
    color: ghostwhite;
    margin: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Styling for About Page _about End  */
/* Why Bar Styling for About Page _about Start  */
.why-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #570ADC;
    margin: 0;
}

/* Left Side: Text */
.why-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.why-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.why-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.why-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.why-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive Adjustments */


/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .why-bar {
        justify-content: center;
        gap: 50px;
    }

    .why-bar-left,
    .why-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .why-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .why-bar-right {
        max-width: 80%;
    }

    .why-bar-right img {
        height: auto;
    }

    .why-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .why-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .why-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .why-bar-left,
    .why-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .why-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .why-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .why-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .why-bar {
        padding: 10px;
        gap: 10px;
    }

    .why-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .why-bar-left h2 {
        font-size: 18px;
    }

    .why-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Why Bar Styling for About Page _about End */

/* Styling for the web bar */
/* Web Bar Styling for Services Page _about Start  */
.web-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    margin: 0;
}

/* Left Side: Text */
.web-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.web-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.web-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.web-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.web-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .web-bar {
        justify-content: center;
        gap: 50px;
    }

    .web-bar-left,
    .web-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .web-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .web-bar-right {
        max-width: 80%;
    }

    .web-bar-right img {
        height: auto;
        height: 400px;
    }

    .web-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .web-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .web-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .web-bar-left,
    .web-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .web-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .web-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .web-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .web-bar {
        padding: 10px;
        gap: 10px;
    }

    .web-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .web-bar-left h2 {
        font-size: 18px;
    }

    .web-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Web Bar Styling for Services Page _about End  */
/* Web Bar Styling for Service Page Start  */
.web2-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: white;
    margin: 0;
}

/* Left Side: Text */
.web2-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.web2-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.web2-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .web2-bar {
        justify-content: center;
        gap: 50px;
    }

    .web2-bar-left {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .web2-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .web2-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .web2-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .web2-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .web2-bar-left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .web2-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .web2-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .web2-bar {
        padding: 10px;
        gap: 10px;
    }

    .web2-bar-left h2 {
        font-size: 18px;
    }

    .web2-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Web Bar Styling for Service Page End  */
/* Project Bar Styling for Services Page _about Start  */

.project-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: white;
    margin: 0;
}

/* Left Side: Text */
.project-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.project-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.project-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.project-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.project-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}


/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .project-bar {
        justify-content: center;
        gap: 50px;
    }

    .project-bar-left,
    .project-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .project-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .project-bar-right {
        max-width: 80%;
    }

    .project-bar-right img {
        height: auto;
        height: 400px;
    }

    .project-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .project-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .project-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .project-bar-left,
    .project-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .project-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .project-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .project-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .project-bar {
        padding: 10px;
        gap: 10px;
    }

    .project-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .project-bar-left h2 {
        font-size: 18px;
    }

    .project-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Project Bar Styling for Services Page _about End  */

/* Software Bar Styling for Services Page _about Start  */
.software-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: white;
    margin: 0;
}

/* Left Side: Text */
.software-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.software-bar-left h1 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.software-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.software-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.software-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .software-bar {
        justify-content: center;
        gap: 50px;
    }

    .software-bar-left,
    .software-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .software-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .software-bar-right {
        max-width: 80%;
    }

    .software-bar-right img {
        /* height: auto; */
        height: 400px;
    }

    .software-bar-left h1 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .software-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .software-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .software-bar-left,
    .software-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .software-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .software-bar-left h1 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .software-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .software-bar {
        padding: 10px;
        gap: 10px;
    }

    .software-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .software-bar-left h1 {
        font-size: 18px;
    }

    .software-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Software Bar Styling for Services Page _about End  */
/* Styling for the who bar */

/* App Bar Styling for Services Page _about Start  */
.app-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: white;
    margin: 0;
}

/* Left Side: Text */
.app-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.app-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.app-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.app-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.app-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .app-bar {
        justify-content: center;
        gap: 50px;
    }

    .app-bar-left,
    .app-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .app-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .app-bar-right {
        max-width: 80%;
    }

    .app-bar-right img {
        height: auto;
        height: 400px;
    }

    .app-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .app-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .app-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .app-bar-left,
    .app-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .app-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .app-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .app-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .app-bar {
        padding: 10px;
        gap: 10px;
    }

    .app-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .app-bar-left h2 {
        font-size: 18px;
    }

    .app-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* App Bar Styling for Services Page _about End  */

/* Geographic Bar Styling for Services Page _about Start  */
.geographic-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    margin: 0;
}

/* Left Side: Text */
.geographic-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.geographic-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: white;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.geographic-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right Side: Image */
.geographic-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.geographic-bar-right img {
    /* width: 800px; */
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .geographic-bar {
        justify-content: center;
        gap: 50px;
    }

    .geographic-bar-left,
    .geographic-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .geographic-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .geographic-bar-right {
        max-width: 80%;
    }

    .geographic-bar-right img {
        /* height: auto; */
        height: 400px;
    }

    .geographic-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .geographic-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .geographic-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .geographic-bar-left,
    .geographic-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .geographic-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .geographic-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .geographic-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .geographic-bar {
        padding: 10px;
        gap: 10px;
    }

    .geographic-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .geographic-bar-left h2 {
        font-size: 18px;
    }

    .geographic-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Geographic Bar Styling for Services Page _about End  */
/* Geographic2 Bar Styling for Services Page _about Start  */
.geographic2-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background: white;
    margin: 0;
}

/* Left Side: Text */
.geographic2-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.geographic2-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

.geographic2-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .geographic2-bar {
        justify-content: center;
        gap: 50px;
    }

    .geographic2-bar-left {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .geographic2-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .geographic2-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .geographic2-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .geographic2-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .geographic2-bar-left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .geographic2-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .geographic2-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }

}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .geographic2-bar {
        padding: 10px;
        gap: 10px;
    }

    .geographic2-bar-left h2 {
        font-size: 18px;
    }

    .geographic2-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Geographic2 Bar Styling for Services Page _about End  */

.white-bar {
    background: white;
    padding: 10px;
    /* Add some padding around the bar */
    text-align: left;
    /* Align text to the left */
    color: white;
    /* White text color */
    font-size: 18px;
    /* Font size for the text */
    font-weight: bold;
    /* Make the text bold */
}

/* Career Page Slider Styles Start */
.slider-career {
    position: relative;
    width: 100%;
    height: 500px;
    /* Default slider height */
    overflow: hidden;
    margin-top: 5px;
}

/* Slides container styling */
.slides-career {
    display: flex;
    transition: transform 1s ease;
    /* Smooth slide transition */
}

.slide-career {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Individual slide styling */
.slide-career img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: auto;
    max-height: auto;
    margin: 0 auto;
}


/* General Responsiveness for Slider */
@media (max-width: 1400px) {
    .slider-career {
        height: 400px;
        /* Adjust slider height */
    }
}

@media (max-width: 768px) {
    .slider-career {
        max-width: 95%;
        margin: 10px auto;
        height: 350px;
        /* Further reduce slider height */
    }

    .slide-career img {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .slider-career {
        max-width: 100%;
        margin: 15px auto;
        height: 300px;
        /* Compact height for small screens */
    }

    .slide-career img {
        border-radius: 4px;
    }
}

.caption-career {
    position: absolute;
    bottom: 5%;
    left: 10%;
    right: 10%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    max-width: 80%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.caption-career h1 {
    margin: 0;
    font-size: calc(1.5rem + 0.3vw);
    /* Dynamic font size for heading */
    font-family: 'sans-serif';
}

.caption-career p {
    margin: 0.5rem 0 0;
    font-size: calc(1rem + 0.2vw);
    /* Dynamic font size for paragraphs */
    line-height: 1.5;
    font-family: 'sans-serif';
}

/* Tablet Responsiveness (768px and below) */
@media (max-width: 768px) {
    .caption-career {
        bottom: 5%;
        justify-content: center;
        left: 5%;
        right: 5%;
        padding: 0.8rem;
        max-width: 90%;
    }

    .caption-career h1 {
        font-size: 1.4rem;
        /* Slightly smaller heading */
    }

    .caption-career p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Mobile Responsiveness (480px and below) */
@media (max-width: 480px) {
    .caption-career {
        bottom: 15%;
        justify-content: center;
        left: 3%;
        right: 3%;
        padding: 0.7rem;
        max-width: 95%;
    }

    .caption-career h1 {
        font-size: 0.8rem;
        /* Adjust for smaller screens */
    }

    .caption-career p {
        font-size: 0.4rem;
        line-height: 1.2;
    }
}

/* Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .slider-career {
        height: 600px;
        /* Larger slider height */
    }

    .caption-career {
        bottom: 5%;
        left: 10%;
        right: 10%;
    }

    .caption-career h1 {
        font-size: 2rem;
    }

    .caption-career p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
}

/* Career Page Slider Styles End */
/* Career Page Built Your Career Now Styles Starts */
.career-bar {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px;
    background-color: white;
    margin: 0;
}

/* Left Side: Text Content */
.career-bar-left {
    flex: 1;
    max-width: 50%;
    text-align: justify;
}

.career-bar-left h2 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    text-align: center;
    margin-bottom: 20px;
}

/* Left side: Paragraph styling for career-bar */
.career-bar-left p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

/* Right side: Image styling for career-bar */

.career-bar-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.career-bar-right img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

/* Right side: Image styling for career-bar */
/* Career Bar Responsive Adjustments */

/* Larger Screens (1400px and above) */
@media (min-width: 1400px) {
    .career-bar {
        justify-content: center;
        gap: 50px;
    }

    .career-bar-left,
    .career-bar-right {
        max-width: 40%;
    }
}

/* Medium Screens (1400px and below) */
@media (max-width: 1400px) {
    .career-bar {
        flex-wrap: wrap;
        /* Ensure wrapping for smaller screens */
        gap: 30px;
        /* Reduce gap for compact layout */
    }

    .career-bar-right img {
        height: auto;
    }

    .career-bar-right {
        max-width: 80%;
    }

    .career-bar-left h2 {
        font-size: 22px;
        /* Adjust heading size */
    }

    .career-bar-left p {
        font-size: 15px;
        /* Slightly smaller font size */
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .career-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px;
    }

    .career-bar-left,
    .career-bar-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .career-bar-right img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .career-bar-left h2 {
        font-size: 20px;
        /* Adjust heading size */
    }

    .career-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Small Phones (480px and below) */
@media (max-width: 480px) {
    .career-bar {
        padding: 10px;
        gap: 10px;
    }

    .career-bar-right img {
        max-width: 100%;
        height: auto;
    }

    .career-bar-left h2 {
        font-size: 18px;
    }

    .career-bar-left p {
        font-size: 14px;
        /* Smaller text size */
    }
}

/* Responsive Adjustments */
/* Career Page Built Your Career Now Styles End */
.career-mindpik-bar-background {
    background: linear-gradient(to bottom, #0066ff 11%, #ffffff 51%);
    /* Light background color for the who bar */
}

.career-mindpik-bar {
    background: linear-gradient(to bottom, #0066ff 11%, #ffffff 51%);
    /* Light background color for the who bar */
    border-radius: 8px;
    padding: 20px;
    margin: 0px auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.career-mindpik-bar h2 {
    text-align: center;
    color: black;
    margin-bottom: 20px;
    font-family: 'sans-serif';
    /* font-size: 16px; */
}

.career-mindpik-form .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: 'sans-serif';
    font-size: 16px;
}

.career-mindpik-form input,
.career-mindpik-form textarea {
    background-color: #f0f0f0;
    /* Light gray background */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    color: #333;
    outline: none;
    flex: 1;
    margin: 0 5px;
    font-family: 'sans-serif';
}

.career-mindpik-form input:focus,
.career-mindpik-form textarea:focus {
    border-color: #007bff;
    /* Highlighted border on focus */
    background-color: #e6e6e6;
    /* Slightly darker gray on focus */
}

.career-mindpik-form button {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    flex: 1;
    margin: 0 5px;
    font-family: 'sans-serif';
}

.career-mindpik-form textarea {
    resize: none;
    height: 100px;
    width: 75%;
    /* Increased width */
    flex: 3;
    /* Takes more space */
}

.career-mindpik-form button {
    background-color: rgb(52, 209, 52);
    color: black;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 5px 10px;
    /* Smaller height and width */
    font-size: 14px;
    /* Adjusted font size */
    flex: 0.5;
    /* Takes less space */
    margin-left: 10px;
    /* Adds space between the textarea and button */
}

.form-row {
    display: flex;
    flex-direction: column;
    /* Stack the input fields vertically */
    gap: 10px;
    /* Add space between input fields */
    width: 100%;
    /* Ensure the form-row takes the full width */
    margin-left: 180px;
}

.form-row input {
    width: 100%;
    /* Make inputs span the full width of the container */
    max-width: 400px;
    /* Optionally set a maximum width */
    padding: 10px;
    /* Add padding for better appearance */
    font-size: 16px;
    /* Set font size for inputs */
    border: 1px solid #ccc;
    /* Add border to inputs */
    border-radius: 4px;
    /* Add rounded corners */
    box-sizing: border-box;
    /* Include padding and border in width calculation */
}

.form-row input:focus {
    border-color: #007BFF;
    /* Highlight border on focus */
    outline: none;
    /* Remove default focus outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    /* Add a subtle shadow */
}

.form-group {
    display: flex;
    /* Enable Flexbox for alignment */
    align-items: center;
    /* Vertically center label and textarea */
    gap: 10px;
    /* Space between label and textarea */
}

.form-group label {
    color: black;
    /* Label color */
    font-weight: bold;
    /* Make label text bold */
    width: 80px;
    /* Set a fixed width for label */
    text-align: right;
    /* Align label text to the right */
}

.form-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    /* Reduced width of the textarea */
    resize: none;
    /* Prevent resizing if not needed */
}

.form-group textarea:focus {
    border-color: #007BFF;
    /* Highlight on focus */
    outline: none;
}

.button-group {
    /* display: flex; */
    gap: 10px;
    /* Space between buttons */
}

/* Center the button container */
.button-container {
    display: flex;
    justify-content: center;
    /* Align buttons horizontally in the center */
    gap: 20px;
    /* Space between buttons */
    margin-top: 20px;
    /* Optional: Space above the buttons */
}

/* Make sure the buttons maintain their style */
#attachment-button,
#submit-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        /* Stack the buttons vertically on mobile */
        gap: 10px;
        /* Reduce the gap between buttons for mobile */
    }

    /* Optional: Adjust button sizes on mobile */
    #attachment-button,
    #submit-button {
        width: 80%;
        /* Make buttons take up 80% of the screen width */
        font-size: 14px;
        /* Slightly smaller font size on mobile */
    }
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.btn-attachment {
    background-color: #28a745;
    /* Green color for the attachment button */
}

.btn-attachment:hover {
    background-color: #218838;
    /* Darker green on hover */
}

.grey-bar {
    background-color: rgba(118, 118, 128, 0.27);
    /* 12% opacity */
    padding: 10px;
    /* Add some padding around the bar */
    text-align: left;
    /* Align text to the left */
    color: white;
    /* White text color */
    font-size: 18px;
    /* Font size for the text */
    font-weight: bold;
    /* Make the text bold */
}

/* Main navigation bar */

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
    height: 60px;
}

/* Navigation Links */
.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s;
    font-family: 'sans-serif';
}

.nav-links a:hover {
    background-color: #b9c4c3;
    border-radius: 5px;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
        margin: 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* breadcrumbs start */
.breadcrumb {
    display: none;
}

/* Make sure breadcrumbs appear BELOW the navbar */
nav[aria-label="breadcrumb"] {
    display: none;
}

/* breadcrumbs end */
.blue-bar {
    background: linear-gradient(to bottom, #2F0576 11%, #9900ff 89%);
    padding: 10px;
    /* Add some padding around the bar */
    text-align: left;
    /* Align text to the left */
    color: white;
    /* White text color */
    font-size: 18px;
    /* Font size for the text */
    font-weight: bold;
    /* Make the text bold */
}

.career-mindpik-bar-background {
    background: linear-gradient(to bottom, #0066ff 11%, #ffffff 51%);
    /* Light background color for the who bar */
}

.career-mindpik-bar {
    background: linear-gradient(to bottom, #0066ff 11%, #ffffff 51%);
    /* Light background color for the who bar */
    border-radius: 8px;
    padding: 20px;
    margin: 0px auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.career-mindpik-bar h2 {
    text-align: center;
    color: black;
    margin-bottom: 20px;
    font-family: 'sans-serif';
    /* font-size: 16px; */
}

.career-mindpik-form .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: 'sans-serif';
    font-size: 16px;
}

.career-mindpik-form input,
.career-mindpik-form textarea {
    background-color: #f0f0f0;
    /* Light gray background */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    color: #333;
    outline: none;
    flex: 1;
    margin: 0 5px;
    font-family: 'sans-serif';
}

.career-mindpik-form input:focus,
.career-mindpik-form textarea:focus {
    border-color: #007bff;
    /* Highlighted border on focus */
    background-color: #e6e6e6;
    /* Slightly darker gray on focus */
}

/* Default styling for the input */
.responsive-input {
    width: 80%;
    padding: 5px;
    box-sizing: border-box;
    /* Ensures padding doesn't affect the width */
    font-size: 16px;
}

/* Mobile responsiveness (for screens smaller than 768px) */
@media (max-width: 768px) {
    .responsive-input {
        width: 80%;
        /* Make the input take up the full width */
        padding: 10px;
        /* Adjust padding for easier typing on mobile */
        font-size: 14px;
        /* Adjust font size for smaller screens */
    }
}

.career-mindpik-form button {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    flex: 1;
    margin: 0 5px;
    font-family: 'sans-serif';
}

.career-mindpik-form textarea {
    resize: none;
    height: 100px;
    width: 75%;
    /* Increased width */
    flex: 3;
    /* Takes more space */
}

.career-mindpik-form button {
    background-color: rgb(52, 209, 52);
    color: black;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 5px 10px;
    /* Smaller height and width */
    font-size: 14px;
    /* Adjusted font size */
    flex: 0.5;
    /* Takes less space */
    margin-left: 10px;
    /* Adds space between the textarea and button */
}

.form-row {
    display: flex;
    flex-direction: column;
    /* Stack the input fields vertically */
    gap: 10px;
    /* Add space between input fields */
    width: 100%;
    /* Ensure the form-row takes the full width */
    margin-left: 180px;
}

.form-row input {
    width: 100%;
    /* Make inputs span the full width of the container */
    max-width: 400px;
    /* Optionally set a maximum width */
    padding: 10px;
    /* Add padding for better appearance */
    font-size: 16px;
    /* Set font size for inputs */
    border: 1px solid #ccc;
    /* Add border to inputs */
    border-radius: 4px;
    /* Add rounded corners */
    box-sizing: border-box;
    /* Include padding and border in width calculation */
}

.form-row input:focus {
    border-color: #007BFF;
    /* Highlight border on focus */
    outline: none;
    /* Remove default focus outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    /* Add a subtle shadow */
}

.form-group {
    display: flex;
    /* Enable Flexbox for alignment */
    align-items: center;
    /* Vertically center label and textarea */
    gap: 10px;
    /* Space between label and textarea */
}

.form-group label {
    color: black;
    /* Label color */
    font-weight: bold;
    /* Make label text bold */
    width: 80px;
    /* Set a fixed width for label */
    text-align: right;
    /* Align label text to the right */
}

.form-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    /* Reduced width of the textarea */
    resize: none;
    /* Prevent resizing if not needed */
}

.form-group textarea:focus {
    border-color: #007BFF;
    /* Highlight on focus */
    outline: none;
}

.button-group {
    /* display: flex; */
    gap: 10px;
    /* Space between buttons */
}

/* Center the button container */
.button-container {
    display: flex;
    justify-content: center;
    /* Align buttons horizontally in the center */
    gap: 20px;
    /* Space between buttons */
    margin-top: 20px;
    /* Optional: Space above the buttons */
}

/* Make sure the buttons maintain their style */
#attachment-button,
#submit-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        /* Stack the buttons vertically on mobile */
        gap: 10px;
        /* Reduce the gap between buttons for mobile */
    }

    /* Optional: Adjust button sizes on mobile */
    #attachment-button,
    #submit-button {
        width: 80%;
        /* Make buttons take up 80% of the screen width */
        font-size: 14px;
        /* Slightly smaller font size on mobile */
    }
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.btn-attachment {
    background-color: #28a745;
    /* Green color for the attachment button */
}

.btn-attachment:hover {
    background-color: #218838;
    /* Darker green on hover */
}

.grey-bar {
    background-color: rgba(118, 118, 128, 0.27);
    /* 12% opacity */
    padding: 10px;
    /* Add some padding around the bar */
    text-align: left;
    /* Align text to the left */
    color: white;
    /* White text color */
    font-size: 18px;
    /* Font size for the text */
    font-weight: bold;
    /* Make the text bold */
}

/* About Us Page,Services Page,Career Page Styles */
/* Service Pages Intro and Extra Styles Start*/
.service-hero {
    position: relative;
    width: 100%;
    max-height: 500px;
    /* adjust */
    overflow: hidden;
}

.service-hero {
    position: relative;
}

.service-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Overlay */
/* Base styles (your existing code kept) */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
    color: white;
}

.service-overlay h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-overlay p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 700px;
}

.service-cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: green;
    color: ghostwhite;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.service-cta-btn:hover {
    background-color: greenyellow;
}

/* =======================================
   Mobile Responsiveness
   ======================================= */

/* Phones (portrait) */
@media (max-width: 575px) {
    .service-overlay {
        padding: 10px;
    }

    .service-overlay h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .service-overlay p {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 90%;
        margin-bottom: 15px;
    }

    .service-cta-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Small Tablets (landscape/portrait) */
@media (min-width: 576px) and (max-width: 767px) {
    .service-overlay h1 {
        font-size: 1.6rem;
    }

    .service-overlay p {
        font-size: 1rem;
        max-width: 85%;
    }

    .service-cta-btn {
        padding: 11px 20px;
        font-size: 1rem;
    }
}

/* Tablets (portrait/landscape) */
@media (min-width: 768px) and (max-width: 991px) {
    .service-overlay h1 {
        font-size: 1.8rem;
    }

    .service-overlay p {
        font-size: 1.05rem;
        max-width: 80%;
    }

    .service-cta-btn {
        padding: 12px 22px;
        font-size: 1rem;
    }
}

/* Overlay */

.service-intro {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: white;
    margin: 0;
}

.service-intro h1 {
    font-weight: bold;
    text-decoration: underline;
    color: black;
    font-size: 25px;
    font-family: 'sans-serif';
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 15px;
    line-height: 1.6;
    color: black;
    margin: 10px 0;
    font-family: 'sans-serif';
    text-align: justify;
}

.service-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Two-column layout */
.service-column {
    flex: 1;
    min-width: 300px;
}

/* Headings */
.service-column h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
    text-align: left;
}

/* Feature grid */
.service-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-feature-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1.5;
}

.service-feature-item:hover {
    transform: translateY(-4px);
}

/* Why Choose Us cards */
.service-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-why-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1.5;
}

.service-why-item:hover {
    transform: translateY(-4px);
}

/* Responsive Breakpoints */

/* Tablets */
@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Laptops and above */
@media (min-width: 992px) {
    .service-container {
        flex-wrap: nowrap;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .service-why-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Pages Intro and Extra Styles End*/
/* Contact Page Styles */
/* General reset */
/* General reset for the contact form section */
.contact-bar * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background gradient */
.contact-bar-background {
    /* background: linear-gradient(2deg, #063A65 2%, #DBBEFF 100%); */
    background: linear-gradient(180deg, midnightblue 50%, maroon 100%);
    padding: 20px 10px;
}

/* Contact bar container */
.contact-bar {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Contact tagline */
.contact-tagline h1 {
    text-align: center;
    color: ghostwhite;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'sans-serif';
}

/* Contact tagline */
/* Contact subtext */
.contact-subtext h1 {
    text-align: center;
    color: ghostwhite;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'sans-serif';
}

/* Contact subtext */

/* Heading styling */
.contact-bar h1 {
    text-align: center;
    color: #063A65;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'sans-serif';
}

/* Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Input and textarea styling */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    background-color: #f9f9f9;
}

/* Textarea specific styling */
.contact-form textarea {
    resize: none;
    height: 120px;
}

/* Button styling */
.contact-form button {
    margin: 0 auto;
    /* Center the button */
    width: 50%;
    /* Reduce the width of the button */
    padding: 12px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: #218838;
}

/* Success message styling */
#success-message {
    margin-top: 15px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    display: none;
}

/* Responsive Design */

/* Tablets and smaller devices */
@media (max-width: 768px) {
    .contact-bar {
        padding: 15px;
    }

    .contact-bar h1 {
        font-size: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
    }

    .contact-form button {
        padding: 10px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .contact-bar h1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .contact-form button {
        padding: 10px;
        font-size: 16px;
    }
}

/* Location Bar and Map Styling Start */
/* Primary Location bar styling */
.primary-location-bar {
    background-color: white;
    color: black;
    padding: 30px 20px;
    text-align: center;
    margin-top: 0px;
    font-family: 'sans-serif';
    animation: fadeIn 1s ease-in-out;
}

.primary-location-bar h2 {
    margin: 0;
    font-size: 24px;
}

.location-logo {
    margin-top: 10px;
    font-size: 40px;
    color: white;
    animation: slideIn 1s ease-in-out;
}

/* Icon styling for the logo */
.location-logo i {
    font-size: 50px;
    color: red;
    transition: transform 0.3s ease;
}

/* Hover effect for the icon */
.location-logo i:hover {
    transform: scale(1.1);
}

/* Map container styling */
.map-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0px auto;
    padding-left: 24px;
    padding-right: 24px;
    animation: fadeIn 1s ease-in-out;
}

.map {
    flex: 1;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: zoomIn 1s ease-in-out;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

/* Hide the attribution text */
.leaflet-control-attribution {
    display: none;
}

.gray-bar {
    background-color: rgba(118, 118, 128, 0.27);
    padding: 10px;
    text-align: left;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsiveness for mobile and smaller devices */
@media (max-width: 768px) {

    /* Adjust padding for smaller screens */
    .primary-location-bar {
        padding: 20px 10px;
    }

    /* Adjust logo font size for smaller screens */
    .location-logo {
        font-size: 30px;
    }

    .location-logo i {
        font-size: 40px;
    }

    /* Adjust map container to stack vertically on smaller screens */
    .map-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust map height for smaller screens */
    .map {
        height: 350px;
        /* Reduce the height on smaller screens */
        margin-bottom: 20px;
    }

    #map {
        height: 400px;
        /* Reduce height for better view on smaller screens */
    }

    .gray-bar {
        font-size: 16px;
        padding: 8px;
        /* Reduce padding and font size */
    }
}

/* Responsiveness for very small screens */
@media (max-width: 480px) {

    /* Further adjustments for smaller screens */
    .primary-location-bar {
        padding: 15px 5px;
    }

    .primary-location-bar h2 {
        font-size: 20px;
        /* Smaller font size for the heading */
    }

    .location-logo {
        font-size: 25px;
    }

    .location-logo i {
        font-size: 35px;
    }

    .map-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .map {
        height: 300px;
        /* Further reduce height */
    }

    #map {
        height: 350px;
    }

    .gray-bar {
        font-size: 14px;
        padding: 6px;
    }
}

/* Location Bar and Map Styling End */
/* Contact Page Styles */
/* Footer */
/* ---------------- Base Styles ---------------- */
.pre-pre-footer-bar {
    /* background: linear-gradient(to top left, #6600cc 0%, #9933ff 100%); */
    background: linear-gradient(to top left, #0b0856 0%, #2514d5 100%);
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'sans-serif';
}

/* Column Styling */
.pre-pre-footer-bar-column {
    width: 18%;
    /* Set width of each column to 18% (adjust for larger screens) */
    padding: 0px;
    /* Add padding inside each column */
    box-sizing: border-box;
    /* Include padding in the column width */
    text-align: center;
    /* Center the content inside each column */
    border-radius: 5px;
    /* Optional: Rounded corners for each column */
    color: white;
    /* Text color inside columns */
    font-family: 'sans-serif';
}

/* ---------------- Icon & Text Styling ---------------- */
.location-container,
.net-container,
.call-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Icon Sizing */
.location-icon,
.net-icon,
.mail-icon,
.call-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Text Entries */
.location-entry,
.net-entry,
.mail-entry,
.call-entry {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-text,
.call-text {
    font-size: 16px;
    color: white;
}

.location-address,
.net-entry p,
.mail-entry p,
.call-entry p {
    margin: 0;
    font-size: 14px;
    word-break: break-word;
    text-align: justify;
}

/* ---------------- Hover Effects ---------------- */
.net-entry p:hover,
.mail-entry p:hover {
    text-decoration: underline;
    cursor: pointer;
}

.call-entry p:hover {
    color: #28a745;
    text-decoration: underline;
}

/* ---------------- Tablet View (≤ 992px) ---------------- */
@media (max-width: 992px) {
    .pre-pre-footer-bar-column {
        width: 45%;
    }

    .location-icon,
    .net-icon,
    .mail-icon,
    .call-icon {
        width: 20px;
        height: 20px;
    }

    .location-text,
    .call-text,
    .location-address,
    .net-entry p,
    .mail-entry p,
    .call-entry p {
        font-size: 13px;
    }
}

/* ---------------- Mobile View (≤ 600px) ---------------- */
@media (max-width: 600px) {
    .pre-pre-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pre-pre-footer-bar-column {
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }

    .location-icon,
    .net-icon,
    .mail-icon,
    .call-icon {
        width: 18px;
        height: 18px;
    }

    .location-text,
    .call-text,
    .location-address,
    .net-entry p,
    .mail-entry p,
    .call-entry p {
        font-size: 12px;
    }
}

.mail-entry-text {
    color: white;
}

/* Optional: Add some hover effect for the columns */
/* .pre-pre-footer-bar-column:hover {
background-color: #d89c00; 
} */

/* Footer Bar Styling */
.footer-bar {
    /* background: linear-gradient(to top left, #6600cc 0%, #9933ff 100%); */
    background: linear-gradient(to top left, #0b0856 0%, #2514d5 100%);
    color: #fff;
    /* White text for footer */
    padding: 10px 20px;
    /* Padding around the footer */
    display: flex;
    /* Enable flexbox for footer layout */
    justify-content: center;
    /* Center the content horizontally */
    align-items: center;
    /* Vertically center the items */
    flex-wrap: wrap;
    /* Ensure layout wraps on small screens */
    margin-top: 0;
    /* Remove top margin */
    font-family: 'sans-serif';

}

.footer-content {
    text-align: center;
    /* Center the content within the footer-content div */
}

/* Footer Left Content */
.footer-left {
    margin: 0;
    /* Remove extra margin */
    text-align: center;
    font-size: 14px;
    /* Font size for footer text */
    font-family: 'sans-serif';
}

/* Footer Links (Right Content) */
.footer-links {
    margin: 0;
    /* Remove extra margin */
    text-align: right;
    /* Align the links to the right */
    font-size: 14px;
    /* Font size for links */
}

.footer-links a {
    color: #fff;
    /* White text for the links */
    text-decoration: none;
    /* Remove underline */
    padding-left: 15px;
    /* Add padding between links */
}

.footer-links a:hover {
    text-decoration: underline;
    /* Underline on hover for better visibility */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .pre-footer-bar {
        flex-direction: column;
        /* Stack columns vertically */
        align-items: center;
        /* Center items on smaller screens */
    }

    .pre-footer-column {
        width: 100%;
        /* Full width for each column on small screens */
        text-align: center;
        /* Center align text */
        color: black;
        font-weight: bold;
        /* Apply bold styling */
        font-family: 'sans-serif';
    }

    .footer-bar {
        flex-direction: column;
        /* Stack footer items vertically */
        align-items: center;
        /* Center items */
        text-align: center;
        /* Center text in footer */
    }

    .footer-links {
        margin-top: 10px;
        /* Add space between the footer text and links */
    }
}

/* Default Desktop View */
.pre-footer-bar {
    background: linear-gradient(to bottom, #ffffff 0%, #ccffff 70%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    flex-wrap: wrap;
    gap: 20px;
    /* Added spacing between columns */
}

/* Logo Column */
.logo-column {
    width: 23%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px;
}

.company-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Text Column */
.justified-text {
    text-align: justify;
    padding: 0 10px;
}

/* Pre-footer Column Styling */
.pre-footer-column {
    width: 23%;
    /* Each column takes up approximately a quarter of the width */
    padding: 10px;
    /* Add padding inside each column */
    box-sizing: border-box;
    /* Include padding in width calculation */
    margin-bottom: 20px;
    /* Space between columns */
}

.pre-footer-column h2 {
    font-size: 16px;
    /* Font size for headings */
    margin-bottom: 10px;
    /* Space below the heading */
    color: #333;
    /* Dark heading color */
    font-family: 'sans-serif';
}

.pre-footer-column p,
.pre-footer-column ul {
    font-size: 14px;
    /* Font size for text */
    line-height: 1.6;
    /* Line height for readability */
    color: #007BFF;
    /* Slightly lighter text color */
    font-family: 'sans-serif';
}

.pre-footer-column ul {
    list-style-type: none;
    /* Remove bullet points */
    padding: 0;
    /* Remove default padding */
    list-style-type: disc;
    /* Add bullet points */
}

.pre-footer-column ul li {
    margin-bottom: 5px;
    /* Space between list items */
}

.pre-footer-column ul li a {
    text-decoration: none;
    /* Remove underline for links */
    color: #007BFF;
    /* Link color */
}

.pre-footer-column ul li a:hover {
    text-decoration: underline;
    /* Underline on hover for better visibility */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #555;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff;
}

.icon-box {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border: 1px solid #1a1919;
    border-radius: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

/* Tablets (Screen ≤ 992px) */
@media (max-width: 992px) {

    .logo-column,
    .pre-footer-column {
        width: 48%;
    }

    .company-logo {
        max-height: 70px;
    }
}

/* Mobile Devices (Screen ≤ 600px) */
@media (max-width: 600px) {
    .pre-footer-bar {
        flex-direction: column;
        align-items: center;
    }

    .logo-column,
    .pre-footer-column {
        width: 100%;
        text-align: center;
    }

    .company-logo {
        max-height: 60px;
    }

    .social-icons {
        justify-content: center;
    }

    .icon-box {
        width: 30px;
        height: 30px;
    }

    .pre-footer-column h2 {
        font-size: 14px;
    }

    .pre-footer-column p,
    .pre-footer-column ul {
        font-size: 13px;
    }
}

/* Footer */
/* AOS */
@media (max-width: 576px) {
    [data-aos] {
        transform: none !important;
    }
}

/* AOS */
/* 404 */
.error-container {
    text-align: center;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 5px;
}

.error-container h1 {
    font-size: 5rem;
    color: #007BFF;
}

.error-container p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.error-container a {
    text-decoration: none;
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.error-container a:hover {
    background-color: #1172daef;
}

/* 404 */