/* Navbar styling */
.navbar {
    background: white !important;
    color: black;
    position: fixed;
    top: -100%;
    width: 100%;
    transition: top 0.3s ease-in-out;
    z-index: 1000;
}

.navbar-brand {
    color: #007bff;
}

/* Navbar links (make sure they are dark so they are visible on white) */
.navbar-nav .nav-link {
    color: black !important;
}

/* Change navbar link color on hover */
.navbar-nav .nav-link:hover {
    color: #0056b3;
}

/* Dropdown menu styling */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    display: none;
    background-color: white;
    border: 1px solid #ddd;
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: black;
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
    color: black;
}

/* Show navbar when scrolled */
.navbar-scrolled {
    top: 0 !important;
}

/* Video Slideshow Section */
.parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slideshow styling */
.video-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    animation: slideshow 20s infinite;
}

.slideshow-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: none;
}

.slideshow-video.active {
    display: block;
}

/* Keyframes for Slideshow Animation */
@keyframes slideshow {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(-200%);
    }

    75% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Video Navigation Dots */
.video-navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(0, 123, 255, 1);
}

/* Hover effect for dot */
.dot:hover {
    background-color: rgba(0, 123, 255, 0.7);
}

/* Statistics Section */
.statistics {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
    gap: 20px;
    padding: 20px;
    background: #166696;
    /* background: grey; */
}

.stat {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Image Slideshow */
.image-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 2s ease-in-out;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slideshow-image.active {
    display: block;
}

/* Left and Right Arrows Styles */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    z-index: 2;
    padding: 5px 8px;
    background-color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    border-radius: 3px;
}

/* Left Arrow */
.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}


/* Adjust the rest of the container or section that holds the slideshow */
.parallax-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}



/* Arrow Hover Effect */
.arrow:hover {
    opacity: 1;
    transform: scale(1.2);
    background-color: rgba(0, 123, 255, 0.7);
    color: #fff;
}

/* Show arrows when hovering over the image */
.image-section:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

/* Adjustments for medium-sized screens (tablets, etc.) */
@media (max-width: 992px) {
    img {
        max-width: 100%;
        height: auto;
    }

    .statistics {
        margin: 20px 0;
        padding: 10px;
    }

    .stat {
        max-width: 100%;
        padding: 20px;
    }

    .parallax-section {
        min-height: 60vh;
    }
}

/* Adjustments for small screens (mobile, etc.) */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .video-slideshow {
        height: 50vh;
    }

    .parallax-section {
        min-height: 60vh;
    }
}

/* Adjustments for very small screens (extra small mobile devices) */
@media (max-width: 480px) {
    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .slideshow-video {
        object-fit: cover;
    }

    .video-slideshow {
        height: 40vh;
    }

    .statistics {
        padding: 10px;
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 90%;
        max-width: 300px;
        margin: 10px 0;
        padding: 20px;
    }

    .et_pb_row {
        flex-direction: column;
    }
}









/* Modal Styles */
.modal {
    display: none;
    /* Initially hidden */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style for the news ticker container */
.news-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #166696;
    padding: 10px 0;
    box-sizing: border-box;
}

/* Style for the scrolling news ticker */
.news-ticker {
    display: flex;
    align-items: center;
    animation: scroll-left 31s linear infinite;
}

