/* Apply Saira font to the whole website */
body {
    font-weight: 400;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--white-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
    color: var(--black-color);
    /* Bold */
}

.bg-silver-light {
    background-color: #F7F8FA !important;
}

.carousel-content h1 {
    font-weight: 600;

}

p {
    font-weight: 400;

}

button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

#schemeTable_filter {
    margin-bottom: 10px;
}

#schemeTable th,
#schemeTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Add border to pagination numbers */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #ddd;
    /* Blue border */
    padding: 5px 10px;
    margin: 2px;
    border-radius: 5px;
    background-color: white;
    color: #ddd;
    transition: 0.3s;
}





body {}



.navbar {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Make navbar sticky */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
    background-color: white;
}


/* Add spacing between navbar items */
.navbar-nav .nav-item {
    margin: 0 8px;
    /* Adjust the gap between menu items */
}

/* Navbar link default styles */
.navbar-nav .nav-link {
    text-align: center;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
    transition:
        color 0.3s ease-in-out,
        padding 0.3s ease-in-out,
        background-color 0.3s ease-in-out,
        border 0.3s ease-in-out;
    border: 2px solid transparent;
    /* initial border */
    border-radius: 5px;
    /* optional, for rounded edges */
}

.navbar-nav .nav-link:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    border: 2px solid var(--white-color);
    /* border on hover */
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/* Fade-in + Slide-down animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    font-size: 16px;
    padding: 5px 10px;
    transition: text-indent 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect (Only Move Text) */
.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-indent: 10px;
    /* Moves only the text, not the box */
}


.btn-custom {
    font-size: 14px;
    font-weight: bold;
}



/* Login Button */
.btn-signup {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
}

/* Sign Up Button */
.btn-login {
    padding: 7px;
    font-weight: 500;
    font-size: 16px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 5px;
    border: 2px solid var(--white-color);
}




footer {
    background-color: #2b343b;
    color: #fff;
    font-family: sans-serif;
}



.footer .widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 20px;
    position: relative;
    /* Space for icon */
}


.footer a {
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
    /* Hover Effect */
}

/* Divider Line */
.list-border li {
    border-bottom: 1px dashed #cccccc44;
    padding-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer ul {
        padding-left: 0;
    }
}

.footer-bottom {
    background-color: #002855;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: white;
    margin: 0;
}

.footer-bottom a {
    color: #45c4e9;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        width: 45%;
        /* Two sections per row on smaller screens */
    }
}

@media (max-width: 500px) {
    .footer-section {
        width: 100%;
        /* Single section per row on very small screens */
    }
}


.hero-section {
    padding: 20px 30px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assets/images/bg/bg-main.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-custom {
    background-color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease-out;
    color: var(--primary-color);
}

.hero-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 3.5rem;
    line-height: 1.2;
    animation: fadeInUp 3s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.message-box {
    backdrop-filter: blur(2px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid var(--success-color);
    border-right: 4px solid var(--success-color);
    animation: fadeIn 1.4s ease-out;
}

/* .service-card {
    background-color: rgb(255 255 255 / 23%);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    animation: fadeIn 1.6s ease-out;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    border-left: 3px solid var(--success-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
    color: #81c784;
    margin-right: 10px;
    font-size: 1.2rem;
} */

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: fadeIn 1.8s ease-out;
}

.btn-consultation {
    background-color: var(--success-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease-out;
}

.btn-consultation:hover {
    background-color: #43a047;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: transparent;
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 2.2s ease-out;
}

.btn-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation for service cards */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.service-card:nth-child(1) {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

.service-card:nth-child(2) {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.service-card:nth-child(3) {
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .badge-custom {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .cta-text {
        font-size: 1.2rem;
    }
}




.about-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .about-section {
        margin-top: 0;
    }
}


.about-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
    animation: fadeIn 1s ease-out;
}

.about-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--success-color);
}

.section-title-about {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title-about::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--success-color);
    transition: all 0.3s ease;
}

.about-card:hover .section-title-about::after {
    width: 100%;
}



.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.highlight-text-about {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--success-color);
}

.counter {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.label {
    font-size: 1rem;
    color: #6c757d;
}

/*** Services Start ***/
.service-section {
    padding: 50px 100px;
}

@media (max-width: 768px) {
    .service-section {
        padding: 10px;
        /* Or 0 if you want no padding */
    }
}





.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--success-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}


