    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
        margin: 0;
        font-family: 'Graphik', sans-serif;
    }

    html {
        box-sizing: border-box;
        overflow-x: hidden;
    }

    #carouselExampleIndicators {
        /* margin-top: 9rem; */
        position: relative;
    }

    @media(max-width:900px) {
        #carouselExampleIndicators {
            /* margin-top: 10rem; */
        }
    }

    .carousel-indicators {
        flex-direction: column;
        position: absolute;
        bottom: 170px;
        margin-left: 5%;
        width: 200px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border: 2px solid #0281A8;
        border-radius: 50%;
        margin: 5px;
    }

    .carousel-indicators .active {
        background-color: #0281A8;
        width: 12px;
        height: 12px;
    }

    /* .carousel-item {
        max-height: 80vh;
        overflow: hidden;
    } */
    .carousel-inner {
        /* max-height: 80vh; */
        height: 27.5rem;
        overflow: hidden;
    }

    @media (max-width: 768px) {
    .carousel-inner {
        height: 17rem;
        object-fit: cover;
    }

    @keyframes blink-black-white {
        0% { color: black; }
        50% { color: white; }
        100% { color: black; }
    }
    
    #refer-colleague-icon2 {
        animation: blink-black-white 1s infinite;
    }
    
    .refer-link {
        animation: blink-black-white 1s infinite;
    }
    
    .containerbanner{
        display: none !important;
    }
    }

    .carousel-item video,
    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-button button img {

        margin: 0 10px;
    }

    .carousel-button button i {

        margin: 0 10px;
    }

    @media (min-width: 768px) {
        .carousel-button {
            margin: 0;
            position: absolute;
            right: 0;
            top: 320px;
            display: flex;
            flex-direction: column;
            width: 350px;
        }
    

        .carousel-button span {
            font-size: 18px;
        }

        .carousel-button button {
            margin-bottom: 0.5rem;
            border-radius: 30px 0 0 30px;
            color: white;
            background-color: #0281A8;
            padding: 0.7rem 2rem;
            border: none;
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .carousel-button {
            /* margin-top: 1rem; */
            display: flex;
            flex-direction: column;
            width: 100% !important;
        }

        .carousel-button button {
            text-align: left;
            color: white;
            background-color: #0281A8;
            padding: 0.7rem 2rem;
            border: none;
            border-bottom: 1px solid white;
        }
    }

    /* navbar */
    .navbar hr {
        margin: 0.5rem 0;
        width: 100%;
        height: 0.5px;
        color: rgb(173, 173, 173);
    }

    .navbar .container-fluid {
        justify-content: space-between;
    }

    .btn-close-white {
        color: white;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        color: #0281A8;
    }

    .navbar .dropdown-menu {
        border-top: 5px solid #0281A8;
    }

    .navbar .dropdown-menu li {
        padding: 5px 10px;
    }

    .navbar .dropdown-menu li a {
        position: relative;
        transition: color 0.3s, background-color 0.3s;
    }

    .navbar .dropdown-menu li:hover a {
        background-color: white;
        color: black;
    }

    .navbar .lg-nav li a,
    .under a {
        position: relative;
    }

    .navbar .dropdown-menu li a::after,
    .navbar .lg-nav li a::after,
    .under a::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background-color: #0281A8;
        transform: scaleX(0);
        transition: transform 0.3s;
    }

/* Original hover effect */
.navbar .dropdown-menu li:hover a::after,
.navbar .lg-nav li:hover a::after,
li.under:hover a::after {
    transform: scaleX(1);
}

/* Remove the pseudo-element from the WhatsApp button */
.navbar .lg-nav li.no-transform a::after {
    content: none;
}
/* Hover effect for submenu links */
#whatsapp-dropdown a:hover {
    background-color: #e3f5e2; /* Light background color */
    color: #25D366; /* Change text color */
}

#whatsapp-dropdown a:hover i,#whatsapp-dropdown a:hover span {
    color: #25D366;
  /* Change icon color */
}


    .heading {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .top-row {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .top-row li a,
    .container-fluid li a {
        color: black;
        padding: 10px;
    }

    .navbar-nav .dropdown-menu {
        position: absolute;
        width: 12rem;
    }

    nav .nav-link.show {
        color: #0281A8;
    }

    .top-row ul.heading {
        width: 100%;
    }


    .mega-menu .row {
        display: flex;
        flex-wrap: wrap; /* Allow columns to wrap to the next line */
    }
    
    .mega-menu .col {
        width: 25%; /* Set each column width to 25% for 4 columns in a row */
        min-width: 200px; /* Minimum width for each column to prevent collapsing */
        box-sizing: border-box; /* Include padding and border in the element's total width */
        padding: 10px; /* Add some padding for better spacing */
    }
    
    .mega-title {
        margin-top: 0; /* Remove default margin for the title */
        margin-bottom: 10px; /* Add some spacing below the title */
    }
    
    /* Adjustments for smaller screens */
    @media (max-width: 1200px) {
        .mega-menu .col {
        width: 33.33%; /* Change to 3 columns on medium screens */
        }
    }

    .navbar {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Apply box-shadow instead of border-bottom */
    }
    
   
    @media (max-width: 992px) {
        .mega-menu .col {
        width: 50%; /* Change to 2 columns on smaller screens */
        }
    }
    
    @media (max-width: 768px) {
        .mega-menu .col {
        width: 100%; /* Stack columns on mobile */
        }
    }
    
    /* Ensures that long list item names wrap correctly */
    .dropdown-item {
        display: block; /* Makes each item a block for proper wrapping */
        white-space: normal; /* Allows text to wrap */
        overflow: hidden; /* Ensures no overflow issues */
    }


    .mega-menu .dropdown-item {
        display: flex; /* Enables flexbox layout for the item */
        align-items: center; /* Vertically centers the icon and text */
        padding: 7px; /* Adds padding around the item */
    }

    .mega-menu .dropdown-item i {
        margin-right: 10px; /* Adjusts the gap between icon and text */
    }

    
    @media(min-width:1200px) {
        .top-row ul.heading {
            width: 75%;
            display: flex;
            justify-content: space-between;
        }
    }

    .navbar-nav .contact {
        display: flex;
        align-items: center;
        color: #0281A8;
    }

    @media(min-width:992px) {
        .fixed-top .container-fluid {
            padding: 0.6rem 50px;
        }
    }

    @media(min-width:1200px) {
        .fixed-top .container-fluid {
            padding: 0.6rem 180px;
        }
    }

    .container-fluid .navbar-brand section span {
        font-size: 25px;
    }

    .container-fluid .navbar-brand section p {
        font-size: 12px;
    }

    @media(max-width:500px) {
        .container-fluid .navbar-brand {
            margin: 0;
            width: 40%;
        }

        .container-fluid .navbar-brand section span {
            font-size: 20px;
        }

        .container-fluid .navbar-brand section p {
            font-size: 8px;
        }
    }

    .container-fluid .navbar-brand {
        padding: 0;
        display: flex !important;
        align-items: flex-start;
    }

    .navbar li {
        font-size: medium;
    }


    .container-fluid li {
        font-weight: 500;
    }

    .navbar-toggler {
        border: none;
        color: #0281A8;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .offcanvas {
        background-color: #0281A8;
        color: white;
    }

    .offcanvas .navbar-nav .nav-link.active,
    .offcanvas .navbar-nav .nav-link.show,
    .offcanvas .navbar-nav .nav-link {
        color: white;
    }


    .offcanvas-body li:hover {
        border-bottom: 2px solid white;
    }

    .offcanvas.offcanvas-end {
        width: 25%;
    }

    .offcanvas-header button.btn-close:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

    @media (max-width: 767px) {
        ul.heading {
            display: none;
        }

        .top-row ul {
            display: flex;
            flex-direction: column;
            align-items: end;
            margin-right: 1rem;
        }

        .navbar .container-fluid {
            justify-content: space-between;
            padding: 1rem;
        }

        .offcanvas.offcanvas-end {
            width: 80%;
        }
    }

    @media (max-width: 1200px) {
        .top-row ul {
            width: 100%;
            justify-content: space-around;
        }
    }

    .nav-content {
        display: flex;
    }

    .nav-content .navbar-nav .nav-item {
        margin-right: 25px;
    }

    .footer-section {
        background: #0281A8;
        position: relative;
    }

    .footer-cta {
        border-bottom: 1px solid #373636;
    }

    .single-cta i {
        color: #0281A8;
        font-size: 30px;
        float: left;
        margin-top: 8px;
    }

    .cta-text {
        padding-left: 15px;
        display: inline-block;
    }

    .cta-text h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .cta-text span {
        color: #757575;
        font-size: 15px;
    }

    .footer-content {
        position: relative;
        z-index: 2;
    }

    .footer-pattern img {
        position: absolute;
        top: 0;
        left: 0;
        height: 330px;
        background-size: cover;
        background-position: 100% 100%;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .footer-text p {
        margin-bottom: 14px;
        font-size: 14px;
        color: white;
        line-height: 28px;
    }

    .footer-social-icon span {
        color: black;
        display: block;
        font-size: 20px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 20px;
    }

    .footer-social-icon a {
        color: #fff;
        font-size: 16px;
        margin-right: 15px;
    }

    .footer-social-icon a:hover {
        color: #b6b4b4;
    }

    .footer-social-icon i {
        height: 50px;
        width: 50px;
        text-align: center;
        line-height: 38px;
        border-radius: 50%;
    }

    .footer-social-icon svg {
        width: 50px;
    }

    /* .facebook-bg {
        background: #3B5998;
    }

    .twitter-bg {
        background: #55ACEE;
    }

    .google-bg {
        background: #51c7ee;
    }

    .fa-linkedin-in {
        background: #55ACEE;
    } */

    .footer-widget-heading h3 {
        color: black;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 40px;
        position: relative;
    }

    .footer-widget-heading h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -15px;
        height: 2px;
        width: 50px;
        background: white;
    }

    .footer-widget ul li {
        display: inline-block;
        float: left;
        width: 100%;
        margin-bottom: 12px;
        font-size: large;
    }

    .footer-widget ul li a:hover {
        color: black;
    }

    .footer-widget ul li a {
        color: white;
        text-transform: capitalize;
    }

    .subscribe-form {
        position: relative;
        overflow: hidden;
    }

    .subscribe-form input {
        width: 100%;
        padding: 14px 28px;
        background: white;
        color: black;
        border: none;
    }

    .subscribe-form button {
        position: absolute;
        right: 0;
        background: black;
        padding: 13px 20px;
        border: 1px solid #0281A8;
        top: 0;
    }

    .subscribe-form button i {
        color: #fff;
        font-size: 22px;
        transform: rotate(-6deg);
    }

    .footer-menu li {
        display: inline-block;
        margin-left: 20px;

    }

    .footer-menu li:hover a {
        color: #0281A8;
    }

    .footer-menu li a {
        font-size: 14px;
        color: #dfd3d3;
    }

    footer hr {
        width: 100%;
        height: 0.5px;
        color: black;
    }

    .copyrights {
        display: flex;
        flex-wrap: wrap;
    }

    .copyrights span {
        margin-right: 2rem;
        color: black;
    }
    .margins-align{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .main-content .nav-pills {
        /* width: 70%; */
        display: flex;
        justify-content: space-between;
    }
    /* @media (max-width: 768px) {
        .carousel-inner {

            height: 15rem;
            object-fit: cover;
        }} */


        
    :root {
        --hover: 0;
        --bg: hsl(0 0% calc(100% - (var(--hover) * 5%))); /* Soft white background */
        --accent: #0281A8; /* Blue accent color */
    }
    .terms-link{
        text-decoration: none !important;
    }
   /* Add Font Family */
/* Apply Helvetica font-family to left-content and right-content */
/* Apply Lato font-family to left-content and right-content */
/* Article Styling */
article {
    font-family: 'OpenSans-Regular', Sans-Serif !important;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr; /* Column layout: 1/3 for image, 2/3 for content, 1/3 for button */
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1400px;
    height: 15rem;
    padding: 1rem;
    background: radial-gradient(circle at top left, var(--accent), transparent 75%), var(--bg);
    border-radius: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* transition: background 0.3s, transform 0.3s ease-in-out; */
}

/* Hover effect for article */
article:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
    background: radial-gradient(circle at top left, var(--accent), transparent 50%), var(--bg); /* More accent focus */
    
}

/* Title Styling */
article h4 {
    font-size: 1.4rem !important;
    text-align: center;
    /* font-weight: bold; */
}
/* Left content (Image) Styling */
.left-content {
    padding: 0 !important; /* Ensures no padding */
    margin: 0 !important;  /* Ensures no margin */
    display: flex;
    align-items: flex-start; /* Align the image to the top */
    justify-content: center;
    position: relative;
    height: 120%; /* Ensures full height usage */
    /* overflow: hidden; */
    transition: transform 0.3s ease; /* Smooth transition for image zoom */
     /* Make sure the image stays above */
}
.zsiq-float {
    background-color: #0281A8 !important;
    width: 50px;
    height: 50px;
}

figure {
    width: 100%; /* Make the figure take up full width */
    height: 100%; /* Ensures figure takes up full height of its container */
    margin: 0;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;

}
/* Hover effect to display the dropdown */

.altered {
    width: 100%;
    height: 100%; /* Ensure the image fully fills the container */
    object-fit: cover; /* Ensures the image covers the container without distortion */
    border-radius: 1.5rem;
    transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

.left-content:hover .altered {
    transform: translateY(-20%) scale(1.1); 
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.5)) /* Main shadow */;

    z-index: 99999;/* Moves and zooms the image up for a 3D effect */
}
article:hover .altered {
    transform: translateY(-20%) scale(1.1);
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.5));
    z-index: 99999;
}