.news-ticker ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.news-ticker li {
    padding: 0 50px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

/* Style for the email link */
.news-ticker a {
    color: white;
    text-decoration: none;
}

.news-ticker a:hover {
    color: #ffcc00;
}

/* Animation for scrolling the text */
@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Hover effect to stop scrolling */
.news-ticker-container:hover .news-ticker {
    animation-play-state: paused;
}

/* Style for the "View Poster" span */
.ticker-item span {
    color: powderblue;
    cursor: pointer;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Hover effect on the span */
.ticker-item span:hover {
    color: #ffcc00;
    text-decoration: none;
}

/* Style for the Download button */
.download-btn button {
    background-color: #2499e7;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    width: 100%;
}

/* Hover effect on the download button */
.download-btn button:hover {
    background-color: pink;
}










/* Client Section Styles */
.client-wrap {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.client-wrap h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.client-wrap h1 span {
    color: #166696;
}

/* Owl Carousel Styles */
.owl-carousel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
}

.owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.25s ease;
}

.owl-item img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Arrows centered */
.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background-color: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-prev:hover,
.owl-next:hover {
    color: #0056b3;
}



/* Dots Styling */
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: black;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.owl-dot.active {
    opacity: 1;
}

/* Adjust owl carousel width */
.owl-stage {
    display: flex;
    gap: 20px;
}

.owl-nav {
    z-index: 10;
}


@media (max-width: 768px) {
    .feature-box {
        padding: 15px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .feature-box h3 {
        font-size: 18px;
    }

    .feature-box p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .content-section h2 {
        font-size: 28px;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-box h3 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 12px;
    }
}



.cta-btn {
    /* background-color: #ff6600; */
    background-color: lightpink;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.cta-btn:hover {
    background-color: #166696;
}




















/* Centering the Heading */
.container-fluid h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
}

.container-fluid h1 span {
    color: #166696;
    /* Optional: Span color */
}


.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.service-details {
    padding: 15px;
}

.service-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-details p {
    font-size: 14px;
    color: #666;
}

.capabilities:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.capabilities:hover .service-image img {
    transform: scale(1.05);
}

.capabilities h3 a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.capabilities h3 a:hover {
    color: #0056b3;
}

.row-eq-height {
    overflow-x: auto;
}

.row-eq-height::-webkit-scrollbar {
    height: 8px;
}

.row-eq-height::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.row-eq-height::-webkit-scrollbar-track {
    background: #f1f1f1;
}





















.testimonials-wrap {
    background-color: #166696;
    /* background-color: #2dc9ec; */
    padding: 20px 0;
    background-size: cover;
    margin-top: 0px;
}

.testimonials-wrap h1 {
    text-align: center;
    color: #000;
}

.testimonials-wrap .main-heading:before {
    left: 50%;
    margin-left: -40px;
    background: #fff;
}

.testimonials li {
    margin: 10px;
    margin-top: 20px;
}

.testi-info {
    background: #fff;
    -webkit-box-shadow: 0px 7px 5px -3px rgba(0, 0, 0, 0.27);
    -moz-box-shadow: 0px 7px 5px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 7px 5px -3px rgba(0, 0, 0, 0.27);
    padding: 20px 20px 20px 20px;
    min-height: 150px;
    position: relative;
    margin-bottom: 30px;
}

.testi-info p {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

/* .testi-info p:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    position: absolute;
    top: -5px;
    left: -29px;
    color: rgba(0, 142, 91, 0.34);
    font-size: 43px;
    font-style: normal;
} */

.name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f3785;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

.name span {
    display: block;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
}

.client-image img {
    border-radius: 50%;
    border: 1px solid #5470ac;
}

.client-image {
    position: absolute;
    bottom: -25px;
    right: 20px;
}

.test .testi-info {
    background: #eee;
}

.test .client-image img {
    border: 2px solid #eee;
}

.test li {
    margin: 0;
    margin-top: 20px;
}

.acme-news-ticker {
    background: #166696;
    /* background: #119cdd; */
    position: relative;
    height: 55px;
    border: 1px solid #434343;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .acme-news-ticker {
        margin-top: 25px;
    }
}

.acme-news-ticker-label {
    background: lightpink;
    /* background: orange; */
    padding: 12px 10px;
    width: auto;
    float: left;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    line-height: normal;
    height: 100%;
    color: #fff;
}

@media (max-width: 575px) {
    .acme-news-ticker-label {
        position: absolute;
        display: none;
        left: -1px;
        top: -54px;
    }
}

.acme-news-ticker-box {
    height: 100%;
    padding-top: 8px;

    overflow: hidden;
}

@media (max-width: 575px) {
    .acme-news-ticker-box {
        padding-left: 10px;
        padding-right: 10px;
    }

}

.acme-news-ticker-box ul {
    width: 100%;
    list-style-type: none !important;
    padding: 0;
    margin: 5px 0;
}

.acme-news-ticker-box ul li a {
    text-decoration: none;
}

.acme-news-ticker-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
}

.acme-news-ticker-controls button {
    height: 100%;
    background: #f6f6f6;
    padding: 0;
    width: 40px;
    border-color: #eeeeee;
    border-style: solid;
    border-width: 0 0 0 1px;
    cursor: pointer;
    display: inline-block;
}

.acme-news-ticker-controls button:hover {
    background: #eeeeee;
}

.acme-news-ticker-controls button.acme-news-ticker-arrow {
    margin: 0;
    display: inline-block;
    position: relative;
}

.acme-news-ticker-controls button.acme-news-ticker-arrow:after {
    border-color: #999;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
    content: '';
    display: inline-block;
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 8px;
}

.acme-news-ticker-controls button.acme-news-ticker-pause {
    position: relative;
    display: inline-block;
}

.acme-news-ticker-controls button.acme-news-ticker-pause:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-color: #999;
    border-style: solid;
    border-width: 0 2px 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.acme-news-ticker-controls.acme-news-ticker-horizontal-controls button.acme-news-ticker-prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}

