:root {
    --brand-blue: #0052cc;
    --brand-blue-dark: #0747a6;
    --brand-blue-light: #deebff;
}

.hero-badge {
    background: #deebff !important;
    color: #0747a6 !important;
    padding: 0.25rem 1rem !important;
    border-radius: 9999px !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
    border: none !important;
    line-height: 1.5 !important;
}

@media (max-width: 640px) {
    .hero-badge {
        font-size: 1rem !important;
        padding: 0.2rem 0.75rem !important;
    }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

.hero-section h1 .highlight {
    color: #0052cc;
    position: relative;
}

.hero-section .hero-image-wrapper {
    max-width: 1200px; 
    margin: 2rem auto 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #1e6fd8;
    padding: 0.5rem;
    background: #fff;
}

.hero-section .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 0.50rem;
    object-fit: cover;
}


/* ========================================
   Hero Description - Professional Design
   ======================================== */

   .hero-section .hero-description {
    font-size: 1.500rem;
    color: #64748b;
    max-width: 48rem;
    margin: 1.5rem auto;
    line-height: 1.8;
    }

   .hero-section .hero-description {
    font-size: 1.25rem;
    color: #475569;
    max-width: 52rem;
    margin: 1.5rem auto;
    line-height: 1.9;
    font-weight: 400;
    position: relative;
    padding: 0 1rem;
}
@media (max-width: 768px) {
    .hero-section .hero-description {
        font-size: 1.05rem;
        line-height: 1.8;
        padding: 0 0.5rem;
    }

    .hero-section .hero-description::before,
    .hero-section .hero-description::after {
        font-size: 2.5rem;
    }

    .hero-section .hero-description::before {
        top: -5px;
        right: 0;
    }

    .hero-section .hero-description::after {
        bottom: -20px;
        left: 0;
    }

    .hero-section .hero-description-wrapper .description-text {
        font-size: 1rem;
        padding: 1.25rem 1.25rem;
        margin: 0 0.5rem;
    }

    .hero-section .hero-description-wrapper .description-text::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-section .hero-description::before,
    .hero-section .hero-description::after {
        display: none;
    }

    .hero-section .hero-description-wrapper .description-text {
        font-size: 0.9rem;
        padding: 1rem 1rem;
        border-radius: 0.75rem;
    }
}



/* ========================================
   Hero CTA Button
   ======================================== */
.hero-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0052cc, #1a6dff);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

.hero-cta-primary i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-cta-primary span {
    position: relative;
    z-index: 1;
}

.hero-cta-primary:hover i {
    transform: scale(1.15);
}

.hero-cta-primary:active {
    transform: translateY(0px);
}

.hero-cta-primary::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid rgba(0, 82, 204, 0.3);
    animation: cta-pulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.08);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero-cta-primary {
        font-size: 1rem;
        padding: 0.75rem 1.75rem;
        gap: 0.5rem;
    }

    .hero-cta-primary i {
        font-size: 1.25rem;
    }

    .hero-cta-primary::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta-primary {
        font-size: 0.9rem;
        padding: 0.625rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-primary i {
        font-size: 1.1rem;
    }

    .hero-cta-wrapper {
        padding: 0 1rem;
    }
}


/* ========================================
features
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
    padding: 1.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    border-color: #0052cc;
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.15);
    transform: translateY(-4px);
}

.feature-card .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: #0052cc;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card .icon-wrapper i {
    font-size: 1.5rem;
}

.feature-card:hover .icon-wrapper {
    background: #0747a6;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.10rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   section-heade
   ======================================== */
.section-header-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header-wrapper .section-icon {
    display: none;
}

.section-header-wrapper .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.section-header-wrapper .section-subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .section-header-wrapper .section-title {
        font-size: 1.5rem;
    }
    .section-header-wrapper .section-subtitle {
        font-size: 0.875rem;
    }
}

/* ========================================
pricing
======================================== */
.pricing-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 2px solid #0052cc;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 28rem;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card .pricing-badge {
    background: #deebff;
    color: #0747a6;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.pricing-card .pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.pricing-card .pricing-subtitle {
    color: #94a3b8;
    font-size: 0.875rem;
}

.pricing-card .pricing-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0052cc;
    line-height: 1;
    margin: 1.5rem 0 0.25rem;
}

.pricing-card .pricing-amount small {
    font-size: 1.25rem;
    font-weight: 700;
    color: #475569;
}

.pricing-card .pricing-note {
    color: #94a3b8;
    font-size: 0.875rem;
}

.pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: right;
}