/* Right content (Text) Styling */
.right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.right-content h4 {
    margin: 0;
    /* font-weight: bold; */
    font-size: 1.2rem;
}

/* CTA Button Styling */
article .cta-button-container {
    display: flex;
    justify-content: center;
}

article .cta-button {
    background-color: #FF6500;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s;
}

/* Hover effect for button */
article .cta-button:hover {
    background-color: #ff5400;
    transform: scale(1.05);
}
article:hover .altered {
    transform: translateY(-20%) scale(1.1); /* Moves and zooms the image up for a 3D effect */
    z-index: 99999;
}/* Floating button at the bottom left */
.floating-btn4 {
    position: fixed;
    bottom: 20px; /* Adjust distance from the bottom */
    left: 20px;   /* Adjust distance from the left */
    width: 60px;  /* Set the width of the button */
    height: 60px; /* Set the height of the button */
    background-color: black;  /* Button color */
    border-radius: 50%; /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99999; /* Keep it on top of other elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a slight shadow */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-btn4:hover {
    background-color: #0281A8; /* Change the color on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.floating-btn4 .icon {
    font-size: 24px; /* Icon size */
    color: white; /* Icon color */
}

/* Points container styles remain unchanged */
.points-container {
    display: none; /* Hidden by default */
    position: fixed;
    left: 70px; /* Move points to the right from the button */
    bottom: 20px; /* Align with the floating button */
    transform: translateY(0%);
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    width: 200px;
    max-height: 300px;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.points-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-container ul li {
    margin-bottom: 15px;
}

.points-container ul li a {
    text-decoration: none;
    color: #0281A8;
    font-weight: 500;
    transition: color 0.3s ease;
}

.points-container ul li a:hover {
    color: black;
    font-weight: bolder; /* Darker shade on hover */
}

.points-container.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.points-container:hover {
    transform: translateY(0%) scale(1.05);
}

.points-container ul li:hover {
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .altered {
        width: 100%;
        height: 100%;
    }
    .triangle-btn {
        display: none;
    }


    .left-content {
        /* overflow: hidden; */
    }
    article {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 33rem;
        font: 'Raleway', sans-serif;
    }

    .left-content, .center-content, .right-content {
        width: 100%;
    }

    .left-content {
        margin-bottom: 1rem;
    }

    .center-content h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem;
        font-weight: bolder;
    }

    article .cta-button {
        width: 100%;
        max-width: 200px;
    }
}

    
        /* Styles for submenu items on hover */
.mega-menu .dropdown-item:hover {
    color:#0281A8 ; /* Change this color to your desired hover color */
     /* Optional: Change background color on hover */
     font-weight: bolder;
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

    /* Adjustments for mobile responsiveness */
@media (max-width: 767px) {
    .unique-summary {
        margin-bottom: 0rem; /* Adjust spacing as necessary */
    }
    .left-col, .right-col {
    padding-right: 2rem !important;
       
        /* padding-right: 2rem !important; */
    }
    .right-col {
        width: 100%;
    }
    
.indented {
    margin-left: 20px; 
    margin-right: 20px; 
    width: 90% !important;
    text-align: justify;/* Adjust the value to increase or decrease the gap */
    text-indent: 20px;
}
.toast2{
right: 0px !important; 
}
    .unique p {
 
        padding-top: 1rem;
    }
    .container-fluid .row {
        margin-bottom: 1rem; /* Reduce space between rows */
    }
    .item-7{
        margin-bottom: 10px;
    }
    .work ul li img {
        height: 25px;
        width: 25px;
    }
    /* Ensuring the images are above the text */
    .o-2 {
        order: 1; /* Ensure text appears below the image */
    }

    .col-md-6 {
        display: flex;
        flex-direction: column; /* Stack images and text vertically */
    }
}

    
    @media(max-width:768px) {
        .main-content .nav-pills {
            /* display: flex; */
            justify-content:inherit;
            font-size:14px;
        }
    
    .carousel-item img {
        min-height: 20rem;
    }
    .indented p {
        font-size: 14px;
    }
    .special p {
        font-size: 14px !important;
    }
    .benefits .benefits-content li {
        margin: 10px 0;
        font-size: 15px !important;
    } 
    .padleft p {
        text-indent: 20px; /* Adjust the value as needed */
    }
    .unique-content>p {
        text-align: center;
        font-size: 14px !important;
        font-weight: bolder;
        /* margin-bottom: 2rem; */
    }


    .padleft  {
        text-indent: 20px; /* Adjust the value as needed */
    }
    .carousel-indicators {
        display: none;
    }
    .mbaboutus{
        margin-top: 10px;
    }

    .work .work-content .row>div {
        padding: 0rem !important;
    }
    .view-btn {
        margin-bottom: 2rem;
    }
    .timeline {
        width: 55vw !important;
    }

    .timeline__event__title {
        text-align: unset !important;
    }

    .unique-content .container-fluid .col-12 {
        padding: 0rem !important;
    }
    .cta-button {
        font-size: 14px !important ;
    }

    .unique-topic p {
        font-size: 16px !important;
        text-align: center;
    }
    .unique p {
        font-size: 14px;
    }
    .headers{
        font-size: 15.1px !important;
        margin-bottom: 10px !important;
        margin-top: 20px !important;
        font-weight: bolder !important;
    }

    .publisher2{
        margin-top: 0rem !important;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1) !important; /* Top and bottom shadows */
    }

    .margins-align {
        margin-top: 1rem !important;
    }
    .unique-summary {
        text-align: center;
    }
    .right-content h4 {
        font-size: 1rem !important;
        font-weight: bold;
    }
    article .cta-button {
        margin-bottom: 10px;
        font-size :12px;
    }

    .left-col, .right-col {
            height: auto !important;
    }
    .banner h1{
        margin-left: 10px;
        /* font-weight: bolder; */
    }
    .contact-form {
        width: 100% !important;
        margin-top: 1rem;
    }

    .contact-form input, .contact-form textarea { 
        width: 100% !important;
    }

    .overview-content p{
        margin-top: 1.5rem;
    }

    .main-content h2 span, .gallery h2 span{
        font-size: 24px !important;
    }
 

    .work-topic {
        padding-bottom: 0rem !important; 
    }
    .bigger {
        min-height: 30px;
        min-width: 30px;
    }
    }

    .padleft p {
        text-indent: 20px; /* Adjust the value as needed */
    }


    .padleft  {
        text-indent: 20px; /* Adjust the value as needed */
    }
    
    

    .main-content .navbar {
        width: 100%;
        display: flex;
        justify-content: center;
        box-shadow: 1px 0 4px 1px rgb(177, 175, 175); /* Reduced shadow effect */
    }
    

    @media(max-width:840px) {
        .main-content .navbar {
            /* display: none; */
        }
    }

    .main-content .nav-link {
        color: black;
        font-size: 16px;
    }

    .nav-pills .nav-link.active {
        background-color: #000000; /* Lighter shade of #0281A8 */
        color: white;
        font-weight: bolder;
    }



    .overview,
    .work,
    .benefits,
    .unique,
    .mission,
    .gallery,
    .new-team,
    .team {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .special h6 {
        color: white; /* White headings */
    }

    .special p {
        color: grey; /* Grey content */
    }

    .special img {
        filter: grayscale(100%); /* Grey icons */
    }

    .overview .overview-content,
    .benefits .benefits-content,
    .mission-content,
    .gallery-content ,.unique-content{
        width: 80%;
    }

    .features ul.featured-skills {
        display: flex;
        flex-wrap: wrap;
    }

    .features li.skill {
        background: #0281A8;
        color: white;
        margin: 12px;
        display: flex;
        flex-direction: column;
        flex: 1 200px;
        padding: 1rem;
    }

    .features section {
        padding: 1rem 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features .container {
        margin: 0;
    }

    .features h2 {
        font-size: 2.33rem;
        text-align: center;
    }

    ul {
        list-style: none;
    }

    .features ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .features .container li:nth-child(n) {
        /* transform: rotate(-5deg); */
        border-radius: 5px;
    }

    .features .container li:hover {
        transform: scale(1.15);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
        z-index: 10;

    }

    .features .container li p {
        text-align: center;
        font-size: 1.3em;
    }

    @media screen and (max-width: 650px) {
        .features .container li:nth-child(n) {
            transform: rotate(0deg);
        }

        .column-1 {
            order: 2;
        }

        .column-2 {
            order: 1;
        }

        .contact-image {
            display: none;
        }
    }

    .get-in-touch {
        margin-bottom: 20px;
        margin-top: 3%;
    }

    .get-in-touch .container-fluid {
        padding: 0 41.5px;
        background-color: #f8f3f3;
    }

    @media (max-width: 650px) {
        .get-in-touch .row {
            display: block;
        }

        .get-in-touch .col {
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 15px;
        }
    }

    .intouch-title .req-text {
        font-size: medium;
        color: #0281A8;
    }

    .title-holder h2 {
        color: black;
        margin: 10px 0;
    }

    .content p {
        line-height: 26px;
        color: #666666;
        font-size: 16px !important;
    }

    .row .consult {
        padding-top: 50px;
    }

    .read-more button {
        padding: 8px 16px;
        color: white;
        background-color: #0281A8;
        border: none;
    }

    .contact-image img {
        max-width: 400px;
    }

    .contact-form {
        background-color: #0281A8;
        width: 85%;
        border-radius: 20px;
    }

    .contact-form2{
        /* background-color: #0281A8; */
        border-radius: 10px;
        /* height: 25rem; */
        /* margin-top: -6rem; */
        /* z-index: 9999; */
        position: relative;
    }

    .contact-form-inner {
        padding: 25px;
    }


    .contact-form input,
    .contact-form textarea {
        margin-bottom: 30px;
        width: 100%;
        border: none;
        border-radius: 5px;
        height: 30px;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border: none;
        outline: none;
        box-sizing: none;
    }



    .contact-form2-inner {
        padding: 25px;
    }

    .contact-form2 input,
    .contact-form2 textarea {
        margin-bottom: 30px;
        width: 80%;
        border: none;
    }

    .contact-form2 input:focus,
    .contact-form2 textarea:focus {
        border: none;
        outline: none;
        box-sizing: none;
    }



    .contact-button p {
        text-align: center;
    }

    .contact-button p button {
        padding: 8px 16px;
        border: none;
    }

    @media screen and (max-width:1200px) {
        .contact-image {
            display: none;
        }
    }

    @media screen and (max-width:650px) {
        .consult {
            margin-bottom: 30px;
        }

        .footer-social-icon {
            margin-bottom: 10px;
        }
    }

    .main-content h2 span,
    .gallery h2 span {
        color: #0281A8;
        font-weight: bolder;
    }

    .main-content h2,
    .gallery h2 {
        /* padding-top: 2rem; */
        text-align: center;
    }



    .mission {
        background-color: #f1f1f1;
    }

    /* 
    .mission .col {
        display: flex;
    }

    .vision-content,
    .values-content,
    .mission-content {
        max-width: 300px;
        height: auto;
        padding:1rem;
        box-shadow: 0px 0px 10px #ccc;
        position: relative;
        text-align: left;
        background-color: white;
    }

    .vision-content {
        margin-right: 3rem;
    }

    .values-content {
        margin-left: 3rem;
    }

    .mission-shape {
        margin-bottom: 3rem;
    }

    @media(max-width:992px) {
        .mission .col {
            margin: 1rem 0;
            justify-content: center;
        }

        .mission-row .col {
            margin: 0;
        }

    }

    @media(max-width:768px) {
        .mission-row .col .mission-shape {
            margin: 0;
        }
        .vision-shape{
            order: 1;
        }
        .vision-content{
            order: 2;
        }
        .mission .col,
        .mission .row {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .vision-shape,
        .values-shape,
        .mission-shape {
            max-width: 150px;
            min-height: 150px;
        }

        .vision-content,
        .values-content,
        .mission-content {
            min-width: 80%;
            margin: 1rem 0;
        }
    }

    @media(min-width:768px) {

        .vision-content::after,
        .values-content::after {
            content: ' ';
            width: 3rem;
            height: 1px;
            display: block;
            position: absolute;
            background-color: #0281A8;
            float: right;
            top: 52%;
        }

        .mission-content::before {
            content: ' ';
            width: 1px;
            height: 3rem;
            display: block;
            position: absolute;
            background-color: #0281A8;
            left: 0;
            top: -3rem;
            right: 0;
            margin: 0 auto;
            text-align: center;
        }

        .vision-content::after {
            right: -3rem;
        }

        .values-content::after {
            left: -3rem;
        }
    }

    .vision-shape,
    .values-shape,
    .mission-shape {
        min-width: 150px;
        min-height: 150px;
        clip-path: polygon(50% 1%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
        background-color: #0281A8;
        display: grid;
        place-items: center;
    }

    .vision-shape i,
    .values-shape i,
    .mission-shape i {
        color: white;

    }

    .mission-row {
        display: flex;
        flex-direction: column;
    }

    .mission-row .col {
        display: flex;
        justify-content: center;
    }

    .mission-shape,
    .mission-content {
        margin-right: 0.5rem;
    }

    .mission .container-fluid {
        width: 70%;
    }
    .mission p{
        color: #757575;
    }
    .mission-content h4,.values-content h4,.vision-content h4{
        color: black;
    } */
    .leader .container-fluid {
        width: 80%;
    }

    .leader .card {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        background-color: #f1f1f1;
        border: none;
    }

    .leader .card img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        max-height: 315px;
        min-height: 315px;
    }

    .leader .card h5 {
        color: #333333;
    }

    .leader .card p {
        color: #4e4e4e;
    }

    .view-btn a {
        max-width: fit-content;
    }

    .view-btn {
        display: flex;
        justify-content: center;
        margin-top: 2rem;

    }

    .leader button,
    .overview button,
    .work button,
    .unique button,
    .team button {
        width: 100px;
        padding: 0.5rem;
        border-radius: 20px;
        background-color: black;
        color: white;
        border: none;
    }

    .leader button:hover,
    .overview button:hover,
    .work button:hover,
    .unique button:hover,
    .team button:hover {
        color: #0281A8;
        background-color: white;
        border: 1px solid #0281A8;
    }

    .work .work-content {
        width: 80%;
    }

    .overview,
    .leader,
    .mission,
    .features,
    .get-in-touch,
    .faq,
    /* .benefits, */
    .work,
    .gallery
    /* .statistics, */
    {
        margin-top: 2rem;
    }

    .faq .accordion-item {
        margin-top: 0.2rem;
    }

    .faq .accordion-button {
        background-color: #0281A8;
        color: white;
    }

    .faq .collapsed {
        background-color: white;
        color: black;
    }

    .faq.accordion-button:focus {
        box-shadow: none;
    }

    .faq .accordion-button::after {
        background: none;
    }

    .accordion-button::after {
        content: "\25BC" !important; /* Unicode for a down arrow symbol */
        font-size: 0.9em !important;
        margin-left: auto !important; /* Pushes the icon to the far right */
        transition: transform 0.3s ease !important; /* Animation for rotation */
    }
    

    /* Rotate the arrow icon when the accordion is expanded */
    .accordion-button:not(.collapsed)::before {
        transform: rotate(180deg);
    }
    /* Default: Only show navbar-toggler on smaller screens */
    .navbar-toggler {
        display: block;
    }

    /* Hide navbar-toggler on screens 767px and above */
    @media (min-width: 767px) {
        .navbar-toggler {
            display: none;
        }
    }



    /*mega menu*/

    .mega-menu {
        left: 0;
        right: 0;
        padding: 15px;
        display: none;
        padding-top: 0;
        min-height: 100%;

    }

    .mega-menu .row {
        overflow-y: auto;
    }

    h4.row.mega-title {
        color: #009FE1;
        margin-top: 0px;
        font-size: 18px;
        padding-left: 15px;
        padding-bottom: 13px;
        text-transform: uppercase;
        padding-top: 15px;
    }

    .mega-menu ul li a {
        font-size: 16px;
        line-height: 25px;
        padding: 8px 0;
        display: block;
    }

    ul.stander li a {
        padding: 3px 0px;
    }

    ul.description li {
        /* padding-bottom: 12px; */
        line-height: 8px;
    }

    ul.description li span {
        color: #ccc;
        font-size: 85%;
    }

    ul.icon-des li a i {
        color: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        background-color: #009FE1;
        line-height: 35px !important;
    }

    ul.icon-des li {
        width: 100%;
        display: table;
        margin-bottom: 11px;
    }


    .mega-menu {
        background-color: white;
        border-top: 5px solid #0281A8;
        width: 80%;
        margin: 0 auto;
    }

    .mega-menu:hover,
    .mega-menu:active,
    .mega-drop-down a:hover+.mega-menu {
        display: block;
    }

    @media (min-width:767px) {
        .mega-menu {
            position: absolute;
        }
    }

    .mega-menu-wrap ul {
        padding: 0;
    }

    .services a {
        text-decoration: none;

    }

    .services a i {
        margin-bottom: 1rem;
    }

    .services a h4,
    .services a i {
        color: black;
    }

    .services a p {
        color: #454444;
    }

    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .services .service {
        padding: 1rem;
        border: 1px solid rgb(150, 149, 149);
        border-radius: 25px;
        transition: all 0.5s ease-in;
        box-shadow: 1px 0 5px 1px grey;
    }

    .services .service:hover {
        border: none;
        box-shadow: 1px 0 5px 1px #0281A8;
    }

    .services {
        margin: 3% 0;
    }

    .services .grid-container {
        width: 70%;
    }

    .services .container-fluid {
        display: flex;
        justify-content: center;
    }

    .service img {
        max-width: 100px;
        max-height: 100px;
        border-radius: 50%;
    }

    .mega-menu li a i {
        margin-right: 5px;
        color: #0281A8;
    }

    .work .work-content .row>div {
        padding: 2rem;

    }

    .benefits .benefits-content li {
        margin: 10px 0;
        font-size: 16px !important;
    }

    .benefits .benefits-content li i,
    .work .work-content li i {
        margin-right: 10px;
        color: #0281A8;
    }


    .work-topic,
    .unique-topic,
    .unique .box h5 {
        color: #0281A8;
        font-size: 15px;
        font-weight: 600;

    }

    .work-topic{
        padding-bottom: 1rem;
    }

    @media(max-width:768px) {
        .benefits ul {
            padding: 0;
            margin-bottom: 0;
        }
        #mission{
            display: block;
        }
        .image-container{
            display: none;
        }
        .work-topic{
            font-size: 18px !important;
            margin-top: 1rem;
        }
        .work-summary p {
            font-size: 14px;
        }
    
        .work ul li {
            font-size: 14px !important;
        }
        
    }
    .unique-summary .unique-topic p {
        font-size: 24px !important;
        text-align: center;
    }
    .unique p {
        margin-left: 0.5rem;
        padding-bottom: 1rem;
        /* font-size: 16px; */
    }

    .overview-content p,
    .work-brief,
    .benefits-content li,
    .unique .box p,
    .faq .accordion-body {
        font-size: 16px;
    }



    .unique-content>p,.work-content-para  , .overview-content>p {
        text-align: center;
        font-size: 18px;
        font-weight: bolder;
        /* margin-bottom: 2rem; */
    }

    .faq .accordion-button {
        font-size: 15px;
        font-weight: 600;
    }

    .mission-content img {
        max-width: 100%;
    }

    .offcanvas-body .navbar-nav .dropdown-menu {
        position: static;
    }

    .offcanvas-body li.sub-li:hover {
        border-bottom: none;
    }

    .wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .services .service-content {
        width: 80%;
    }

    .services .cols {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .services .col {
        width: calc(25% - 2rem);
        margin: 1rem;
        cursor: pointer;
    }

    .services .container {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .services .front,
    .services .back {
        background-size: cover;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        background-position: center;
        -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        text-align: center;
        min-height: 280px;
        height: auto;
        border-radius: 10px;
        color: #fff;
        font-size: 1.5rem;
    }

    .services .back {
        background: #cedce7;
        background: -webkit-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
        background: -o-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
        background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
    }

    .services .front:after {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        content: '';
        display: block;
        opacity: .6;
        background-color: #000;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 10px;
    }

    .services .container:hover .front,
    .services .container:hover .back {
        -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
        transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    }

    .services .back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .services .inner {
        -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
        transform: translateY(-50%) translateZ(60px) scale(0.94);
        top: 50%;
        position: absolute;
        left: 0;
        width: 100%;
        padding: 2rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        outline: 1px solid transparent;
        -webkit-perspective: inherit;
        perspective: inherit;
        z-index: 2;
    }

    .services .container .back {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .services .container .front {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }


    .services .front .inner p {
        font-size: 2rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .services .front .inner p:after {
        content: '';
        width: 4rem;
        height: 2px;
        position: absolute;
        background: #C6D4DF;
        display: block;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -.75rem;
    }

    .services .front .inner span {
        color: rgba(255, 255, 255, 0.7);
        font-family: 'Montserrat';
        font-weight: 300;
    }

    @media screen and (max-width: 64rem) {
        .services .col {
            width: calc(33.333333% - 2rem);
        }
    }

    @media screen and (max-width: 48rem) {
        .services .col {
            width: calc(50% - 2rem);
        }
    }

    @media screen and (max-width: 32rem) {
        .services .col {
            width: 100%;
            margin: 0 0 2rem 0;
        }
    }

    .services .back {
        background: #0281A8;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotateY(180deg);
    }

    .services .cols {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .services .col {
        flex: 1 1 calc(33.333% - 20px);
        margin: 10px;
        perspective: 1000px;
    }

    @media (max-width: 768px) {
        .services .col {
            flex: 1 1 100%;
            margin: 5px 0;
        }
    }

    .gallery .container img {
        width: 300px;
        height: 300px;
        margin: 10px;
        border: 10px solid #0281A8;
        transition-duration: 1s;
    }

    .gallery .container img:hover {
        border: 5px solid #fff;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-filter: none;
        filter: none;
    }


    .gallery .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }


    .gallery-pagination .page {
        width: 300px;
        margin: 0 auto;
        padding: 0;
    }

    .gallery-pagination .page li {
        list-style: none;
        margin: 10px auto;
        padding: 12px;
        background: white;
        border-radius: 10px;
        text-align: center;
    }

    .gallery-pagination .pagination {
        text-align: center;
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-pagination .pages {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        width: 200px;
    }

    .gallery-pagination .page-number {
        cursor: pointer;
        background-color: white;
        color: black;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .4s ease;
    }

    .gallery-pagination .active {
        font-size: 1.3em;
        height: 40px;
        width: 40px;
        background-color: #0281A8;
        color: white;
    }

    .gallery-pagination button {
        width: 120px;
        padding: 8px 16px;
        background-color: #ffffff00;
        color: #0281A8;
        border: none;
        cursor: pointer;
        margin: 0 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .gallery-pagination button:hover {
        color: #0281A8;
    }

    .gallery-pagination button:disabled {
        color: black;
        cursor: not-allowed;
    }

    .gallery-pagination #prevPage {
        margin-right: 20px;
    }

    .gallery-pagination #nextPage {
        margin-left: 20px;
    }

    .gallery-pagination .arrow {
        font-size: 1.2em;
    }

    .gallery-pagination .nav-text {
        font-size: 0.7em;
        letter-spacing: 0.3em;
    }

    .gallery-pagination {
        margin: 2rem 0;
        display: flex;
        justify-content: center;
    }









    .testimonials #demo {
        background: linear-gradient(112deg, #ffffff 50%, antiquewhite 50%);
        max-width: 900px;
        margin: auto;
    }

    .testimonials .carousel-caption {
        position: initial;
        z-index: 10;
        padding: 5rem 8rem;
        color: rgba(78, 77, 77, 0.856);
        text-align: center;
        font-size: 1.2rem;
        font-style: italic;
        font-weight: bold;
        line-height: 2rem;
    }

    @media(max-width:767px) {
        .testimonials .carousel-caption {
            position: initial;
            z-index: 10;
            padding: 3rem 2rem;
            color: rgba(78, 77, 77, 0.856);
            text-align: center;
            font-size: 0.7rem;
            font-style: italic;
            font-weight: bold;
            line-height: 1.5rem;
        }
    }

    .testimonials .carousel-caption img {
        width: 6rem;
        border-radius: 5rem;
        margin-top: 2rem;
    }

    @media(max-width:767px) {
        .testimonials .carousel-caption img {
            width: 4rem;
            border-radius: 4rem;
            margin-top: 1rem;
        }
    }

    .testimonials #image-caption {
        font-style: normal;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    @media(max-width:767px) {
        .testimonials #image-caption {
            font-style: normal;
            font-size: 0.6rem;
            margin-top: 0.5rem;
        }
    }

    .testimonials i {
        background-color: rgb(223, 56, 89);
        padding: 1.4rem;
    }

    @media(max-width:767px) {
        .testimonials i {
            padding: 0.8rem;
        }
    }

    .testimonials .carousel-control-prev {
        justify-content: flex-start;
    }

    .testimonials .carousel-control-next {
        justify-content: flex-end;
    }

    .testimonials .carousel-control-prev,
    .testimonials .carousel-control-next {
        transition: none;
        opacity: unset;
    }

    .sticky {
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 1000;
        background-color: #f1f1f1;
    }

    @media(min-width:992px) {
        .sticky {
            top: 0px;
        }
    }

    @media(min-width:1300px){
    .statistics-img .responsive-img {
        width: 94%;
        max-height: 500px;
        border-radius: 10px !important;
        min-height: 350px;
        object-fit: unset;
    }
    }

    .timeline {
        display: flex;
        flex-direction: column;
        width: 45   vw;
        margin: 0 auto;
        margin-left: 100px;
    }

    .timeline__event {
        background: #fff;
        margin-bottom: 20px;
        position: relative;
        display: flex;
        margin: 20px 0;
        border-radius: 8px;
        box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
            0 18px 36px -18px rgba(0, 0, 0, 0.3),
            0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    }

    #grp-icon {
        left: -85px;
    }
    .whatsapp-button5 {
        display: none;
    }
    @media(max-width:767px) {
    .whatsapp-button5 {
        display: block;
        position: fixed;
        top: 20px; /* Move the button to the top */
        left: 20px; /* Keep it on the left side */
        z-index: 1000;
      }
      
      .whatsapp-button5 a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px; /* Set the diameter of the button */
        height: 60px; /* Set the diameter of the button */
        border-radius: 50%; /* Make it circular */
        background-color: #25D366; /* WhatsApp's signature green color */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
        overflow: hidden;
        color: white; /* Icon color */
        font-size: 30px; /* Set the icon size */
        text-decoration: none; /* Remove underline */
      }
      
      /* Optional: Add hover effect */
      .whatsapp-button5 a:hover {
        transform: scale(1.1); /* Scale up on hover */
        cursor: pointer; /* Change cursor to pointer */
      }
    }
    .timeline__event__title {
        font-size: 0.8rem;
        line-height: 1.4;
        text-transform: uppercase;
        font-weight: 600;
        color: #0281A8;
        /* letter-spacing: 1.5px; */
        text-align: justify;
    }

    .timeline__event__content {
        padding: 10px;
    }

    .timeline__event__date {
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .timeline__event__icon {
        border-radius: 8px 0 0 8px;
        background: #0281A8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-basis: 40%;
        font-size: 2rem;
        padding: 10px;
        max-width: 30%;
        min-width: 30%;
    }

    .timeline__event__icon i {
        position: absolute;
        top: 50%;
        left: -80px;
        font-size: 2.5rem;
        transform: translateY(-50%);
    }

    .timeline__event__description {
        flex-basis: 60%;
    }

    @media (min-width: 790px) {
        .timeline__event:after {
            content: "";
            width: 2px;
            height: 100px;
            background: #0281A8;
            position: absolute;
            top: 52%;
            left: -4rem;
            z-index: -1;
        }
    }

    .timeline__event:before {
        content: "";
        width: 4rem;
        height: 4rem;
        position: absolute;
        background: #95d1e4;
        border-radius: 100%;
        left: -6rem;
        top: 50%;
        transform: translateY(-50%);
        border: 2px solid #0281A8;
    }

    .timeline__event:last-child:after {
        content: none;
    }

    .statistics-img {
        display: flex;
        align-items: center;
    }

    @media (max-width: 790px) {
        .timeline__event {
            flex-direction: column;
        }
        #refer-colleague-icon{
            display: none;
        }

        .timeline__event__icon {
            border-radius: 4px 4px 0 0;
            min-width: 100%;
        }

        .statistics-img {
            display: none;
        }

        .timeline {
            width: 70vw;
            margin: 0 20px 0 80px;
        }

        .timeline__event:before {
            left: -5rem;
        }

        .timeline__event__icon i {
            left: -65px;
        }

        #grp-icon {
            left: -70px;
        }
    }

    .fixed-top {
        position: sticky;
    }


    footer {
        padding: 20px 0;
        font-size: 14px;
        line-height: 20px;
        background-color: #191919; /* Light greyish black */
    }
    

    footer h4 {
        font-size: 16px;
        line-height: 30px;
        font-weight: 600;
        letter-spacing: 1px;
        color: white;
    }

    footer .ul-footer {
        list-style-type: square;
        margin-left: 0;
        padding-left: 1.3rem;
    }

    footer .ul-footer li {
        line-height: 28px;
        color: #c6c5c5;
    }

    footer .ul-footer a {
        color: #fff;
        text-decoration: none;
    }

    footer .ul-footer a:hover {
        color: #fff;
        text-decoration: none;
    }

    footer .responsive-img {
        max-width: 70%;
        max-height: auto;
        height: auto;
        width: auto;
        display: block;
    }

    footer a,
    footer a:hover {
        color: #fff;
        text-decoration: none;
    }

    footer .about-footer p {
        margin-bottom: 1rem;
        text-align: justify;
        color: white;
        font-size: 14px;
    }

    footer .about-footer ul {
        padding-left: 1.3rem;
        list-style-type: square;
        color: white;
    }

    footer .about-footer ul li {
        margin-right: 34px;
        float: left;
        line-height: 30px;
        color: #fff;
    }

    footer .about-footer ul li a {
        color: #fff;
        text-decoration: none;
    }

    @media (max-width:996px) {
        footer .responsive-img {
            max-width: 200px;
        }
    }

    @media (min-width: 1400px) {
        .container {
            max-width: 1080px;
        }
    }

    .team {
        width: 100%;
        /* margin-top: 2rem; */
    }

    .team-content {
        width: 80%;
    }

    .team img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for effects */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    }



    .team .col-4 .row {
        margin-bottom: 10px;
    }

    .team .col-4 {
        padding: 0 10px;
    }

    .custom-mb-10 {
        margin-bottom: 10px !important;
    }

    @media(max-width:768px) {
        .team .col-12 {
            margin-bottom: 15px;
        }

        .custom-mb-10 {
            margin-bottom: 0;
        }

        .team img {
            border-radius: 20px;
        }
    }

    .our-story-img {
        display: flex;
        justify-content: center; /* Optional: centers the image horizontally */
        align-items: center; /* Optional: centers the image vertically */
    }
    
    .responsive-img5 {
        width: 100%; /* Makes the image fill its container */
        height: 90%; /* Maintains aspect ratio */
        object-fit: cover; 
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
  .responsive-img5:hover {
    transform: translateY(-10px) scale(1.05); /* Move image upwards and slightly enlarge */
     /* Stronger shadow on hover */
}

    .work .border-outline {
        max-height: 330px;
        box-shadow:  55px 55px 10px -35px #616161;
      }

      .border-outline {
        position: relative; /* Ensures proper stacking for shadow effects */
        box-shadow:  55px 55px 10px -35px #616161;
        transform: translateY(0) scale(1); /* Default position and scale */
        transition: box-shadow 0.4s ease, transform 0.4s ease; /* Smooth animation */
    }
    
    /* Hover effect: over-the-screen illusion */
    .border-outline:hover {
        box-shadow: 80px 80px 20px -40px #616161 ;
        transform: translateY(-20px) scale(1.1); /* Moves up and zooms in slightly */
        z-index: 10; /* Ensures it's above other elements */
    }
    


    .border-outline2 {
        position: relative; /* Ensures proper stacking for shadow effects */
        box-shadow: 55px 55px 10px -35px #616161, -55px -55px 10px -35px #0281A8; 
        /* Shadow applied to both sides */
        transform: translateY(0) scale(1); /* Default position and scale */
        transition: box-shadow 0.4s ease, transform 0.4s ease; /* Smooth animation */
    }
    
    /* Hover effect: over-the-screen illusion on both sides */
    .border-outline2:hover {
        box-shadow: 80px 80px 20px -40px #616161, -80px -80px 20px -40px #0281A8;
        /* Shadow applied to both sides */
        transform: translateY(-20px) scale(1.1); /* Moves up and zooms in slightly */
        z-index: 10; /* Ensures it's above other elements */
    }
    
      
    .work-content>div {
        margin-bottom: 2rem;
    }

    .work-topic,.unique-topic{
        font-size: 24px;
    }

    .work-content .col-12 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: justify;
    }

    @media(max-width:768px) {
        .work-content .col-12 {
            margin-bottom: 10px;
        }

        .work-content .o-2 {
            order: 2;
        }
    }

    .work-content li {
        margin: 0.5rem 0;
    }

    .publisher .slide-track .slides img {
        padding: 15px;
        object-fit: contain; /* Ensure the entire image fits within the box */
    }




    .publisher2{
        /* margin-top: 5rem; */
    }

    .publisher2 .slide-track2 .slides2 img {
        max-width: 100px; /* Set your desired maximum width */
        max-height: 100px; /* Set your desired maximum height */

        object-fit: contain; /* Ensure the entire image fits within the box */
    }


    .work ul {
        padding-left: 0; /* Remove default padding */
    }

    .work ul li {
        display: flex; /* Use flexbox for alignment */
        align-items: center; /* Center items vertically */
        margin-bottom: 1px; /* Add space between list items */
        /* font-size: 14px; */
    }

    .work ul li i {
        margin-right: 10px; /* Space between icon and text */
    }

    .work ul li img {
        margin-right: 10px; /* Space between icon image and text */
    }


    .benefits {
        padding: 20px;
        background-color: #f9f9f9; /* Optional background color for the section */
    }

    .benefits h2 {
        font-size: 24px;
        margin-bottom: 20px; /* Spacing below the heading */
        color: #333;
        text-align: center;
    }

    .benefits ul {
        list-style-type: none; /* Remove default bullet points */
        padding: 0;
        margin: 0;
    }

    .benefits ul li {
        display: flex; /* Align icon and text horizontally */
        align-items: center; /* Center icon and text vertically */
        padding: 8px 0; /* Vertical spacing between list items */
        font-size: 16px;
        color: #555; /* Text color */
    }

    .benefits ul li i img {
        width: 30px; /* Set consistent icon width */
        height: 30px; /* Set consistent icon height */
        margin-right: 15px; /* Space between icon and text */
        object-fit: contain; /* Maintain image aspect ratio */
    }

    .benefits ul li:hover {
        color: black; /* Optional hover color for text */
        transition: color 0.3s ease; /* Smooth color transition on hover */
    }

    @media (max-width: 768px) {
        .team-gallery {
            padding-top: 90px !important;
            padding-bottom: 20px !important;
        }
        .benefits h2 {
            font-size: 20px;
        }
        
        .benefits ul li {
            font-size: 14px;
        }
        
        .benefits ul li i img {
            min-width: 35px; /* Smaller icons on mobile */
            max-height: 35px;
        }
    
        .publisher .slides {
    
            margin-right: 2rem !important;
        }
    }

    .slider-aligns{
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .publisher .slider {
        background: white;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
        height: 100px;
        margin: auto;
        overflow: hidden;
        position: relative;
    }
    .mobile .dropdown {
        position: relative;
        width: 300px;
    }

    .mobile .dropdown-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }
    .dropdown ul {
        padding-left: 0rem !important;
      }
      .mobile .dropdown-list li {
        color: black !important;
      }
      .mobile .dropdown-list {
        background-color: white !important;
      }
      .mobile .dropdown-list li:hover {
        background-color: white !important;
      }
    .mobile  .dropdown-list {
        display: none;
        position: absolute;
        width: 100%;
        max-height: 250px;
        overflow-y: auto;
       
        border: 1px solid #ccc;
        border-radius: 5px;
        z-index: 100;
        margin-top: 5px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .search-container input{
        margin-bottom: 0px !important;
      }
    .mobile  .dropdown-list .search-container {
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

    .mobile  .dropdown-list .search-container input {
        width: 100%;
        padding: 8px;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .mobile  .dropdown-list li {
        padding: 10px;
        cursor: pointer;
    }

    .mobile  .dropdown-list li:hover {
        background-color: #f0f0f0;
    }

    .mobile  .dropdown-list.active {
        display: block;
    }
    .row2 {
        display: flex;            /* Use flexbox */
        justify-content: center;  /* Center horizontally */
        align-items: center;      /* Center vertically */
        }
        .row2 .submit-button {
        padding: 10px 20px;
        background-color: #0281A8;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin-bottom: 20px; /* Added margin-bottom */
        width: 20%;  /* Set the button width to 50% of its container */
    }
    
    .row2 .submit-button:disabled {
        background-color: #ccc;
    }
    

    .publisher .slider::before,
    .publisher .slider::after {
        content: "";
        height: 100px;
        position: absolute;
        width: 200px;
        z-index: 2;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }


    .publisher .slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }

    .publisher .slider::before {
        left: 0;
        top: 0;
    }

    .publisher .slide-track {
        display: flex;
        width: calc(250px * 14); /* Adjust as necessary */
        animation: scroll 50s linear infinite;
    }

    .publisher .slides {
        height: 100px;
        width: 100px;
        margin-right: 3rem;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-250px * 7));
        }
    }

    .publisher2 .slider {
        background: white;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
        height: 100px;
        margin: auto;
        overflow: hidden;
        position: relative;
    }


    .publisher2 .slider::before,
    .publisher2 .slider::after {
        content: "";
        height: 100px;
        position: absolute;
        width: 200px;
        z-index: 2;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }


    .publisher2 .slider::after {
        right: 0;
        top: 0;
        transform: rotateZ(180deg);
    }

    .publisher2 .slider::before {
        left: 0;
        top: 0;
    }

    .publisher2 .slide-track2 {
        display: flex;
        width: calc(250px * 14); /* Adjust as necessary */
        animation: scroll 50s linear infinite;
    }

    .publisher2 .slides2 {
        height: 100px;
        width: 100px;
        margin-right: 3rem;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-250px * 7));
        }
    }
    .special {
        margin-top: 2rem;
    }

    .special .container {
        display: flex;
        flex-direction: row;

    }

    .special .left-column,
    .special .right-column {
        flex: 1;
        /* Equal space for both columns */
        padding: 20px;
    }

    .special .divider {
        width: 2px;
        /* Width of the vertical line */
        background-color: #ccc;
        /* Color of the line */
    }

    @media (max-width: 768px) {
        .special .container {
            flex-direction: column;
            /* Stack columns on small screens */
        }

        .special .divider {
            display: none;
            /* Hide the divider on small screens */
        }
    }


    .special .col-2 {
        display: flex;
        align-items: center;
    }

    .special p {
        font-size: 15px;
    }

    .special h5,
    .special h6 {
        color: #0281A8;
    }

    @media(min-width:769px) {
        .fifth {
            margin-top: 3rem;
        }

        .last-special .row {
            width: 50%;
        }

        .last-special {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            text-align: right;
        }

        .left-column .row .col-10 h5,
        .left-column .row .col-10 p,
        .left-column .row .col-10 h6 {
            text-align: right;
        }
    }
