/* ================= Global Styles ================= */
:root {
    --primary: #2563eb;
    --secondary: #4f46e5;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --btn: linear-gradient(135deg, #598cad 10%, #004387 90%);
}

body {
    font-family: 'inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
}

/* ================= Common Components ================= */
.view-profile-btn,
.copy-btn {
    background: var(--btn);
    color: white;
    transition: all 0.2s ease;
}

.view-profile-btn {
    width: 100%;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.copy-btn {
    padding: 0.15rem 0.3rem !important;
    font-size: 0.7rem !important;
    margin-left: 5px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.2) !important;
}

.copy-btn.btn-success {
    color: white !important;
}

/* ================= Navbar Styles ================= */
#mainNavbar {
    background: linear-gradient(135deg, #204056 10%, #0A2540 90%);
    padding: 0.8rem 1rem;
    transition: all 0.4s ease;
}

#mainNavbar.scrolled {
    background-color: #ffffff;
    padding: 0.6rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#mainNavbar .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin: 0 12px;             
    padding: 6px 12px;
    border-radius: 8px;     
    transition: all 0.3s ease;
}

/* Hover effect */
#mainNavbar .nav-link:hover {
    color: #0A2540 !important;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Active page effect */
#mainNavbar .nav-link.active {
    color: #0A2540 !important;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Scrolled state adjustments */
#mainNavbar.scrolled .nav-link {
    color: #0A2540 !important;
}

#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
    background-color: #0A2540;
    color: #ffffff !important;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    border: 1px solid #fdfdfd4d;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNavbar.scrolled .navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#mainNavbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================= Profile Styles ================= */
.profile-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.profile-link:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Avatar Styles */
.profile-avatar-sm,
.profile-avatar-lg {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-sm {
    width: 50px;
    height: 50px;
    background: #0047d6;
    border: 2px solid rgb(252, 252, 252);
}

.profile-avatar-lg {
    width: 80px;
    height: 80px;
    background: #0d47b1;
    border: 2px solid #0B5ED7;
}

.profile-avatar-sm img,
.profile-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dropdown card */
.profile-card {
    min-width: 250px;
    border: none;
    text-align: center;
}

/* ================= Section Layouts ================= */
.hero-section {
    margin-top: 120px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ================= Clients Section ================= */
.clients-section {
    background-color: #f8fafc;
}

.clients-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.clients-label::before,
.clients-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--gray);
    opacity: 0.3;
}

.clients-label::before {
    left: -60px;
}

.clients-label::after {
    right: -60px;
}

.client-logo {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.client-logo i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.client-logo span {
    font-weight: 600;
    color: var(--dark);
}

/* ================= Features Section ================= */
.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transition: height 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ================= How It Works Section ================= */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 40px;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ================= Benefits Section ================= */
.benefits-section {
    background: #fff;
    padding: 80px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    border-radius: 10px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--dark);
}

.benefit-content p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--gray);
}

.benefit-image {
    height: 480px;
    width: 600px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-image:hover {
    transform: scale(1.03);
}

/* ================= Testimonial Section ================= */
.testimonial-section {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonial-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.testimonial-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 32%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.author-details p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* ================= FAQ Section ================= */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    background: white;
    padding: 18px 20px;
    font-weight: 600;
    color: var(--dark);
    border: none;
    box-shadow: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #f0f4ff;
}

.accordion-button::after {
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    filter: hue-rotate(200deg);
}

.accordion-body {
    padding: 18px 20px;
    color: var(--gray);
    line-height: 1.6;
}

/* ================= CTA Section ================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    transition: transform 0.3s;
}

.cta-buttons .btn:hover {
    transform: translateY(-4px);
}

/* ================= Footer Section ================= */
.site-footer {
    padding: 60px 40px 30px;
    background: #0a2540;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    color: #fff;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* ================= Profile Modal Styles ================= */
#profileModal {
    margin-top: 80px;
}

#profileModal .modal-dialog {
    max-width: 650px;
    animation: modalAppear 0.3s ease-out;
}

#profileModal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

#profileModal .modal-header {
    background: linear-gradient(135deg, #3A7BD5 0%, #00D2FF 100%);
    border-bottom: none;
    padding: 1.2rem 1.8rem;
    position: relative;
}

#profileModal .modal-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 16px;
    background: linear-gradient(135deg, #3A7BD5 0%, #00D2FF 100%);
    opacity: 0.08;
    z-index: 1;
}

#profileModal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

#profileModal .btn-close {
    filter: invert(1);
    opacity: 0.85;
    background-size: 0.8rem;
    padding: 0.5rem;
}

#profileModal .modal-body {
    padding: 1.6rem;
}

#profileModal .profile-image-container {
    position: relative;
    margin-bottom: 1.2rem;
}

