@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2a6e;
    --secondary-color: #010e29;
    --accent-color: #0a2a6e;
    --text-color: #333;
    --light-text: #f8fafc;
    --dark-bg: #010e29;
    --light-bg: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Global List Icon Colors - Make all list icons blue */
ul li i,
.expertise-list li i,
.feature-detail ul li i,
li i.fas,
li i.far,
li i.fab {
    color: var(--primary-color) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    background-clip: unset !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Standardized Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}



.section-header p {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.testimonials .section-header {
    margin-bottom: 1.5rem;
}

.testimonials .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.testimonials .section-header p {
    font-size: 13.6px;
    margin-top: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #021642;
    color: white;
    box-shadow: 0 4px 6px rgba(2, 22, 66, 0.25);
}

.btn-primary:hover {
    background-color: #010e29;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(2, 22, 66, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #042160 0%, #052772 50%, #0a2a6e 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(135deg, #011c57 0%, #052772 50%, #0a2a6e 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.nav-list a {
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

.nav-list a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background-color: #0d3ea7;
    display: flex;
    align-items: center;
    color: var(--light-text);
    margin-top: 0;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh; /* Increased height for more impact on index page */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-content h2 span {
    color: #fff;
    position: relative;
    display: inline-block;
}

.hero-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Infor Solutions Banner */
.infor-solutions-heading {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: white;
    background-color: #0078d7;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Services Section */
.services {
    padding: 4rem 0 3.5rem;
    background-color: #f8fafc;
}

.tabs-container {
    margin-top: 3rem;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    background-color: #f8fafc;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px 4px 0 0;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #021642;
    background-color: rgba(2, 22, 66, 0.05);
}

.tab-btn.active {
    color: #021642;
    background-color: rgba(2, 22, 66, 0.08);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    padding: 2rem;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-pane h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Sub-tabs Styling */
.sub-tabs-container {
    margin-top: 1.5rem;
}

.sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0.5rem 0.75rem;
    background-color: #f8fafc;
    border-radius: 4px;
}

.sub-tab-btn {
    padding: 0.8rem 1.5rem;
    background: #f1f5f9;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sub-tab-btn:hover {
    background-color: #e2e8f0;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.sub-tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

.sub-tab-content {
    background-color: white;
    border-radius: 6px;
}

.sub-tab-pane {
    display: none;
}

.sub-tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.feature-detail {
    padding: 1.5rem;
    border-radius: 6px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.feature-detail:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-detail-content {
    order: 1;
}

.feature-detail-image {
    order: 2;
    text-align: center;
}

.feature-detail-image img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-detail:hover .feature-detail-image img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-detail i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.feature-detail h4 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-detail p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.feature-detail ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.feature-detail ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    color: #475569;
}



@media (max-width: 768px) {
    .feature-detail {
        grid-template-columns: 1fr;
    }

    .feature-detail-content,
    .feature-detail-image {
        order: 0;
    }

    .feature-detail-image {
        margin-bottom: 1.5rem;
    }
}

.info-features,
.service-features,
.staffing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--light-bg);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0 2.5rem;
    background-color: #f8fafc;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.testimonial-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-container {
    overflow: hidden;
    position: relative;
    height: 240px;
    margin-bottom: 0.5rem;
    width: 100%;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f1f5f9;
    width: 100%;
}

.quote {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.15;
}

.testimonial-content p {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin: auto 40px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    margin-top: 1rem;
}

.client-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.client-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    text-align: center;
}

.client-info p {
    font-style: normal;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    line-height: 1.4;
}

.testimonial-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e2e8f0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #94a3b8;
}

.dot.active {
    background-color: #021642;
    transform: scale(1.2);
}

/* Footer Section */
.footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 1.5rem 0 0.75rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav a {
    color: #cbd5e1;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-info i {
    color: #60a5fa;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.75rem;
    text-align: center;
}

/* Animation Styles */
.will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 2rem;
    }

    .main-logo {
        height: 35px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 3rem 2rem;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-radius: 0;
        border: none;
        gap: 1rem;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        width: 80%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }

    .hero {
        height: auto !important; /* Override fixed height on mobile */
        padding: 80px 0 40px;
        display: flex;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .tabs {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        flex-wrap: nowrap;
        width: 100%;
    }

    .tab-btn {
        width: 33.33%;
        text-align: center;
        padding: 0.85rem 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 0;
    }

    .sub-tabs {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.25rem;
        flex-wrap: nowrap;
        width: 100%;
    }

    .sub-tab-btn {
        flex: 1;
        text-align: center;
        padding: 0.7rem 0.25rem;
        font-size: 0.8rem;
        border-radius: 3px;
        margin: 0 1px;
        box-shadow: none;
    }

    .feature-detail {
        padding: 1.5rem;
    }

    .testimonial-container {
        height: 280px;
    }

    .testimonial-content {
        padding: 1.5rem;
        width: 100%;
    }

    .prev-btn,
    .next-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 60px 0 30px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .infor-solutions-heading {
        font-size: 1.5rem;
        padding: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.4rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .tab-btn {
        padding: 0.7rem 0.25rem;
        font-size: 0.8rem;
        letter-spacing: 0;
        font-weight: 600;
        background-color: rgba(37, 99, 235, 0.03);
    }

    .tab-btn.active {
        background-color: rgba(37, 99, 235, 0.1);
    }

    .sub-tab-btn {
        padding: 0.6rem 0.2rem;
        font-size: 0.75rem;
        letter-spacing: 0;
        margin: 0;
    }

    .feature {
        padding: 1rem;
    }

    .testimonial-content {
        padding: 1.25rem;
        width: 100%;
    }

    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonial-container {
        height: 300px;
    }

    .prev-btn,
    .next-btn {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .client-info h4 {
        font-size: 1rem;
    }

    .client-info p {
        font-size: 0.85rem;
    }

    .infor-solutions-heading {
        font-size: 1.2rem;
        padding: 1rem;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }
}