@media(min-width:1032px){
    .carousel-button{
        top: 344px !important;
    }
}
@media(min-width:1200px){
    .carousel-button{
        top: 398px !important;
    }
    .over-content h1 {
        font-size: 45px;
    }
}
@media(min-width:1200px){
   
    .over-content h1 {
        font-size: 51px !important;
        height:70px !important;
    }
}
@media(min-width:992px){
    .carousel-button{
        top: 379px !important;
    }
}
@media(min-width:1344px){
   
    .over-content h1 {
        font-size: 57px !important;
        /* height:70px !important; */
    }
}
@media(min-width:1520px){
   
    .over-content h1 {
        font-size: 65px !important;
        /* height:70px !important; */
    }
}
/* @media(max-width:957px){
    .carousel-button{
        top: 305px !important;
    }
} */
    .over-content {
        position: absolute;
        top: 35%;
        left: 13% !important;
    }
    .over-content h1 {
        /* line-height: 7vh; */
        height:42px;
        margin-bottom: 1rem;
        font-size: 2rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    @media(max-width:500px) {
        .over-content {
            top: 35%;
            
            left: 7%;
        }

        .over-content h1 {
            font-size: 24px !important;
            height:50px;
        }
    }

    @media (min-width: 501px) and (max-width: 768px) {
        .over-content {
            top: 28%;
            left: 15%;
        }
    }
    
    @media  (min-width:1200px) {
        .over-content {
        top:26px;
    }
}
    @media(min-width:1200px) {
        .over-content {
            position: absolute;
            top: 26% !important;
            left: 10%;
        }

        .over-content h1 {
            font-size: 38px;
        }
    }

    .over-content h1 span {
        background-color: #0281A8;
        padding: 5px 10px;
    }
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    

    .over-content {
        animation: fadeInUp 1s ease-in-out;
    }

    .over-content2 {
        position: absolute;
        top: 30%;
        left: 15%;
    }
    .over-content2 h1 {
        margin-bottom: 1rem;
        font-size: 2rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    /* Increase banner-video height on mobile view */
    @media (max-width: 768px) {
        .banner-video {
            height: 50vh !important; /* Adjust as needed */
        /* Ensures the video covers the container */
        }
        .work-content-para{
            margin-bottom: 2rem;
        }
        article2 {
            display: none !important;
        }
        article3 {
            display: none !important;
        }
    }

    @media(max-width:500px) {
        .over-content2 {
            top: 25%;
            left: 15%;
        }
    
        .over-content2 h1{
            font-size: 24px !important;
        }
    }

    @media (min-width: 501px) and (max-width: 768px) {
        .over-content2 {
            top: 25%;
            left: 15%;
        }
    }


    @media(min-width:992px) {
        .over-content2 {
            position: absolute;
            top: 15%;
            left: 10%;
        }

        .over-content2 h1 {
            font-size: 4rem;
        }
    }

    .over-content2 h1 span {
        background-color: #0281A8;
        padding: 5px 10px;
    }
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .over-content2 {
        animation: fadeInUp 1s ease-in-out;
    }



    .unique-summary{
        text-align: justify;
    }
    .unique-content .container-fluid{
        margin: 1.5rem 0;
    }
    .unique-content .container-fluid .col-12{
        display: flex;
        align-items: center;
        padding: 2rem;
    }

    .menu2 {
        position: fixed;
        bottom: 0px;
        left: 20px;
        z-index: 1000;
      }
      .menu2-item .icon {
      width: 35px; /* Adjust the size of the icon */
      height: 35px; /* Adjust the size of the icon */
      color: white !important; /* Optional: change the color */
    }
    
    
      .menu2-toggler {
        position: relative; /* Position context for the hover text */
        width: 50px; /* Adjust size for better visibility */
        height: 50px;
        display: flex;
        top: -5px;
        justify-content: center;
        align-items: center;
        background-color: #FF6500; /* Orange color */
        border-radius: 50%;
        cursor: pointer;
        z-index: 2;
        transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* 3D shadow */
      }
    
      .menu2-toggler:hover {
        background-color: #e64e00; /* Darker orange on hover */
        transform: scale(1.05); /* Slight scale for a popping effect */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
      }
    
      .menu2-toggler i {
        color: white;
        font-size: 18px; /* Icon size */
      }
      @keyframes gradientBorder {
        0% {
            border-image-source: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
            border-radius: 5px; /* Initial border radius */
        }
        50% {
            border-image-source: linear-gradient(45deg, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000, #ff7300, #fffb00, #48ff00);
            border-radius: 15px; /* Change to a more rounded corner */
        }
        100% {
            border-image-source: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
            border-radius: 5px; /* Return to initial border radius */
        }
    }
    
    .menu2-toggler .hover-text {
        display: block;
        position: absolute;
        top: 50%;
        left: 100%; /* Position to the right of the button */
        transform: translate(10px, -50%); /* Offset for spacing */
        background: #ffffff;
        color: #333333;
        font-weight: bolder;
        border: 3px solid;
        border-image: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
        border-image-slice: 1;
        padding: 10px 15px;
        border-radius: 5px; /* Initial border radius */
        font-size: 14px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 180px;
    
        animation: gradientBorder 5s linear infinite;
    }
    
    
      .menu2-toggler .hover-text span {
        display: block;
        flex-grow: 1; /* Ensure the text takes up available space */
      }
    
      .menu2-toggler .hover-text .close-btn4 {
        background: none;
        border: none;
        color: #121212;
        font-size: 18px;
        cursor: pointer;
        position: absolute;
        top: 0px;
        right: 4px;
        transition: color 0.3s;
      }
    
    
      .menu2-toggler .hover-text .close-btn4:hover {
        color: red; /* Change color on hover */
      }
    
      /* Menu items styling */
      .menu2-item {
        position: absolute;
        display: block;
        width: 60px;
        height: 60px;
        opacity: 0;
        transition: 0.5s;
      }
    
      .menu2-item a {
        display: block;
        width: inherit;
        height: inherit;
        line-height: 60px;
        color:white !important;
        background: #0281A8;
        border-radius: 50%;
        text-align: center;
        text-decoration: none;
        font-size: 30px;
        transition: 0.2s;
        margin-top: -4rem;
        margin-left: -4rem;
      }
    
      .menu2-item a:hover {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
        color: white;
        background: black;
        font-size: 34px;
      }
    
      .menu2-item a:focus,
      .menu2-item a:hover {
        cursor: pointer;
        transform: scale(1.1);
      }
    
      .menu2-item a:active {
        transform: scale(0.9);
      }
    
      /* Remove the rotation transform for vertical stacking */
      .menu2-toggler.active ~ ul .menu2-item {
        transform: rotate(0deg); /* No rotation */
        opacity: 1;
        top: auto;
        bottom: auto;
        left: 50%; /* Center the items horizontally */
        transform-origin: center;
        transform: translateX(-50%) translateY(0); /* Center horizontally and reset vertical offset */
        transition: 0.5s; /* Add transition for smooth appearance */
      }
    
      /* Position each menu item below the previous one */
      .menu2-toggler.active ~ ul .menu2-item:nth-child(1) {
        transform: translateY(-60px); /* Adjust the vertical distance between items */
      }
    
      .menu2-toggler.active ~ ul .menu2-item:nth-child(2) {
        transform: translateY(-120px); /* More distance for next item */
      }
    
      .menu2-toggler.active ~ ul .menu2-item:nth-child(3) {
        transform: translateY(-180px); /* Adjust as needed */
      }
    
      .menu2-toggler.active ~ ul .menu2-item:nth-child(4) {
        transform: translateY(-240px); /* Continue adjusting for more items */
      }
    
      /* Show the items when the menu is active */
      .menu2-toggler.active + ul .menu2-item {
        opacity: 1;
        transform: translateX(-50%) translateY(0); /* Ensure proper alignment */
      }
    
      .menu2-item .hover-text {
        display: block; /* Show by default */
        position: absolute;
        top: 50%;
        left: 10%; /* Position to the right of the button */
        transform: translate(10px, -50%); /* Offset for spacing */
        background:#ffffff;
        color: #333333;
        font-weight: bolder;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 14px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        width: 150px; /* Adjust as needed */
      }
    
      /* Optional: Adjust the spacing and alignment of the menu items */
      .menu2-item {
        position: relative; /* Ensure that hover text is correctly positioned */
      }
    
      .menu2-item:hover .hover-text {
        display: block ; /* Show on hover */
      }
    
      /* Existing hover text styling for the main button */
      .menu2-toggler .hover-text {
        display: block;
        /* Other styles as already defined */
      }
    
      .menu2-item {
        top: auto;
        bottom: 0;
        left: 50%;
        transform-origin: center;
        transform: translateX(-50%);
      }
    
      /* Show the items when the menu is active */
      .menu2-toggler.active + ul .menu2-item {
        opacity: 1;
      }
    
      
          .menu2-item:hover > .hover-text {
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
            color: white !important;
            background: black !important;
            font-size: 14px !important;
          }
        
          .menu2-item .hover-text:focus,
          .menu2-item a:hover {
            cursor: pointer ;
            transform: scale(1.1);
          }
        
          .menu2-item .hover-text:active {
            transform: scale(0.9);
          }
       
    
        .responsive-img2 {
            width: 100%; /* Ensure the image takes up the full width of its container */
            height: 100%; /* Match the height of the content if needed */
            object-fit: cover; /* Ensures the image scales without distorting */
            border-radius: 10px; /* Optional: Adds rounded corners to the image */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow effect */
            margin-top: auto;
            margin-bottom: auto; /* Centers the image vertically within the container */
        }
        
        .height-statiscs{
            height: 400px !important;
        }

    .responsive-img {
        width: 95%;
        height: auto;
        max-height: 330px;
        object-fit: cover;
        border-radius: 10px;
        /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1); */
        transition: transform 0.3s, box-shadow 0.3s; /* Add transition for smooth effect */
    }

    .responsive-img:hover {
        transform: translateY(-10px) scale(1.05); /* Move image upwards and slightly enlarge */
         /* Stronger shadow on hover */
    }

    .full-width-container {
        width: 100vw; /* Full viewport width */
        position: relative; /* Position relative to the container */
        left: 50%; /* Shift it right by half the viewport width */
        right: 50%; /* Shift it left by half the viewport width */
        margin-left: -50vw; /* Pull it back by half the viewport width */
        margin-right: -50vw; /* Pull it back by half the viewport width */
        background-image: url('Banner2.png');
        background-size: cover;
        background-position: center;
        padding: 1rem; /* Optional: Padding for better appearance */
    }

@media (min-width: 768px)  and (max-width:1800px){
.left-col {
    width: 25% !important ; /* Adjust the width as needed */
}

/* Optional: Adjust the right column for better balance */
.right-col {
    width: 35% !important; /* Adjust the width as needed */
}
.center-scroll{
  width: 40% !important;
}

}
    .spec-car-wrapper h3{
        color: #0281A8;
        margin-left: 20px;
    } 
    .popup {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1000; /* Ensure it's on top of other elements */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        background-color: rgba(0, 0, 0, 0.6); 
        z-index: 9999;/* Semi-transparent black background */
    }
    
    .popup-content {
        background-color: #fefefe;
        margin: auto; /* Center the popup */
        padding: 10px; /* Increased padding for more space */
        border: 1px solid #888;
        width: 90%; /* Increased width of the popup */
        max-width: 800px; /* Increased maximum width for larger screens */
        position: relative; /* Position relative for absolute positioning of close button */
        top: 50%; /* Center vertically */
        transform: translateY(-50%); /* Adjust for the height of the popup */
        border-radius: 10px; /* Optional: rounded corners for better aesthetics */
        z-index: 9999; /* Ensure popup content is above the backdrop */
    }
    .popup-content p{
        font-weight: bolder;
    }
    
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    
    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    
    video {
        width: 100%; /* Makes the video responsive */
        height: auto; /* Maintains aspect ratio */
    }
    
    

    .album .responsive-container-block {
        min-height: 75px;
        height: fit-content;
        width: 100%;
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        justify-content: flex-start;
    }
    
    .album .responsive-container-block.bg {
        /* max-width: 1320px; */
        margin: 0 0 0 0;
        justify-content: space-between;
    }
    
    .album .img {
        width: 100%;
        margin: 0 0 20px 0;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow intensity as needed */
    }
    
    .album #i9rb {
        color: black;
    }
    
    .album #ir6i {
        color: black;
    }
    
    .album #ikz3b {
        color: black;
    }
    
    .album .responsive-container-block.img-cont {
        flex-direction: column;
        max-width: 33.3%;
        min-height: auto;
        margin: 0 0 0 0;
        height: 100%;
    }
    
    .album #ipix {
        color: black;
    }
    
    .album #ipzoh {
        color: black;
    }
    
    .album #ig5q8 {
        color: black;
    }
    
    .album #imtzl {
        color: black;
    }
    
    .album #i53es {
        color: black;
    }
    
    .album .img.img-big {
        height: 50%;
        margin: 0 0 16px 0;
    }
    
    @media (max-width: 1024px) {
        .album .img {
        margin: 0 0 18px 0;
        }
    }
    
    @media (max-width: 768px) {
        .album .img {
        max-width: 32.5%;
        margin: 0 0 0 0;
        }
        .journey-image{
            margin-top: 1rem !important;
        }
    
        .album .responsive-container-block.bg {
        flex-direction: column;
        }
    
        .album .responsive-container-block.img-cont {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        }
    
        .album .img.img-big {
        max-width: 49%;
        margin: 0 0 0 0;
        }
    }
    
    @media (max-width: 500px) {
        .album .img {
        max-width: 94%;
        margin: 0 0 25px 0;
        border-radius: 10px;
        }
    
        .album .responsive-container-block.img-cont {
        flex-direction: column;
        align-items: center;
        padding: 10px 10px 10px 10px;
        }
    
        .album .img.img-big {
        max-width: 94%;
        margin: 0 0 25px 0;
        }
    
        .album .img.img-last {
        margin: 0 0 5px 0;
        }
    }

    .over-content2 .cta-button {
        margin-top: 8px;
        padding: 10px 20px;
        font-size: 16px;
        color: #fff;
        background-color: #0281A8; /* Adjust color as needed */
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .over-content2 .cta-button:hover {
        background-color: #0281A8; /* Slightly darker shade on hover */
    }

    .cta-button {
        margin-top: 8px;
        padding: 10px 20px;
        font-size: 16px;
        color: #fff;
        background-color: black; /* Adjust color as needed */
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .cta-button:hover {
        background-color: #0281A8; /* Slightly darker shade on hover */
    }
    .last-one {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically */
    /* Set a height if you want vertical centering */
    /* Optional: pushes this div to the bottom of its container */
    margin-top: 1rem;
    }
    .container2 {
        display: flex;
        justify-content: center; /* Center button horizontally */
        align-items: center; /* Center button vertically */
        background-color: #0281A8; /* Full-width background color */
        width: 100%; /* Ensure it takes the full width */
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .container3 {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #0281A8;
        padding: 20px;
        width: 100%;
        /* margin-bottom: -10px; */
        box-sizing: border-box;
    }

    /* Individual column styling */
    .spaces {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: azure;
        text-align: center;
        gap: 10px;
    }

    /* Row for icon and number */
    .icon-row {
        display: flex;
        align-items: center;
        gap: 8px; /* Space between icon and number */
    }

    /* Icon styling */
    .spaces i {
        font-size: 2rem;
    }

    /* Number text styling */
    .timeline__event__date {
        font-size: 1.5rem;
        font-weight: bold;
    }

    /* Heading below icon and number */
    .spaces h3 {
        font-size: 1rem;
        font-weight: normal;
        margin: 0;
    }
    /* Styling for the button */
    .center-button {
        padding: 10px 20px;
        background-color: #fff; /* Button background color */
        color: #0281A8; /* Button text color */
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bolder;
        margin-top: 2px; /* Space from the top */
        margin-bottom: 2px; /* Space from the bottom */
    }

    /* Button hover effect */
    .center-button:hover {
        background-color: #e0e0e0; /* Change background color on hover */
    }


    .radio-switch {
        position: relative;
        display: inline-block;
        display: inline-flex;
        padding: var(--radio-switch-padding);
        border-radius: calc(var(--radio-switch-radius) * 1.4);
        background-color: #e4e4e7;
    }
    .radio-switch:focus-within, .radio-switch:active {
        box-shadow: 0 0 0 2px hsla(230, 13%, 9%, 0.15);
    }
    
    .radio-switch__item {
        position: relative;
        display: inline-block;
        height: calc(var(--radio-switch-height) - 2*var(--radio-switch-padding));
        width: calc(var(--radio-switch-width)*0.5 - var(--radio-switch-padding));
    }
    
    .radio-switch__label {
        position: relative;
        z-index: 2;
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
        border-radius: var(--radio-switch-radius);
        cursor: pointer;
        font-size: var(--ri5-text-sm);
        -webkit-user-select: none;
        -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        transition: all var(--radio-switch-animation-duration);
    }
    .radio-switch__input:checked ~ .radio-switch__label {
        color: 0, 0%, 100%;
    }
    .radio-switch__input:focus ~ .radio-switch__label {
        background-color: hsla(#FF6C22, 0.6);
    }
    .radio-switch__label :not(*):focus-within, .radio-switch__input:focus ~ .radio-switch__label {
        background-color: transparent;
    }
    
    .radio-switch__marker {
        position: absolute;
        z-index: 1;
        top: 0;
        left: -100%;
        border-radius: var(--radio-switch-radius);
        background-color: #FF6C22;
        height: calc(var(--radio-switch-height) - 2*var(--radio-switch-padding));
        width: calc(var(--radio-switch-width)*0.5 - var(--radio-switch-padding));
        box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
        transition: -webkit-transform var(--radio-switch-animation-duration);
        transition: transform var(--radio-switch-animation-duration);
        transition: transform var(--radio-switch-animation-duration), -webkit-transform var(--radio-switch-animation-duration);
    }
    .radio-switch__input:checked ~ .radio-switch__marker {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    
    .radio-switch__item {
        position: relative;
        display: inline-block;
        height: calc(var(--radio-switch-height) - 2*var(--radio-switch-padding));
        width: calc(var(--radio-switch-width)*0.5 - var(--radio-switch-padding));
    }
    
    .ri5-sr-only {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        clip-path: inset(50%);
        width: 1px;
        height: 1px;
        overflow: hidden;
        padding: 0;
        border: 0;
        white-space: nowrap;
    }
    #bg-overlay-loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
      }
    
      .loader-content {
        color: white;
        font-size: 1.5em;
        font-weight: bold;
      }
    
    .popup2 {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .popup2 .cta-button:disabled {
        background-color: #ccc; /* Gray background for disabled button */
        cursor: not-allowed; /* Change cursor for disabled state */
    }
    .popup-content2 {
        background-color: white;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 500px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .containerpg .paginationpg li a.active {
        background: #0281A8;
        color: white;
    }
    
    /* Style for disabled button (Prev/Next) */
    .containerpg .paginationpg li a.disabled {
        color: gray;
        pointer-events: none;
    }
    
    @media only screen and (max-width: 768px) {
        .popup-content2 {
            width: 90%;
            padding: 15px;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* Uncomment margin if needed */
            /* margin: 10% auto; */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        /* Optional: to darken the background behind the popup */
        .popup-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .buttons-mobile{
            display: none;
        }
        .banner{
            height: 50vh !important;
        }
    }


    .close2 {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .close2:hover,
    .close2:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    .popup-content2 input {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        /* border-radius: 25px; */
    }

        .phone-input-container {
            position: relative;
            width: 100%;
        }

        .flag-icon {
            position: absolute;
            top: 50%;
            left: 12px;
            transform: translateY(-50%);
            width: 20px;
            height: 14px;
            background-image: url('https://upload.wikimedia.org/wikipedia/en/4/41/Flag_of_India.svg');
            background-size: cover;
        }

        .country-code {
            position: absolute;
            top: 50%;
            left: 40px;
            transform: translateY(-50%);
            font-size: 14px;
            color: #333;
        }

        .separator {
            position: absolute;
            top: 50%;
            left: 60px; /* Adjust position as needed */
            transform: translateY(-50%);
            font-size: 14px;
            color: #333;
        }

        #phone2 {
            width: 100%;
            padding: 10px 10px 10px 10px; /* Adjust padding for flag, code, and separator */
            /* border-radius: 25px; */
        }

        #phone3 {
            width: 100%;
            padding: 10px 10px 10px 10px; /* Adjust padding for flag, code, and separator */
            /* border-radius: 25px; */
        }


        #alterPhone {
            width: 100%;
            padding: 10px 10px 10px 70px; /* Adjust padding for flag, code, and separator */
            /* border-radius: 25px; */
        }


    /* Style the loader */
    .phone-number-container {
        display: flex;
        align-items: center;
    }
    
    .country-code-dropdown {
        padding: .375rem .75rem;
        margin-right: 10px;
        border: 1px solid #ccc;
        font-size: 14px;
        border-radius: 5px;
        font-size: 1rem;
        width: auto;
    }
    
    .phone-number-input {
        padding: .375rem .75rem;
        width: 100%;
        border: 1px solid #ccc;
        font-size: 14px;
        border-radius: 5px;
        font-size: 1rem;
    }
    
    .country-code-dropdown option {
        font-family: 'Graphik', sans-serif;
    }
    
    #preferred-date,
    #preferred-time {
        /* display: none; */
    
    }

    #preferred-date::before,
    #preferred-time::before {
        content: attr(placeholder);
        display: block;
        font-size: 16px;
        color: #888;
    }

    @media (max-width: 768px) {
        .testimonials {
            margin-top: 15rem !important;
            margin-bottom: 1rem;
        }
        .portfolio {
            margin-top: 15rem !important;
        }

        .news-section {
            margin-top: 15rem !important;
        }
        .box-square {
            width: 100%;
            /* height: 455px; */
            border-radius: 16px;
            padding: 5px 30px 0px 30px !important;
            text-align: center;
        }
        .trendvideos {
            padding: 25px;}

            .job-listings {
                padding: 25px 40px 40px 40px !important; }

        .grievance-content p,li {
            font-size: 16px !important;
        }
        
        #preferred-date,
        #preferred-time {
            /* display: none; */
            /* height: 2.5rem; */
        }
        .overview-content p, .work-brief, .benefits-content li, .unique .box p, .faq .accordion-body {
            font-size: 14px;
        }
        #preferred-date::before,
        #preferred-time::before {
            content: attr(placeholder);
            display: block;
            font-size: 16px;
            color: #888;
        }
    }
    

    
#qr-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
  }
  
  #qr-container .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  #qr-container .left-column,
  #qr-container .right-column {
    flex: 1;
    padding: 10px;
  }
  
  #qr-container .right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #qr-container .tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  #qr-container .instructions {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }
  
  #qr-container .instructions li {
    margin-bottom: 8px;
  }
  
  #qr-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .instructions-container {
          font-family: 'Arial', sans-serif;
          color: #333;
          font-size: 14px;
          background-color: #f0f0f0;
          padding: 15px;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          margin-bottom: 20px;
      }
      .instructions-container h5 {
          font-size: 18px;
          color: #075E54;
          margin-bottom: 10px;
          font-weight: bold;
      }
      .instructions-container ol {
          padding-left: 20px;
      }
      .instructions-container li {
          margin-bottom: 8px;
      }
      .instructions-container li::marker {
          color: #075E54; /* Change marker color to match WhatsApp */
      }
      .ios-instructions {
          display: block;
      }
      .android-instructions {
          display: none;
      }
  

      