.pricing-card .pricing-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid #f1f5f9;
    font-size: 0.875rem;
    color: #475569;
}

.pricing-card .pricing-features li:first-child {
    border-top: none;
}

.pricing-card .pricing-features li i {
    color: #0052cc;
    font-size: 1.1rem;
}

.pricing-card .pricing-cta {
    display: block;
    width: 100%;
    background: #0664f1;
    color: #fff;
    font-weight: 700;
    padding: 0.875rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.125rem;
}

.pricing-card .pricing-cta:hover {
    background: #0747a6;
}

.pricing-card .pricing-footer-note {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* ========================================
   faq
   ======================================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-card {
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
    padding: 1.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-card:hover {
    border-color: #0052cc;
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.15);
    transform: translateY(-4px);
}

.faq-card .faq-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background: #0052cc;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-card .faq-icon-wrapper i {
    font-size: 1.5rem;
}

.faq-card:hover .faq-icon-wrapper {
    background: #0747a6;
    transform: scale(1.05);
}

.faq-card h3 {
    font-size: 1.10rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.faq-card p {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   marquee
   ======================================== */
.marquee-container-custom {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, #0052cc, #0747a6);
    padding: 0.75rem 0;
    direction: ltr;
}

.marquee-container-custom .marquee-track {
    display: inline-block;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-container-custom .marquee-track span {
    display: inline-block;
    margin: 0 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.20rem;
    letter-spacing: 0.5px;
}

.marquee-container-custom .marquee-track span i {
    font-style: normal;
    margin-left: 0.5rem;
}

.marquee-container-custom:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 640px) {
    .marquee-container-custom .marquee-track span {
        font-size: 1rem;
        margin: 0 0.75rem;
    }
}

/* ========================================
   CTA
   ======================================== */
.cta-section-custom {
    background: linear-gradient(135deg, #0052cc, #015ca0);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.cta-section-custom .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section-custom h2 {
    font-size: 2.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-section-custom p {
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    max-width: 36rem;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.cta-section-custom .cta-button {
    background: #fff;
    color: #0052cc;
    font-weight: 700;
    padding: 0.875rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-section-custom .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .cta-section-custom h2 {
        font-size: 1.75rem;
    }
    .cta-section-custom p {
        font-size: 1rem;
    }
}


/* ========================================
   lead
   ======================================== */
.lead-form-wrapper .card {
    border: 2px solid #deebff;
    border-radius: 1rem;
    overflow: hidden;
}

.lead-form-wrapper .card-header {
    background: #deebff;
    padding: 1.5rem;
    text-align: center;
}

.lead-form-wrapper .card-header h3 {
    font-weight: 700;
    color: #0747a6;
    margin: 0;
}

.lead-form-wrapper .form-control,
.lead-form-wrapper .form-select {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    transition: all 0.3s ease;
}

.lead-form-wrapper .form-control:focus,
.lead-form-wrapper .form-select:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}

.lead-form-wrapper .btn-submit {
    background: #0052cc;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 3rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.lead-form-wrapper .btn-submit:hover {
    background: #0747a6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.3);
}

.lead-form-wrapper .form-label {
    font-weight: 600;
    color: #0f172a;
}

.lead-form-wrapper .text-danger {
    color: #ef4444 !important;
}

/* ========================================
  alert
   ======================================== */
.alert-custom-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.alert-custom-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.alert-custom-success .btn-close,
.alert-custom-error .btn-close {
    padding: 1.25rem 1.25rem;
    background: transparent;
    font-size: 0;
    border: none;
    opacity: 0.5;
    cursor: pointer;
}

.alert-custom-success .btn-close::before {
    content: '×';
    font-size: 1.5rem;
    font-weight: 300;
    color: inherit;
}

.alert-custom-error .btn-close::before {
    content: '×';
    font-size: 1.5rem;
    font-weight: 300;
    color: inherit;
}



/* ========================================
   testimonials
   ======================================== */
   
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    border-color: #0052cc;
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.12);
    transform: translateY(-4px);
}

.testimonial-card .testimonial-avatar-top {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e2e8f0;
    background-size: cover !important;
    background-position: center !important;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.testimonial-card .testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-card .testimonial-stars i {
    margin: 0 1px;
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-style: italic;
    flex: 1;
}

.testimonial-card .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.testimonial-card .testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.testimonial-card .testimonial-author span {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
}



/* ========================================
   testimonials pro
   ======================================== */

.testimonials-section {
    position: relative;
    padding: 2rem 0 4rem 0;
    background: linear-gradient(180deg, #f8faff 0%, #eef4ff 50%, #f8faff 100%);
    border-radius: 2rem;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 82, 204, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 82, 204, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(0, 82, 204, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.testimonials-section .bg-shape-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section .bg-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}


.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 4px 20px rgba(0, 82, 204, 0.06),
        0 1px 3px rgba(0, 82, 204, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(0, 82, 204, 0.06);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #0052cc;
    box-shadow: 
        0 20px 40px rgba(0, 82, 204, 0.10),
        0 4px 12px rgba(0, 82, 204, 0.06);
    transform: translateY(-6px);
}

.testimonial-card .testimonial-avatar-top {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover !important;
    background-position: center !important;
    border: 3px solid #ffffff;
    box-shadow: 
        0 0 0 2px rgba(0, 82, 204, 0.15),
        0 8px 24px rgba(0, 82, 204, 0.12);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card .testimonial-avatar-top::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background-size: 200% 200%;
    z-index: -1;
    animation: gradient-rotate 3s ease-in-out infinite;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.testimonial-card:hover .testimonial-avatar-top {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.20), 0 12px 30px rgba(0, 82, 204, 0.15);
}

.testimonial-card .testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.testimonial-card .testimonial-stars i {
    margin: 0 1px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
    animation: star-pop 0.4s ease;
}

.testimonial-card:hover .testimonial-stars i:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-stars i:nth-child(2) { animation-delay: 0.05s; }
.testimonial-card:hover .testimonial-stars i:nth-child(3) { animation-delay: 0.10s; }
.testimonial-card:hover .testimonial-stars i:nth-child(4) { animation-delay: 0.15s; }
.testimonial-card:hover .testimonial-stars i:nth-child(5) { animation-delay: 0.20s; }

@keyframes star-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); color: #fbbf24; }
    100% { transform: scale(1); }
}

.testimonial-card .testimonial-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-style: italic;
    flex: 1;
    position: relative;
    padding: 0 0.5rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 82, 204, 0.06);
    width: 100%;
}

.testimonial-card .testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.testimonial-card .testimonial-author span {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-top: 2px;
}

.testimonial-card .testimonial-author span::before {
    content: '— ';
    color: #0052cc;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .testimonials-section {
        border-radius: 1.5rem;
        padding: 1rem 0 3rem 0;
    }
    
    .testimonials-section .bg-shape-1,
    .testimonials-section .bg-shape-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card .testimonial-avatar-top {
        width: 65px;
        height: 65px;
    }
    
    .testimonial-card .testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        border-radius: 1rem;
        padding: 0 0 2rem 0;
    }
}



