﻿@font-face {
    font-family: 'Manrope-Bold';
    src: url('../font/static/Manrope-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-ExtraBold';
    src: url('../font/static/Manrope-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-ExtraLight';
    src: url('../font/static/Manrope-ExtraLight.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-Light';
    src: url('../font/static/Manrope-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-Medium';
    src: url('../font/static/Manrope-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-Regular';
    src: url('../font/static/Manrope-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-SemiBold';
    src: url('../font/static/Manrope-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Manrope-VariableFont_wght';
    src: url('../font/Manrope-VariableFont_wght.ttf') format('truetype');
}
header.titan-head {
    display: none;
}
body {
    font-family: Manrope-Medium;
    color: #333;
    background-color: #fff;
    font-size: 18px;
}
header.header-custom {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}

.header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Fixed height */
    padding: 0 10px; /* Left and right padding */
    gap: 20px; /* Gap between the three parts */
    position: absolute; /* Initial position */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure the header is above other content */
    background: linear-gradient(0deg, rgb(0 0 0 / 0), rgb(0 0 0 / 100%) 60%);
    transition: all 0.3s ease; /* Smooth transition for background and text color */
}

    /* Sticky Header on Scroll */
    .header-custom.sticky {
        position: fixed; /* Sticky position */
        background: white; /* White background */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
    }

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

    .logo-section svg {
        width: 126px; /* Set SVG width */
        height: 28px; /* Set SVG height */
    }
.title-text {
    fill:white;
}
.header-custom.sticky .title-text{
    fill:#333;
}
/* Navigation Section */
.nav-section .navbar-nav {
    gap: 1rem;
}

.nav-section .nav-link {
    font-weight: 500;
    color: white; /* Initial text color */
    transition: color 0.3s ease; /* Smooth transition for text color */
}
.header-part.nav-section {
    flex: 1;
}
/* Change text color to #333 when sticky */
.header-custom.sticky .nav-link {
    color: #333;
}

/* Search Section */
.search-section .form-control {
    width: 200px;
}

.search-section .btn-outline-success {
    border-color: #28a745;
    color: #28a745;
}

    .search-section .btn-outline-success:hover {
        background-color: #28a745;
        color: #fff;
    }
/* Button Section */
.button-section {
    display: flex;
    gap: 10px; /* Space between buttons */
    align-items: center;
}

/* Contact Button */
.contact-btn {
    background: linear-gradient(90deg, #52B5F8, #0045C6); /* Gradient background */
    color: white; /* Text color */
    border: none; /* Remove border */
    padding: 5px 15px; /* Top/Bottom: 5px, Left/Right: 15px */
    border-radius: 30px; /* Rounded corners */
    font-weight: 500; /* Bold text */
    transition: background 0.3s ease; /* Smooth hover effect */
    height:35px;
}

    .contact-btn:hover {
        background: linear-gradient(90deg, #0045C6, #52B5F8); /* Reverse gradient on hover */
        color: white;
    }

/* Request Demo Button */
.request-demo-btn {
    background: transparent; /* Transparent background */
    color: #fff; /* Text color */
    border: 2px solid #52B5F8; /* Border color */
    padding: 3px 15px; /* Top/Bottom: 5px, Left/Right: 15px */
    border-radius: 30px; /* Rounded corners */
    font-weight: 500; /* Bold text */
    transition: all 0.3s ease; /* Smooth hover effect */
    height: 35px;
}

    .request-demo-btn:hover {
        background: #52B5F8; /* Background color on hover */
        color: white; /* Text color on hover */
    }




/* Sticky Header Button Styles */
.header-custom.sticky .contact-btn {
    background: linear-gradient(90deg, #52B5F8, #0045C6); /* Keep gradient in sticky mode */
}

.header-custom.sticky .request-demo-btn {
    color: #333; /* Dark text color in sticky mode */
    border-color: #333; /* Dark border color in sticky mode */
}

    .header-custom.sticky .request-demo-btn:hover {
        background: #333; /* Dark background on hover in sticky mode */
        color: white; /* White text on hover in sticky mode */
    }
/* Language Dropdown */
.language-dropdown {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon, text, and dropdown icon */
    cursor: pointer;
    padding: 5px 10px; /* Padding for better click area */
    transition: opacity 0.3s ease; /* Smooth hover effect */
    color:white;
}

    .language-dropdown:hover {
        opacity: 0.8; /* Slight fade on hover */
    }

.language-icon svg,
.dropdown-icon svg {
    width: 25px;
    height: 25px;
}
.language-dropdown svg path {
    fill:white;
}

.language-text {
    font-weight: 500; /* Bold text */
}

.dropdown-icon svg {
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
}
/* Search Icon */
.search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .search-icon svg {
        width: 25px; /* Icon size */
        height: 25px; /* Icon size */
        transition: opacity 0.3s ease; /* Smooth hover effect */
        fill: white;
    }
.header-custom.sticky .language-dropdown {
    color: #333;
}

.header-custom.sticky .search-icon svg {
    fill: #333;
}

.header-custom.sticky .language-dropdown svg path {
    fill: #333;
}

    .search-icon:hover svg {
        opacity: 0.8; /* Slight fade on hover */
    }

    /*Banner Styles*/
/* Banner Section */
.banner-section {
    height: 900px; /* Fixed height */
    background-size: cover; /* Ensure the image covers the banner */
    background-position: center; /* Center the background image */
}

/* Banner Navbar */
.banner-navbar {
    position: absolute;
    bottom: unset;
    top: calc(100% - 165px);
    left: 0;
    right: 0;
    height: auto;
    background: linear-gradient(180deg, rgb(0 0 0 / 0), rgb(0 0 0 / 100%) 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    z-index:9;
}

.navbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white; /* Text color */
    cursor: pointer;
    transition: opacity 0.3s ease; /* Smooth hover effect */
    opacity: 0.7; /* Inactive state */
    row-gap: 10px;
}

    .navbar-item.active {
        opacity: 1; /* Active state */
        font-weight: bold; /* Highlight active item */
    }

    .navbar-item:hover {
        opacity: 1; /* Fully visible on hover */
    }

.navbar-icon {
    font-size: 1.5rem;
    height: 50px;
}

.navbar-text {
    font-size: 16px;
    font-family: 'Manrope-bold';
    padding: 0;
    line-height: 20px;
}
.navbar-item.active span.navbar-text {
    background: linear-gradient(180deg, #2b86e5, #0dd0f5);
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Manrope-extrabold';
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Control button width */
    opacity: 0.8; /* Semi-transparent buttons */
    transition: opacity 0.3s ease; /* Smooth hover effect */
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1; /* Fully visible on hover */
    }
span.carousel-control-next-icon, span.carousel-control-prev-icon {
    background-image: url('../images/next-prev-btn-active.webp');
    width: 70px;
    height: 70px;
    opacity: 1;
}
span.carousel-control-prev-icon {
    transform: rotate(180deg);
}
.banner-section.anpr-pay-parking {
    background-image: url('../images/banner/anpr-pay-parking/titanhz-anpr-pay-parking-banner.webp');
}
.banner-section.anpr-parking {
    background-image: url('../images/banner/anpr-parking/titanhz-anpr-parking-banner2.webp');
   /* background: linear-gradient(103deg, #101c50, #101c50);*/
}
.banner-section.anpr-tenant-app {
    background-image: url('../images/banner/anpr-tenant-app/titanhz-tenant-app-banner-background.webp');
}
.banner-section.ticket-kiosk {
    background-image: url('../images/banner/ticket-kiosk/ticket-kiosk-banner.webp');
}
.banner-section.payment-kiosk {
    background-image: url('../images/banner/payment-kiosk/titanhz-payment-kiosk-banner-background.webp');
}
.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
}
.banner-content {
    position: absolute;
    top: 130px;
    left: 130px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    z-index: 2;
}

.banner-title {
    color: white;
    font-size: 64px;
    font-weight: bold;
    line-height: 72px;
    text-shadow: 5px 8px 10px rgba(0, 0, 0, 0.25), 0px 8px 4px rgba(0, 0, 0, 0.25), 0px 8px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 0px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0px 30px;
    height: 50px;
    background: linear-gradient(180deg, #2d88e3 0%, #0045c6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content; /* This ensures the button only takes up as much width as needed */
    padding-bottom: 4px;
}

    .explore-btn:hover {
        transform: translateX(5px);
        background: linear-gradient(90deg, #2d88e3 0%, #0045c6 100%);
        color: white;
    }

    .explore-btn svg {
        width: 30px;
        height: auto;
        transition: transform 0.3s ease;
        margin-top: 4px;
        fill:white;
    }

.explore-btn:hover svg {
    transform: translateX(3px);
}
.banner-car {
    position: absolute;
    bottom: 85px;
    left: 85px;
    max-width: 796px;
}

    .banner-car img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
.banner-dashboard {
    position: absolute;
    top: 155px;
    right: 320px;
    z-index: 2;
    max-width: 520px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

    .banner-dashboard img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }
.dashboard-points {
    position: absolute;
    bottom: 147px;
    right: 115px;
    width: 896px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    white-space: nowrap;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    width: calc(50% - 10px);
    font-family: manrope-bold;
    padding: 20px;
    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: solid 1px rgb(255 255 255 / 20%);
}

.point-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.point-text {
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}

.point-icon img {
    width: 27px;
    height: 27px;
    fill: white;
}
.bottom-overlay {
    position: absolute;
    width: 100%;
    height: 147px;
    bottom: 55px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0));
}
.banner-section.anpr-parking h1.banner-title {
    text-shadow: 5px 8px 10px rgba(0, 0, 0, 0.25), 0px 8px 4px rgba(0, 0, 0, 0.25), 0px 8px 4px rgba(0, 0, 0, 0.25), 0px 0px 250px rgb(35 139 251 / 50%), 0px 0px 250px rgb(35 139 251 / 80%), 0px 0px 246.859px rgb(35 139 251 / 80%), 0px 0px 123.43px rgb(35 139 251 / 80%);
}
.banner-section.anpr-parking .banner-car {
    height: 520px;
    max-width: unset;
    width: 1115px;
    left: -2px;
    bottom: -23px;
}
.banner-images-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    height: 100%;
}

    .banner-images-right img {
        width: 150px;
        height: auto;
    }
        .banner-images-right img.right-corner {
            position: absolute;
            height: 100%;
            width: auto;
            right: 0;
            z-index: 1;
        }
        .banner-images-right
        img.bottom-corner {
            position: absolute;
            bottom: 0;
            width: auto;
            height: 450px;
            right: 250px;
            z-index: 2;
        }
        .banner-images-right img.pattern-bottom {
            width: auto;
            height: 400px;
            position: absolute;
            bottom: -28px;
            right: 310px;
        }
        .banner-images-right img.pattern-top {
            width: auto;
            height: 400px;
            top: -115px;
            right: 75px;
            position: absolute;
        }
.parking-points-parent {
    position: absolute;
    width: 729px;
    height: 646px;
    top: 32px;
    right: 503px;
    z-index: 2;
}
.parking-points {
    float: left;
    width: 270px;
    height: 270px;
    background-image: url(../images/banner/anpr-parking/points-frame.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding-top: 65px;
    position: absolute;
    top: 0;
    left: 0;
}
.icon-gif {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}
    .icon-gif img {
        width: 100%;
        height: 100%;
    }
.points-content {
    color: white;
    text-align: center;
    max-width: 150px;
    font-size: 16px;
    font-family: manrope-bold;
}
.parking-points.point2 {
    top: 140px;
    left: 138px;
}

.parking-points.point3 {
    top: 4px;
    left: 281px;
}

.parking-points.point4 {
    top: 104px;
    left: 460px;
    row-gap: 15px;
}
    .parking-points.point4 .points-content {
        max-width: 205px;
    }
.parking-points.point5 {
    top: 241px;
    left: unset;
    right: 141px;
}

.parking-points.point6 {
    top: unset;
    left: unset;
    right: 283px;
    bottom: 0;
}
.banner-images-right img.right-corner.mask-img {
    right: -10px;
    top: -10px;
}
.banner-images-right img.right-corner.mask-img {
    right: -63px;
    top: -65px;
    z-index: 2;
}
.banner-images-right img.right-corner-gif {
    position: absolute;
    right: 214px;
    top: 296px;
    z-index: 1;
    width: 140px;
}
.banner-section.anpr-tenant-app .point-item {
    width: 300px;
    height: 190px;
    flex-direction: column;
    white-space: normal;
    justify-content: center;
}
.banner-section.anpr-tenant-app .point-icon {
    width: 50px;
    height: 50px;
}

    .banner-section.anpr-tenant-app .point-icon svg {
        width: 100%;
        height: 100%;
    }
        .banner-section.anpr-tenant-app .point-icon svg.vehicle-ic {
            position: absolute;
            width: 60px;
            height: 60px;
        }
.banner-section.anpr-tenant-app .dashboard-points {
    width: 32.6%;
    left: 132px;
    bottom: 142px;
    gap: 10px;
}
.center-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

    .center-icon svg {
        width: 100%;
        height: 100%;
    }
.banner-section.ticket-kiosk .banner-overlay {
    background: rgb(0 0 0 / 20%);
}
.banner-section.ticket-kiosk .dashboard-points {
    left: 125px;
    bottom: 215px;
    width: 890px;
    height: 280px;
    gap: 0px;
    border: solid 0.3px rgb(255 255 255 / 20%);
    border-radius: 16px;
    overflow: hidden;
}
.banner-section.ticket-kiosk .point-item {
    border-radius: 0px;
    border: solid 0.2px rgb(255 255 255 / 20%);
    width: 25%;
    height: 50%;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Manrope-SemiBold';
}
.banner-section.ticket-kiosk .point-icon {
    width: 60px;
    height: 60px;
}
    .banner-section.ticket-kiosk .point-icon img {
        float: left;
        width: auto;
        height: 100%;
    }
.banner-section.ticket-kiosk .point-item.barrier-connect .point-icon img {
    height: 65px;
}
.banner-section.ticket-kiosk .point-item.mic .point-icon img {
    margin-left: 10px;
}
.banner-section.payment-kiosk .banner-overlay {
    background: rgb(0 0 0 / 40%);
}
.banner-section.payment-kiosk .dashboard-points {
    width: 625px;
    right: unset;
    left: 130px;
    bottom: 172px;
}
    .banner-section.payment-kiosk .dashboard-points .point-item {
        width: calc(50% - 13px);
        padding: 10px;
        height: 70px;
        border-radius: 6px;
        backdrop-filter: blur(4px);
        background: rgb(0 0 0 / 30%);
    }
        .banner-section.payment-kiosk .dashboard-points .point-item span.point-text {
            white-space: normal;
            text-align: left;
            font-family: 'Manrope-SemiBold';
            font-size: 18px;
        }
        .banner-section.payment-kiosk .dashboard-points .point-item .point-icon {
            width: 50px;
            height: 50px;
        }

            .banner-section.payment-kiosk .dashboard-points .point-item .point-icon svg {
                width: 100%;
                height: 100%;
            }
.wow {
    animation-delay: 500ms;  /*Delay the animation by 1 second */
}
/*Product-section*/
.product-section {
    padding: 60px 160px; /* Top/Bottom: 60px, Left/Right: 160px */
}
/* Product Header */
.product-header {
    text-align: center; /* Center-align text */
    margin-bottom: 40px; /* Space below header */
}

    .product-header .product-title {
        font-size: 56px;
        font-family: 'Manrope-semibold';
        margin-bottom: 30px;
        line-height: 45px;
    }

    .product-header .product-subtitle {
        font-size: 25px; /* Subtitle size */
        color: #666; /* Subdued text color */
        margin-bottom: 0;
    }
.row.products-row .col-md-3.p-0 {
    width: calc(25% - 23px);
}
.row.products-row {
    row-gap: 10px;
    column-gap: 30px;
}
.product-card-in {
    float: left;
    width: 100%;
    height: 265px;
    background: #e7e7e7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3.product-name {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-family: 'Manrope-SemiBold';
    margin-top: 10px;
    margin-bottom: 0px;
}
img.product-image {
    float: left;
    width: 100%;
    height: auto;
}
    img.product-image.single-image {
        width: auto;
        height: calc(100% - 20px);
    }
        img.product-image.single-image.pay-parking-product {
            margin-right: 40px;
            margin-top: 15px;
        }




.char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-20px); /* Start slightly to the left */
    animation: fadeIn 0.5s forwards;
    animation-delay: calc(var(--char-index) * 0.1s); /* Stagger the animation */
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0); /* Move to original position */
    }
}

/*About us section*/
.about-title {
    color: #333;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

    .feature-list li {
        color: #302f2f;
        font-size: 24px;
        margin-bottom: 0px;
        display: flex;
        column-gap: 10px;
    }

.read-more-btn {
    background-color: #1a75ff;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

    .read-more-btn:hover {
        background-color: #0052cc;
        transform: translateY(-2px);
    }

.anpr-image {
    border-radius: 10px;
    float: left;
    height: calc(100% - 138px);
    overflow: hidden;
    background-image: url(../images/about-us.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
    float: left;
    width: 100%;
}

.stat-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 10px 10px 20px;
    text-align: left;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.10);
}

.stat-number {
    color: #1a75ff;
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 5px;
    background: linear-gradient(180deg, #2d88e3, #0045c6);
    -webkit-background-clip: text;
    color: transparent;
}

.stat-label {
    color: #333;
    font-size: 16px;
    margin: 0;
    font-family: 'Manrope-SemiBold';
}
h2.about-subtitle.h3.mb-4 {
    font-size: 36px;
    font-family: 'Manrope-SemiBold';
    text-align: center;
}
.about-us-row {
    float: left;
    width: 100%;
    gap: 25px;
}

    .about-us-row .col-lg-6 {
        width: calc(50% - 13px);
        padding-right: 0px;
    }

section.aboutus-section {
    width: 100%;
    padding: 0px 160px 60px;
}

    section.aboutus-section .container {
        float: left;
        width: 100%;
        max-width: unset;
        padding: 0;
    }
  /*  section.aboutus-section .product-header h2.product-title {
        margin-bottom: 0px;
    }*/
span.point-dot {
    width: 10px;
    min-width: 10px;
    height: 10px;
    position: relative;
    display: inline-flex;
    background: #302f2f;
    border-radius: 50%;
    margin-top: 15px;
}
.explore-btn.read-mr-btn {
    padding-bottom: 0px;
}
section.aboutus-section .container-fluid.pr-0 {
    padding-right: 0px;
}
/*About us section end*/
/*News and events section start*/
.news-section {
    padding: 0px 0px 60px 0px;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 56px;
    font-family: 'Manrope-semibold';
    margin-bottom: 30px;
    line-height: 45px;
}

.section-subtitle {
    font-size: 25px;
    color: #666;
    margin-bottom: 0;
}

.news-container {
    display: flex;
    gap: 30px;
    position: relative;
    padding: 0px 160px;
    height: 440px;
    align-items: center;
    background-image: url('../images/news-container-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.news-content-wrapper {
    flex: 1;
}

.news-image {
    width: 465px;
    height: 100%;
    /* overflow: hidden; */
    border-radius: 10px;
    position: relative;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 16px;
        border: solid 2px white;
    }
.news-image-in {
    width: 100%;
    height: 600px;
    position: absolute;
    inset: 0;
    top: unset;
}

.news-content {
    flex: 1;
    padding: 30px 0px 30px 30px;
    width: 340px;
    height: 100%;
    border-radius: 12px;
    background: rgb(255 255 255 / 20%);
    backdrop-filter: blur(2px);
}

.news-title {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Manrope-SemiBold';
}

.news-description {
    color: #fff;
    margin-bottom: 20px;
}

.news-arrow {
    display: flex;
    width: 45px;
    height: auto;
    transition:transform 0.3s ease
}
    .news-arrow svg {
        width: 100%;
        height: 100%;
        fill: white;
    }

.floating-events {
    width: 300px;
    height: 400px;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Add gradient overlays */
    /*.floating-events::before,
    .floating-events::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 100px;
        z-index: 1;
        pointer-events: none;
    }*/

    /*.floating-events::before {
        top: 0;
        background: linear-gradient(to bottom, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
    }

    .floating-events::after {
        bottom: 0;
        background: linear-gradient(to top, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
    }*/

.events-wrapper {
    width: 100%;
    transition: font-size 0.5s ease;
    cursor: grab;
    display: flex;
    row-gap: 10px;
    flex-direction: column;
    align-items: center;
}

.event-item {
    padding: 5px 10px;
    /* margin: 10px; */
    /* background: #fff; */
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    color: white;
    font-size: 26px;
}

    .event-item.active {
        opacity: 1;
        background: rgb(255 255 255 / 30%);
        color: #fff;
        padding: 5px 20px;
        font-size: 30px;
    }
.news-section .container {
    max-width: unset;
}
.news-info-sec {
    width: 100%;
    height: 100%;
    column-gap: 30px;
}
.event-item.far {
    transform: rotateX(45deg);
}
.event-item.far-2 {
    transform: rotateX(-45deg);
}
.news-content:hover span.news-arrow {
    transform: translateX(10px);
}
/*News and events section end*/
/*Footer section start*/
.footer {
    background-color: #f8f9fa;
    padding: 30px 160px 30px;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    color: #1a75ff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.company-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.company-contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 1.5rem;
}

.address-block {
    flex: 1;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-block {
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0.8rem;
    color: #666;
}

.contact-icon {
    width: 20px;
    margin-right: 10px;
    color: #666;
}

.contact-text {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
}

    .contact-text:hover {
        color: #1a75ff;
    }

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

        .footer-links a:hover {
            color: #1a75ff;
        }

.social-icons {
    margin-top: 1rem;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: #f0f2f5;
        color: #666;
        margin-right: 10px;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            transform: translateY(-3px);
        }

    .social-icons .facebook:hover {
        background-color: #1877f2;
        color: white;
    }

    .social-icons .twitter:hover {
        background-color: #1da1f2;
        color: white;
    }

    .social-icons .instagram:hover {
        background-color: #e4405f;
        color: white;
    }

    .social-icons .linkedin:hover {
        background-color: #0077b5;
        color: white;
    }

    .social-icons .blogger:hover {
        background-color: #fc4f08;
        color: white;
    }

.footer-bottom {
    /*border-top: 1px solid #dee2e6;*/
    padding-top: 20px;
    /*margin-top: 40px;*/
}

.footer-bottom-text {
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

    .footer-bottom-links a:hover {
        color: #1a75ff;
    }
.col-lg-5.footer-first-panel {
    max-width: 500px !important;
}
.col-lg-3.col-md-6.footer-quick-link {
    display: flex;
    justify-content: center;
}
.quick-link-parent {
    float: left;
    width: auto;
    display: flex;
    flex-direction: column;
}
/*Footer section end*/

@media (max-width: 1200px) {
    .carousel-control-prev, .carousel-control-next {
        width: auto;
    }
}
@media (max-width: 767px) {
    span.carousel-control-next-icon, span.carousel-control-prev-icon {      
        width: 55px;
        height: 55px;
    }
}