.carousel-button button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .carousel-button button img.icon {
    transition: transform 0.3s ease-in-out;
  }
  
  .carousel-button button:hover img.icon {
    transform: scale(1.0);
  }
  
  .carousel-button button span a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
  }
  
  .carousel-button button:hover span a {
    color: black !important;
    font-weight: bolder; /* Change text color to black on hover */
  }
  
  .carousel-button button:hover img.icon {
    filter: invert(1); /* Inverts color to black */
  }
  
  .carousel-button button:hover img.icon {
    filter: invert(1) grayscale(100%) contrast(100%);
    /* Invert colors and adjust grayscale/contrast to ensure it's black */
  }
  .testi-button .cta-button:hover {
    background-color:transparent !important; 
    border: 1px solid #0281A8;
    color: #0281A8 !important;/* Darker shade for hover */
    transform: scale(1.05); /* Slightly enlarge the button */
  }
  .faq .cta-button:hover {
    background-color:transparent !important; 
    border: 1px solid #0281A8 ;
    color: #0281A8 !important;/* Darker shade for hover */
    transform: scale(1.05); /* Slightly enlarge the button */
  }
  .ul-footer li a:hover{
    color: #FF6500 !important;
  }
  .ul-footer li:hover {
    color: #FF6500 !important;
}
  
.about-footer li a{
    cursor: pointer !important;
}
.about-footer li a:hover{
    cursor: pointer !important;
    
    color: #FF6500 !important;
}

.last-one li a:hover{
    cursor: pointer !important;
    
    color: #FF6500 !important;
}

/* footer .col-12 h4:hover{
    cursor: pointer;
    color: #FF6500 !important;
}

footer .about-footer h4 a:hover{
    cursor: pointer;
    color: #FF6500 !important;
} */

.row2 .submit-button:hover {
    background-color: white !important;
    border : 1px solid #0281A8 !important;
    color: #0281A8 !important;
}

.footer-social-icon a i:hover,
.footer-social-icon a svg:hover {
    color: #FF6500 !important;
}