/* ========================================
   section-header
   ======================================== */
   .section-header-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header-wrapper::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #60a5fa);
    border-radius: 4px;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.section-header-wrapper .section-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem auto;
    background: linear-gradient(135deg, #deebff, #bfdbfe);
    border-radius: 50%;
    font-size: 1.75rem;
    color: #0052cc;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.15);
}

.section-header-wrapper .section-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(0, 82, 204, 0.15);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.section-header-wrapper .section-icon:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.25);
}

.section-header-wrapper .section-icon i {
    font-size: 1.75rem;
}

.section-header-wrapper .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0052cc, #3b82f6);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.section-header-wrapper:hover .section-title::after {
    width: 80px;
}

.section-header-wrapper .section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin-top: 0.75rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.section-header-wrapper .section-title::before {
    content: '✦';
    color: #0052cc;
    font-size: 1.2rem;
    margin-left: 0.75rem;
    opacity: 0.6;
}

.section-header-wrapper .section-title::after {
    content: '✦';
    color: #0052cc;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    opacity: 0.6;
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
}

.section-header-wrapper .section-title::after {
    content: '✦';
    color: #0052cc;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    opacity: 0.6;
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    bottom: auto;
    left: auto;
}

.section-header-wrapper .section-title::before {
    content: '✦';
    color: #0052cc;
    font-size: 1.2rem;
    margin-left: 0.75rem;
    opacity: 0.6;
}
@media (max-width: 768px) {
    .section-header-wrapper .section-title {
        font-size: 1.5rem;
    }

    .section-header-wrapper .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .section-header-wrapper .section-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .section-header-wrapper .section-icon i {
        font-size: 1.3rem;
    }

    .section-header-wrapper .section-title::before,
    .section-header-wrapper .section-title::after {
        font-size: 0.9rem;
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }
}

@media (max-width: 480px) {
    .section-header-wrapper .section-title {
        font-size: 1.25rem;
    }

    .section-header-wrapper .section-title::before,
    .section-header-wrapper .section-title::after {
        display: none;
    }
}

