/* Ananta Industries - Custom Premium CSS File */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

:root {
    --primary: #051829;
    /* Old website's primary dark navy color */
    --primary-light: #0b2238;
    /* Old website's dark slate navy light */
    --primary-dark: #020b12;
    /* Old website's near black navy */
    --accent: #2a73d2;
    /* Old website's brand royal blue */
    --accent-hover: #1b5bb5;
    /* Royal blue hover state */
    --accent-dark: #0b3356;
    /* Darker brand blue */
    --gold: #fac16a;
    /* Old website's warm gold color */
    --gold-hover: #e5ac50;
    /* Warm gold hover */
    --gold-dark: #b5802a;
    /* Warm gold dark */
    --amber: #e4b500;
    /* Old website's accent gold/amber */
    --text-dark: #051829;
    /* Dark Navy Text */
    --text-light: #f8fafc;
    /* Clean Off-white Text */
    --text-muted: #64748b;
    /* Slate Gray Text */
    --bg-light: #f8fafc;
    /* Cool Light Grey */
    --bg-dark: #020b12;
    /* Extreme Dark Navy */
    --border-color: #e2e8f0;
    /* Soft Border Line */

    --font-heading: 'League Spartan', sans-serif;
    --font-body: 'League Spartan', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 15px rgba(250, 193, 106, 0.3);
}

/* General Reset & Base Styles */
body {
    font-family: var(--font-body);
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
}

p {
    font-size: 1.25rem;
}

h1 {
    font-size: 4.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Header & Top Bar */
.topbar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .text-white-50 {
    color: #ffffff !important;
}

.topbar-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-info a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.topbar-info a:hover {
    color: var(--accent);
}

/* Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 5px 0;
    transition: var(--transition);
    border-bottom: none;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-bottom: none;
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-custom .navbar-brand img {
    height: 75px !important;
    max-height: 80px !important;
    transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand img {
    height: 55px !important;
}

.navbar-custom .navbar-brand span {
    color: var(--gold);
}

.navbar-custom .nav-link {
    color: #475569;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-item.active .nav-link {
    color: var(--accent);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-item.active .nav-link::after {
    width: 60%;
}

.navbar-toggler-custom {
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    background: transparent;
    transition: var(--transition);
}

.navbar-toggler-custom:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent);
}

/* Buttons */
.btn-accent {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #000000;
    padding: 10px 24px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.btn-outline-accent {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #000000;
    padding: 10px 24px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.navbar-custom .btn-accent {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    font-size: 1.15rem;
    padding: 8px 20px !important;
}

.navbar-custom .btn-accent:hover {
    background-color: var(--accent);
    /* Royal Blue Logo color */
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: none;
}

/* Hero Slider / Banner */
.hero-carousel {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-color: var(--primary);
}

.hero-carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-caption {
    color: #000000;
    max-width: 700px;
}

.hero-caption h1 {
    color: #000000;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-caption h1 span {
    color: var(--accent);
    /* Royal Blue Logo color */
}

.hero-caption p {
    font-size: 1.25rem;
    color: #334155;
    /* Slate Gray for high readability */
    margin-bottom: 30px;
}

.hero-caption>span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 10px;
}

/* Inner Page Header */
.inner-header {
    background: linear-gradient(135deg, #133863 0%, #2a73d2 100%);
    position: relative;
    padding: 120px 0 80px;
    color: var(--text-light);
    border-bottom: none;
    overflow: hidden;
}

.inner-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    mix-blend-mode: overlay;
}

.inner-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb-custom {
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-custom a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumb-custom span::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* Section Formatting */
.section-padding {
    padding: 90px 0;
}

.bg-dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-dark-section .section-title h2 {
    color: var(--text-light);
}

.section-title {
    margin-bottom: 50px;
}

.section-title span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    display: none;
}

/* About Us Section Home */
.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold);
    color: var(--primary);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-dark);
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--primary);
}

.experience-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Feature Cards */
.feature-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 0;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(250, 193, 106, 0.3);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent);
    color: var(--primary);
}

/* Stats / Counter Section */
.stats-counter-section {
    background-color: var(--accent);
    padding: 40px 0 !important;
}

.counter-box {
    text-align: center;
    padding: 5px 15px;
}

.counter-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.counter-box p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
}

/* Products grid & Cards */
.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(250, 193, 106, 0.4);
}