#profileModal .profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#profileModal .profile-badge {
    position: absolute;
    bottom: 8px;
    right: 15px;
    background: #3A7BD5;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
}

#profileModal #modal-name {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: #2c3e50;
}

#profileModal #modal-job-title {
    color: #3A7BD5;
    font-weight: 500;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

#profileModal .info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    padding: 0.65rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

#profileModal .info-row:hover {
    background-color: #f8f9fa;
}

#profileModal .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3A7BD5 0%, #00D2FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.9rem;
    flex-shrink: 0;
    font-size: 0.95rem;
}

#profileModal .info-content {
    flex: 1;
}

#profileModal .info-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

#profileModal .info-value {
    font-weight: 500;
    color: #2c3e50;
    word-break: break-word;
    font-size: 0.95rem;
    line-height: 1.4;
}

#profileModal .info-value a {
    color: #3A7BD5;
    text-decoration: none;
    transition: color 0.2s;
}

#profileModal .info-value a:hover {
    color: #00D2FF;
    text-decoration: underline;
}

#profileModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.8rem;
}

#profileModal .modal-footer .btn {
    border-radius: 6px;
    padding: 0.45rem 1.2rem;
    font-weight: 500;
    font-size: 0.95rem;
}

#profileModal .btn-secondary {
    background: #6c757d;
    border: none;
}

#profileModal .btn-secondary:hover {
    background: #5a6268;
}

/* Animation for modal appearance */
@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================= Table Styles ================= */
.resizable-table-container {
    position: relative;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 100px;
}

.resizable-table {
    table-layout: fixed;
    width: auto;
    min-width: 100%;
}

.resizable-table th {
    position: relative;
    padding-right: 15px !important;
    user-select: none;
    width: 120px;
    min-width: 120px;
    max-width: 200px;
    overflow: hidden;
    border: 1px solid #000000ff !important;
}

.resizable-table td {
    font-family: 'Calibri', sans-serif;
    width: 120px;
    min-width: 120px;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #198754;
    font-size: 17px;
}

.resize-handle {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    z-index: 1;
}

.resize-handle:hover,
.resize-handle.active {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Column drag indicator */
.column-drag-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #198754;
    z-index: 10;
    display: none;
}

/* Dragging state */
th.dragging {
    background-color: #495057 !important;
    opacity: 0.8;
}

th.drag-over {
    background-color: #3d444b !important;
}

/* Add a visual indicator that content is hidden */
.resizable-table td::after {
    content: '...';
    position: absolute;
    right: 5px;
    bottom: 2px;
    color: #6c757d;
    font-size: 12px;
    background: linear-gradient(90deg, transparent 0%, var(--bs-table-bg) 30%);
    padding-left: 10px;
}

/* Draggable column ghost element */
.column-ghost {
    position: fixed;
    background: #343a40;
    color: white;
    padding: 10px;
    border-radius: 4px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    display: none;
}

/* ================= column Sorting Styles ================= */
.sortable-header {
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sortable-header:hover {
    color: #3A7BD5;
}

.resize-handle {
    z-index: 2;
}

/* ================= Responsive Styles ================= */
@media (max-width: 991.98px) {
    #mainNavbar {
        padding: 0.8rem 1rem;
    }

    #navbarContent {
        background: linear-gradient(135deg, #204056 10%, #0A2540 90%);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .d-flex.align-items-center {
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Mobile View for How It Works */
    .process-steps {
        flex-direction: column;
        gap: 50px;
        position: relative;
        padding-left: 30px;
    }

    .process-steps::before {
        content: "";
        position: absolute;
        top: 0;
        left: 30px;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--primary), var(--secondary));
    }

    .step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        width: 55px;
        height: 55px;
        font-size: 1rem;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }

    .step-content {
        background: #fff;
        padding: 12px 16px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .step-content h3 {
        margin: 0 0 5px;
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    /* Benefits Mobile */
    .benefits-section {
        padding: 60px 0;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .benefit-content h4 {
        font-size: 1.05rem;
    }

    .benefit-content p {
        font-size: 0.9rem;
    }

    .benefit-image {
        margin-top: 30px;
    }

    /* Testimonial Mobile */
    .testimonial-card {
        flex: 0 0 48%;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .clients-label::before,
    .clients-label::after {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .accordion-button {
        text-align: left;
        font-size: 0.95rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    #profileModal .modal-dialog {
        margin: 0.5rem;
    }

    #profileModal .modal-header {
        padding: 1rem 1.2rem;
    }

    #profileModal .modal-body {
        padding: 1.2rem;
    }

    #profileModal .profile-image {
        width: 90px;
        height: 90px;
    }

    #profileModal .info-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}