.acme-news-ticker-controls.acme-news-ticker-horizontal-controls button.acme-news-ticker-next:after {
    -webkit-transform: translate(-50%, -50%) rotate(315deg);
    -ms-transform: translate(-50%, -50%) rotate(315deg);
    transform: translate(-50%, -50%) rotate(315deg);
}

.acme-news-ticker-controls.acme-news-ticker-vertical-controls button.acme-news-ticker-prev:after {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
    -ms-transform: translate(-50%, -50%) rotate(225deg);
    transform: translate(-50%, -50%) rotate(225deg);
}

.acme-news-ticker-controls.acme-news-ticker-vertical-controls button.acme-news-ticker-next:after {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
    -ms-transform: translate(-50%, -50%) rotate(405deg);
    transform: translate(-50%, -50%) rotate(405deg);
}

.acme-news-ticker-box ul li {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    color: #fff;
}















/* Styles for the Contact Us section */
.ct_newsletter_wrap {
    background-color: #f5f5f5;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.ct_newsletter_wrap h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.ct_newsletter_wrap p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}

.ct_newsletter_wrap a {
    color: #166696;
    text-decoration: none;
    font-weight: bold;
}

.ct_newsletter_wrap a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.ct_newsletter_wrap .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ct_newsletter_wrap .text-center {
    text-align: center;
}














/* General Body Styling */
/* body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
} */

/* Container Styling */
.et_pb_section {
    width: 100%;
    background-color: #fff;
}

/* Row Styling */
.et_pb_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

/* Column Styling */
.et_pb_column {
    flex: 1;
    /* padding: 20px; */
}

/* Heading Styles */
.et_pb_module h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraph Text */
.et_pb_module p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* List Styling */
.et_pb_module ul {
    list-style: none;
    padding-left: 0;
}

.et_pb_module ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

/* Image Section */
.et_pb_module.et_pb_image img {
    width: 75%;
    /* width: 100%; */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.et_pb_module.et_pb_image img:hover {
    transform: scale(1.05);
}

/* Call-to-Action Section (Text Block) */
.et_pb_cta_0 {
    text-align: center;
    background-color: whitesmoke;
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.et_pb_cta_0 h1 {
    font-size: 40px;
    font-weight: 700;
    color: #555;
    /* color: rgb(177, 39, 39); */
}

.et_pb_cta_0 p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .et_pb_row {
        flex-direction: column;
    }

    .et_pb_module h1 {
        font-size: 28px;
    }

    .et_pb_module p,
    .et_pb_module ul li {
        font-size: 14px;
    }

    .et_pb_cta_0 {
        padding: 30px;
    }

    .et_pb_cta_0 h1 {
        font-size: 32px;
    }
}

















/* Live chat & Support  & Social icon*/

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 72%;
    transform: translateY(-50%);
    background: #166696;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px 0 0 10px;
}

/* Subscribe Text (VERTICAL) */
.subscribe-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Toggle Button */
.toggle-btn {
    background: #166696;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 5px;
    width: 40px;
    text-align: center;
    border-radius: 10px 0 0 10px;
}

/* .toggle-btn:hover {
    background: lightpink;
} */

/* Social Icons */
.social-icons {
    display: block;
    /* Now visible by default */
    margin-top: 10px;
    text-align: center;
}

.social-sidebar a {
    display: block;
    padding: 4px;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-sidebar a:hover {
    background: lightpink;
    transform: translateX(-5px);
}

.social-sidebar a i {
    font-size: 20px;
    /* Reduce icon size */
}


/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.chat-box {
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.chat-header {
    background: #007bff;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #eee;
}

.toggle-chat {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 24px;
}

/* Translation Widget */
.translate-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 998;
}



























/* Concrete OEM About Session */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.text-content {
    width: 50%;
    padding-right: 20px;
}

.text-content h1 {
    font-size: 24px;
    color: #333;
}

.text-content p {
    font-size: 16px;
    color: #666;
}

/* span {
    color: blue;
} */

h1 span {
    color: #166696;
}



.image-content {
    width: 50%;
}

.responsive-image {
    width: 100%;
    height: auto;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: center;
    }

    .text-content,
    .image-content {
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .text-content h1 {
        font-size: 20px;
    }

    .text-content p {
        font-size: 14px;
    }
}





































/* body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
} */

.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.chat-container {
    display: none;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-direction: column;
    margin-bottom: 10px;
}

.chat-header {
    background: #003366;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;
}

.chat-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header .avatar img {
    width: 24px;
    height: 24px;
}

.online-status {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.bot-message {
    margin-right: auto;
}

.user-message {
    margin-left: auto;
    text-align: right;
}

.message-content {
    padding: 10px 15px;
    border-radius: 15px;
    display: inline-block;
    white-space: pre-line;
}

.bot-message .message-content {
    background: white;
    border: 1px solid #e0e0e0;
}

.user-message .message-content {
    background: #003366;
    color: white;
}

.timestamp {
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
}

.button-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.option-button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.option-button:hover {
    background: #e0e0e0;
}

.chat-input {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    float: right;
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle i {
    color: white;
    font-size: 24px;
}

.end-chat-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.end-chat-btn:hover {
    background: #c82333;
}

.form-control:focus {
    border-color: #003366;
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
}











/* Grid Container for 3x3 layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.grid-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.05);
}

/* Project description under image */
.project-description {
    display: none;
    padding: 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    text-align: center;
}

.project-description h2 {
    margin-top: 0;
}

.client-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

















/* IMAGE Gallery css */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-item:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .text {
        font-size: 16px;
    }
}


















/* Main Container */
.wpb_wrapper {
    font-family: 'Titillium Web', sans-serif;
}

/* Heading Style */
.latest-news-heading {
    font-size: 30px;
    color: #0e2240;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.vc_btn3-container a {
    background-color: #166696;
    /* background-color: #b82228; */
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vc_btn3-container a:hover {
    background-color: #b82228;
    /* background-color: #b82228; */

    transform: translateY(-4px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2);
}

/* News Card */
.news-card {
    perspective: 1000px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: rotateY(10deg);
}

.vc_gitem-animated-block {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vc_gitem-animated-block:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

/* Date */
.post-date {
    font-size: 16px;
    color: #8c8f93;
    text-align: left;
    margin-bottom: 5px;
}

/* Title */
.post-title {
    font-size: 20px;
    color: #0e2240;
    line-height: 1.5;
    text-align: left;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.post-title a {
    text-decoration: none;
    color: inherit;
}

.post-title a:hover {
    color: #b82228;
}

/* Read More */
.read-more a {
    font-size: 16px;
    color: #b82228;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.read-more a:hover {
    color: #0e2240;
}

/* Vertically Aligned Grid */
.news-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}

.news-column {
    width: 32%;
    /* Fixed width for each column */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Ensure the height of each news item box is consistent */
.news-card {
    height: 100%;
}