* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Candara, sans-serif;

    h1 {
        font-family: Candara, sans-serif;
        font-weight: normal;
    }

    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden;
        padding: 5% !important;
    }

    .back-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        z-index: -2;
    }

    .overlay-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        z-index: -1;
    }


    .text-overlay {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        color: #FFFAFA;
        text-align: right !important;
        justify-content: center;
        padding: 0 10px;
        z-index: 1;
        max-width: 150vw;
        margin: 0;
        display: flex;
        gap: 10px;
    }

    .header-content-container {
        width: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        /* Adjust gap between text and icon as needed */
        text-align: right;
    }

    .text-overlay h1 {
        font-size: 2.5rem;
        margin: 0;
        white-space: nowrap;
        color: white !important;
    }

    .text-overlay .highlight {
        font-weight: bold;
        color: #62BBC0;
    }

    .text-overlay p {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .jubilee-icon {
        width: 180px;
        /* Adjust size as needed */
        height: auto;
        filter: drop-shadow(0 1px 0px rgba(255, 255, 255, 1));
        /* Add shadow effect */
        position: relative;
    }


    .content {
        padding: 40px 0;
        background-color: #f8f9fa;
    }

    .content .highlight {
        font-weight: bold;
        /* color: #FF8C00; */
        color: #06768D;
    }

    .content h3 {
        margin-bottom: 30px;
        color: #06768D;
        font-weight: bold;
    }

    .content h2 {
        margin-bottom: 30px;
        color: #06768D;
        font-weight: bold;
    }

    .content p {
        font-size: 35px;
        font-weight: bold;
        text-align: center;
    }

    .content ul {
        list-style-type: none;
        padding: 0;
    }

    .content ul li {
        margin: 15px 0;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
    }

    .content ul li i {
        margin-right: 15px;
        font-size: 1.5rem;
        color: #06768D;
    }

    .custom-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 15%;
    }

    .custom-row {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }

    .custom-column {
        margin-left: 2%;
        flex: 0 0 30%;
        /* Adjust the width of the columns as needed */
        max-width: 30%;
        /* Adjust the width of the columns as needed */
    }

    .content h3 {
        font-family: Helvetica, sans-serif;
        font-size: 1.6rem;
        color: #06768D;
        font-weight: bold;
    }

    .content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #36454F;
    }

    .content p {
        font-size: 35px;
        line-height: 1.6;
        color: #36454F;
    }


    .button-container {
        padding: 20px 20px;
        background-color: #FFFAFA;
        border-top: 0.5px solid #b3b3b3;
        border-bottom: 0.5px solid #b3b3b3;
        border-radius: 0;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 9;
        width: 100%;
    }

    .button-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icon-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #FFFAFA;
        border: 1px solid #FFFAFA;
        padding: 20px 15px;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        text-align: center;
        border-radius: 10px;
        width: 20%;
        position: relative;
        margin: 0 20px;
    }

    .icon-button img {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
        transition: filter 0.3s ease;
    }

    .icon-button span {
        font-size: 1.3rem;
        color: #06768D;
        transition: color 0.3s ease;
    }

    .icon-button:hover {
        background-color: #06768D;
    }

    .icon-button:hover img {
        content: attr(data-hover-icon);
    }

    .icon-button:hover span {
        color: #FFFFFF;
    }


    .icon-button:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: -20px;
        width: 0.5px;
        background-color: #b3b3b3;
    }


    .whats-on {
        background-color: #FFFAFA;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card-container {
        position: relative;
        padding: 20px 0px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }
    
    .cards-wrapper {
        padding: 20px 45px;
        display: flex;
        flex-wrap: nowrap;
        overflow:hidden;
        width: 100%;
        gap: 20px;
    }

    .left-fade{
        position:absolute;
        left:0px;
        height: 100%;
        width: 45px;
        background: linear-gradient(to right, #FFFAFA, rgba(0, 0, 0, 0) 70%);
        z-index: 1;
    }

    .right-fade{
        position:absolute;
        right:0px;
        height: 100%;
        width: 45px;
        background: linear-gradient(to left, #FFFAFA, rgba(0, 0, 0, 0) 70%);
        z-index: 1;
    }
    
    .scroll-btn {
        border-radius: 10px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #06768D;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 3;
        display: none; /* Hide by default */
    }
    
    .scroll-btn.left {
        left: 20px;
    }
    
    .scroll-btn.right {
        right: 20px;
    }
    
    /* Show buttons when content overflows */
    .card-container.show-buttons .scroll-btn {
        display: block;
    }
    
    
    .card {
        flex: 0 0 auto;
        position: relative;
        width: 375px;
        height: 50vh;
        overflow: hidden;
        border-radius: 15px !important;
        background-color: #36454F;
        color: #FFFAFA;
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: scale(1.05);
    }

    .card-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
        position: relative;
    }

    .card:hover .card-image {
        transform: scale(1.1);
    }

    .card-image::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, #06768D, rgba(6, 119, 141, 0));
        z-index: 1;
        transition: height 0.3s ease-in-out;
    }

    .card:hover .card-image::before {
        height: 50%;
    }


    .card:hover .card-content {
        opacity: 1;
        transform: translateY(0);
    }

    .card-header-head {
        position: absolute;
        bottom: 5%;
        left: 100px;
        right: 20px;
        padding: 10px;
        text-align: left;
        color: #FFFAFA;
        font-size: 1.55rem;
        font-weight: bold;
        z-index: 2;
        transition: bottom 0.3s ease;

    }


    .card-content {
        position: absolute;
        bottom: 0px;
        left: 100px;
        right: 0;
        padding: 10px;
        text-align: left;
        color: #FFFAFA;
        font-size: 1rem;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(100%);
    }


    .card:hover .card-header-head {
        bottom: 60px;
    }

    .card-icon {
        position: absolute;
        bottom: 20px;
        left: 10px;
        width: 90px;
        height: 90px;
        object-fit: cover;
        z-index: 4;
    }


    /* Fade-in animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Fade-out animation */
    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    /* Popup container styling */
    .popup-container {
        display: none;
        /* Hidden by default */
        position: fixed;
        z-index: 10;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.75);
        /* Black with opacity */
        align-items: center;
        justify-content: center;
        opacity: 0;
        /* Initial opacity */
        animation-duration: 0.5s;
        /* Duration of the animation */
        animation-fill-mode: both;
        /* Keep end state of animation */
    }

    /* Visible state for the popup with fade-in */
    .popup-container.show {
        display: flex;
        /* Show popup */
        animation-name: fadeIn;
        /* Apply fade-in animation */
    }

    /* Hidden state for the popup with fade-out */
    .popup-container.hide {
        animation-name: fadeOut;
        /* Apply fade-out animation */
    }



    /* Popup content styling */
    .popup-content {
        position: relative;
        width: 30%;
        height: 80%;
        border-radius: 15px;
        background-color: #36454F;
        overflow: hidden;
        color: #FFFAFA;
        display: flex;
        flex-direction: column;
    }

    /* Popup image styling */
    .popup-image {
        width: 100%;
        height: 100%;
        /* Adjust to match card image height */
        position: relative;
    }

    .popup-image-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(2px);
    }

    /* Bottom green gradient */
    .popup-bottom-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;
        background: linear-gradient(to top, #015464, #01596be1, rgba(6, 119, 141, 0));
    }

    /* Popup text content styling */
    .popup-text-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 50px;
        padding-bottom: 20px;
        text-align: left;
        color: #FFFAFA;
    }

    .popup-icon {
        width: 90px;
        /* Adjust to match card icon size */
        height: 90px;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .popup-header {
        font-size: 1.7rem;
        /* Match card header font size */
        font-weight: bold;
        margin-bottom: 10px;
    }

    .popup-p {
        font-family: Helvetica, sans-serif !important;
        text-align: justify;
        font-size: 1rem;
        /* Match card content font size */
    }

    /* Styling for the text container */
    .popup-view-more {
        bottom: 20px;
        right: 30px;
        margin-top: 30px;
        text-align: right;
        font-size: 1rem;
        /* Match card content font size */
    }

    .view-more-link {
        text-decoration: none;
        color: #62BBC0;
        /* Color for the link */
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .view-more-link:hover {
        color: #FFDB58;
        /* Hover color for the link */
    }

    .popup-close {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 2rem;
        font-weight: bold;
        color: #FFFAFA;
        cursor: pointer;
        z-index: 11;
        transition: color 0.3s ease;
    }

    .popup-close:hover {
        color: #ff483b;
    }

    .title-container {
        background-color: #FFFAFA;
    }

    .title-content {
        padding: 40px 20px;
        background-color: #FFFAFA;
    }

    /* Title header styling */
    .title-header {
        background: url('http://www.autodatz.com/wp-content/uploads/2017/05/Old-Car-Wallpapers-Hd-36-with-Old-Car-Wallpapers-Hd.jpg');
        text-align: center;
        width: 100%;
        height: auto;
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        overflow: hidden;
        border-radius: 0 0 95% 95% / 90%;
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
            linear-gradient(to right, #06768D, #2cc5ca, #06768D);
    }

    /* Overlay styling */
    .title-header .overlay {
        width: 100%;
        height: 100%;
        padding: 50px;
        color: #FFF;
        text-shadow: 1px 1px 1px #333;
        background: rgba(0, 0, 0, 0.3);
        /* Optional: you can change or remove this */
        background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
            linear-gradient(to right, #06768D, #2cc5ca, #06768D);
    }

    .title-header h2 {
        text-align: center;
        font-family: Helvetica, sans-serif;
        font-size: 3rem;
        margin-bottom: -50px;
        color: #353434;
        font-weight: bold;
    }


    .title-content-green {
        position: relative;
        padding: 40px 20px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
            linear-gradient(to right, #06768D, #2cc5ca, #06768D);
        overflow: hidden;
    }

    .title-content-green::before {
        content: "";
        position: absolute;
        top: 0;
        /* Adjust this value to position the shape properly */
        left: 0;
        width: 100%;
        height: 60px;
        /* Adjust this value to fit the shape */
        background: #2cc5ca;
        border-radius: 0 0 50% 50%;
        /* Curves at the bottom */
        z-index: -1;
    }



    .title-content-green h2 {
        font-family: Helvetica, sans-serif;
        font-size: 3rem;
        margin-bottom: -50px;
        color: #353434;
        font-weight: bold;
    }


    .title-content h2 {
        font-family: Helvetica, sans-serif;
        font-size: 3rem;
        margin-bottom: -50px;
        color: #353434;
        font-weight: bold;
    }


    .why-vision-one {
        padding: 40px 7%;
        background-color: #FFFAFA;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
        gap: 20px 40px;
    }

    .icon-text-item {
        display: flex;
        align-items: center;
        gap: 20px;
        grid-column: span 2;
        /* Make each item span 2 columns */
    }

    .icon-text-item img {
        width: 120px;
        height: 120px;
        z-index: 1;
    }

    .icon-text-item p {
        font-size: 1.55rem;
        color: #36454F;
        text-align: justify;
        /* Justify the text */
    }

    .icon-text-item p .highlight {
        font-weight: bold;
        color: #06768D;
    }

    .text-container {
        flex: 1;
        display: flex;
        align-items: center;
        text-align: justify;
        /* Justify the text within the container */
    }



    @media (max-width: 768px) {
        .icon-text-wrapper {
            flex-direction: column;
            align-items: center;
        }

        .icon-text-item {
            width: 100%;
            margin-bottom: 20px;
        }
    }

    .client-carousel {
        overflow: hidden;
        position: relative;
        width: 100%;
        background-color: #FFFAFA;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    * {
        margin: 0;
    }

    .container-xxl {
        width: 90%;
        margin-inline: auto;
        position: relative;
        margin-top: 50px;
        margin-bottom: 100px;
        overflow: hidden;
        mask-image: linear-gradient(to right,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, 1) 20%,
                rgba(0, 0, 0, 1) 80%,
                rgba(0, 0, 0, 0));
    }


    .content {
        position: relative;
        padding-bottom: 150px;
    }

    .waves-container {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 150px;
        overflow: hidden;
        line-height: 0;
    }

    .waves {
        position: absolute;
        bottom: 0;
        width: 150%;
        /* Ensures the wave covers twice the container width */
        height: 100%;
    }
    @media only screen and (max-width: 1024px) {
        .text-overlay h1 {
                order: 1;
                text-align: right;
                font-size: 1.8rem !important;
                margin: 0;
                white-space: normal;
                /* Allow text to wrap */
                color: white !important;
            }
    } 
    
    
    @media only screen and (max-width: 900px) {
        
        .cards-wrapper {
        padding: 20px 45px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto; /* Enable horizontal scrolling */
        overflow-y: hidden; /* Prevent vertical scrolling */
        width: 100%;
        gap: 20px;
    }

    .cards-wrapper::-webkit-scrollbar {
        height: 8px; /* Adjust the height of the scrollbar */
    }

    .cards-wrapper::-webkit-scrollbar-thumb {
        background-color: #888; /* Color of the scrollbar thumb */
        border-radius: 4px; /* Rounded corners for the scrollbar thumb */
    }

    .cards-wrapper::-webkit-scrollbar-thumb:hover {
        background-color: #555; /* Color when hovering over the scrollbar thumb */
    }

    /* Optional: Hide scrollbar for non-WebKit browsers */
    .cards-wrapper {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

        .navbarcustomfont{
            font-size: 1rem !important;
        }

        .navbar img{
            width:200px !important;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center !important;
            justify-content: center !important;
            overflow: hidden;
            padding: 5% !important;
        }

        .back-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: -2;
        }

        .overlay-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
            z-index: -1;
        }


        .text-overlay {
            position: absolute;
            bottom: 6%;
            /* left: 50%;
            transform: translateX(-50%); */
            color: #FFFAFA;
            padding: 0 10px;
            z-index: 1;
            max-width: 100%;
            /* Limit max width to viewport width */
            margin: 0;
            display: flex;
            justify-content: center;
            text-align: center;
            /* Align text centrally */
            flex-wrap: wrap;
            /* Allow content to wrap within container */
        }

        .header-content-container {
            padding: 10%;
            padding-left: 15%;
            /* width: 100%;  */
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            /* Allow content to wrap within container */
            gap: 10px;
            text-align: center;
            /* Center text alignment */
        }

        .text-overlay h1 {
            order: 1;
            text-align: right;
            font-size: 1.55rem;
            margin: 0;
            white-space: normal;
            /* Allow text to wrap */
            color: white !important;
        }

        .text-overlay .highlight {
            font-weight: bold;
            color: #62BBC0;
        }

        .text-overlay p {
            font-size: 1.25rem;
            white-space: normal;
            /* Allow paragraph text to wrap */
        }

        .jubilee-icon {
            order: -1;
            width: 100px;
            height: auto;
            filter: drop-shadow(0 1px 0px rgba(255, 255, 255, 1));
            position: relative;
        }

        .title-content-green h2 {
            font-family: Helvetica, sans-serif;
            font-size: 2rem;
            margin-bottom: -50px;
            color: #353434;
            font-weight: bold;
        }


        .title-content h2 {
            font-family: Helvetica, sans-serif;
            font-size: 2rem;
            margin-bottom: -50px;
            color: #353434;
            font-weight: bold;
        }

        .content p {
            margin-left: 10%;
            margin-right: 10%;
            font-size: 1.3rem;
            font-weight: bold;
            text-align: center;
        }

        .content h3 {
            margin: 10%;
            margin-bottom: 5%;
            font-size: 1.3rem;
            font-weight: bold;
            text-align: center;
        }

        .custom-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 0 10%;
        }

        .custom-row {
            width: 100%;
            flex-direction: column;
            /* Stack columns vertically */
        }

        .custom-column {
            max-width: 100%;
            flex: 1 1 100%;
            /* Full width columns on small screens */
            margin: 0;
            /* Remove margin for stacked columns */
        }

        .custom-column ul {
            display: flex;
            /* Use flexbox for the list */
            flex-wrap: wrap;
            /* Allow list items to wrap onto multiple lines */
            flex-direction: row;
            /* Arrange list items in a row */
            padding: 0;
            /* Remove default padding */
            list-style-type: none;
            /* Remove default list styling */
            gap: 10px;
            /* Adjust gap between list items */
            justify-content: center;
            /* Center items horizontally */
        }

        .custom-column ul li {
            flex: 1 1 30%;
            /* Allow items to grow and shrink, with a base width of 30% */
            box-sizing: border-box;
            /* Include padding and border in the width */
            display: flex;
            /* Use flexbox for list item */
            flex-direction: column;
            /* Arrange icon and text vertically */
            align-items: center;
            /* Center items horizontally */
            justify-content: flex-start;
            ;
            /* Center content within list item */
            text-align: center;
            /* Center text */
            margin: 5px;
            /* Space around each list item */
            font-size: 1rem;
        }

        .custom-column ul li i {
            font-size: 2rem;
            /* Adjust icon size */
            margin-bottom: 5px;
            /* Space between icon and text */
        }

        .waves-container {
            height: 10%;

        }

        /* .button-container {
            height: 1%;
        } */
        .icon-button{
            margin: 0 15px;
            width: 18%;
            height:max-content;
            padding: 0px 15px;
        }

        .icon-button img {
            width: 30px;
            height: 30px;
        }

        .icon-button span {
            font-size: 0.9rem;
        }
        .icon-button:not(:last-child)::after {
            right: -15px;
        }

        .card {
            width: 300px;
            height: 45vh;
        }
        .card-icon {
            width: 70px;
            height: 70px;
        }

        .card-header-head {
            font-size: 1.2rem;
            bottom: 50px;
            left: 80px;
        }

        .card-content {
            opacity: 1;
            transform: translateY(0);
            font-size: 0.8rem;
            left: 80px;
        }
    

        .popup-content {
            width: 90%;
            height: 70%;
        }

        .popup-header {
            font-size: 1.3rem;
        }
    
        .popup-p {
            font-size: 0.8rem;
        }
    
        /* Styling for the text container */
        .popup-view-more {
            margin-top: 10px;
            font-size: 0.8rem;
        }

        .popup-text-content {
            padding:30px;
        }

        .why-vision-one {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
            gap: 20px;
        }

        .icon-text-item img {
            width: 80px;
            height: 80px;
            z-index: 1;
        }
    
        .icon-text-item p {
            font-size: 1rem;
            color: #36454F;
            text-align: justify;
            /* Justify the text */
        }

        .collaborators-group{
            height: 10vh;
        }
    }

    @media only screen and (max-width: 500px) {

    
        .card-container{
            padding: 0px;
        }
    
        .card {
            width: 230px;
            height: 35vh;
        }
    
        .card-icon {
            width: 50px;
            height: 50px;
        }
    
        .card-header-head {
            font-size: 1rem;
            bottom: 25px;
            left: 60px;
        }
    
        .card-content {
            display: none;
        }
    
        .card-image::before {
            height: 40%;
        }

        .icon-button:hover {
            background-color: #FFFAFA;
        }
    
        .icon-button:hover img {
            content: none;
        }
    
        .icon-button:hover span {
            color: #06768D;
        }
    }

}