.product-img-wrapper {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    background-color: #f1f5f9;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2a73d2;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 1px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 999;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.product-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Product Specifications Table */
.spec-table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.spec-table th {
    background-color: var(--primary-light);
    color: var(--text-light);
    font-weight: 600;
}

.spec-table tr:hover {
    background-color: rgba(250, 193, 106, 0.05);
}

/* Filters */
.filter-btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    color: #475569;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

/* Contact Info & Forms */
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(250, 193, 106, 0.15);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-control-custom {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: 6px;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(250, 193, 106, 0.25);
}

.form-label-custom {
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    padding-left: 30px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 2px;
    height: 90%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

/* CTA Bar */
.cta-bar {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 60px 0;
}

.cta-bar h2 {
    color: var(--text-light);
    font-weight: 800;
}

.cta-bar .btn-accent {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.cta-bar .btn-accent:hover {
    background-color: #ffffff;
    color: var(--accent);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* Material Features Grid */
.material-feature-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    transition: var(--transition);
}

.material-feature-box:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
}

.material-feature-box h4 {
    color: var(--accent);
    margin-bottom: 12px;
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s forwards ease-out;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

    .hero-carousel .carousel-item,
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
    }

    .hero-caption h1 {
        font-size: 2.5rem;
    }

    .inner-header {
        padding: 100px 0 50px;
    }

    .inner-header h1 {
        font-size: 2.25rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        display: none;
    }

    .hero-caption h1 {
        font-size: 2rem;
    }

    .hero-caption p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        text-align: center;
    }
}

/* Leadership Carousel Controls */
#leadershipCarousel {
    position: relative;
    padding: 0 60px;
}

#leadershipCarousel .custom-carousel-control {
    width: 45px;
    height: 45px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    opacity: 0.85;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#leadershipCarousel .carousel-control-prev {
    left: 0;
}

#leadershipCarousel .carousel-control-next {
    right: 0;
}

#leadershipCarousel .custom-carousel-control:hover {
    background-color: var(--accent);
    color: #ffffff;
    opacity: 1;
    box-shadow: var(--shadow-glow);
}

#leadershipCarousel .carousel-control-icon {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive for leadership carousel */
@media (max-width: 767.98px) {
    #leadershipCarousel {
        padding: 0;
    }

    #leadershipCarousel .custom-carousel-control {
        display: none;
    }
}

/* Custom Accordion Styling for FAQ */
.accordion-custom {
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(42, 115, 210, 0.25);
}

.accordion-custom .accordion-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-custom .accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 115, 210, 0.3);
}

.accordion-custom .accordion-button {
    font-weight: 600;
    color: var(--primary);
    background-color: #ffffff;
    padding: 20px 24px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--accent);
    background-color: rgba(42, 115, 210, 0.05);
    box-shadow: none;
}

.accordion-custom .accordion-button::after {
    filter: grayscale(1) brightness(0.2);
    transition: var(--transition);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    filter: none;
    transform: rotate(-180deg);
}

.accordion-custom .accordion-body {
    padding: 24px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    background-color: #ffffff;
}

/* What We Offer Section Styles */
.offer-section {
    background-color: #ffffff;
}

.offer-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.offer-title::after {
    display: none;
}

.offer-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-offer {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--accent);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-offer:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.offer-item {
    margin-bottom: 30px;
}

.offer-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.offer-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-right: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.offer-item-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}

.offer-item-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .offer-title {
        font-size: 2rem;
    }

    .offer-item-title {
        font-size: 1.3rem;
    }

    .offer-item {
        margin-bottom: 40px;
    }
}

/* Why We Are Best Section */
.why-best-box {
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 30px 24px;
    background-color: #ffffff;
    transition: var(--transition);
}

.why-best-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-best-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(42, 115, 210, 0.25);
}

.why-best-item:hover .why-best-icon {
    transform: scale(1.08);
    background-color: var(--accent-hover);
}

/* Client Slider Section Styles */
.client-section {
    background-color: #ffffff !important;
}

.client-slider-container {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.client-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: clientMarquee 25s linear infinite;
}

.client-slider-container:hover .client-slider-track {
    animation-play-state: paused;
}

.client-logo-item {
    width: 260px;
    flex-shrink: 0;
}

.client-card {
    height: 110px;
    border: 1.5px solid #e5e9f0 !important;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.client-card:hover {
    border-color: var(--accent) !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.client-logo-img {
    max-height: 75px;
    max-width: 85%;
    object-fit: contain;
    transition: var(--transition);
}

@keyframes clientMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-284px * 8));
    }
}