/*** Services End ***/
/*** Testimonial Start ***/

.testimonial-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 40px 60px;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* space between image and text */
    margin-bottom: 20px;
}

.testimonial .thumb {
    flex-shrink: 0;
    /* prevents image from shrinking */
}

.testimonial .thumb img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.testimonial .ml-100 {
    flex-grow: 1;
    text-align: left;
    /* aligns text to the start */
}



@media (max-width: 600px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial .ml-100 {
        text-align: center;
        margin-top: 10px;
    }

    .text-justify {
        text-align: center;
    }
}

/* .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: block;
    margin: 5px;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    background: var(--primary-color);
} */

.owl-nav {
    display: none;
}

/*** Testimonial end ***/




/*** blog start ***/

.blog-card {
    border-bottom: 5px solid var(--success-color);
    margin-bottom: 10px;
}

.blogbtn {
    background-color: #d1f1ff !important;
}

/*** blog end ***/



/*** about start ***/
.clientimg {
    max-width: 100%;
    height: auto;
    border-radius: 50% 50%;
    /* Optional for rounded corners */
}

/*** about end ***/




.page-header {
    background: #0d72c821 !important;
}


.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-dark);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-dark);
}

/* Contact Box Styling */
.contact-section {
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.contact-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    height: 100%;
    border-top: 5px solid var(--success-color);
    border-bottom: 1px solid var(--success-color);

}





.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}



/* .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
} */



.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.office-hours {
    margin-top: 30px;
}

.office-hours h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--dark-color);
}

.time {
    color: #666;
}

/* Contact Box Styling */

.section-title {
    margin: 20px 0;
}

.section-title h2 {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}



/* Double underline effect */

.section-title h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #000;
    margin: 5px auto 0;
}

.section-title h2::before {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #000;
    margin: auto;
    position: relative;
    top: 50px;
}

.upper-border {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    border-top: 5px solid var(--secondary-color);
}

.single-service {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    border-top: 5px solid var(--secondary-color);
}

/* .service-box:hover .line-bottom {
    width: 100%;
}

.linner:hover .line-bottom {
} */


/* Calculator Section Styles */
.calculator-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.calculator-container {
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 255, 0.1);
    padding: 40px;
    overflow: hidden;
}

.calculator-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--success-color);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}




.input-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: block;
}


.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.results-card {
    color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 255, 0.2); */
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-title {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.05rem;
    font-weight: 700;
}

.labeltext {
    font-size: 16px !important;
    background-color: #d9edf7;
    font-family: 'Montserrat', sans-serif;
}

input {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    background: transparent;
}

.textField {
    border-radius: none;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-color: #444444;
    background-color: #d9edf7;
    color: #000000;
    font-size: 22px;
    font-weight: normal;
    width: 10%;
    text-align: center;
}

/* Blog Card Styles */
.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Image height consistency */
.blog-img img {
    width: 100%;
    height: 200px;
    /* Fixed image height */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Content section should auto-expand */
.blog-content {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Text Styling */
.blog-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.blog-description {
    font-size: 0.9rem;
    color: #666;
}

/* Button */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding: 5px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(13, 71, 161, 0.3);
    color: white;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .blog-card {
        max-width: 100%;
    }

    .blog-img img {
        height: 180px;
    }
}



/* New Card Styling */
.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
    border: 1px solid #d2e5de;
    border-top: 5px solid var(--primary-color);
    /* border-bottom: 3px solid var(--primary-color); */
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    border-top: 5px solid var(--heading-color);
    /* border-bottom: 3px solid var(--heading-color); */
}

.news-date {
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.news-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.news-card .btn-primary {
    align-self: start;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-title {
        font-size: 16px;
    }

    .news-description {
        font-size: 13px;
    }

    .news-card {
        padding: 12px;
    }
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    border-top: 3px solid var(--secondary-color);
    /* Add top border */
}

/* Add top border to all except the first */
.accordion-item+.accordion-item {
    border-top: 3px solid var(--secondary-color);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark-color);
    background-color: #f8f9fa;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--light-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 255, 0.1);
}


.accordion-body {
    padding: 20px 25px;
    color: #555;
    line-height: 1.7;
}



.slider-container {
    padding: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-radius: 8px;
}



.logo-track img {
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo-track img:hover {
    transform: scale(1.1);
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}