/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-color: #0EA5E9;
    --primary-dark: #0284C7;
    --success-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --info-color: #0EA5E9;
    --light-bg: #F8FAFC;
    --border-color: #E2E8F0;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--text-dark);
    background-color: #FFFFFF;
}

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==================== SELECTION ==================== */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

/* ==================== NAVBAR CUSTOMIZATION ==================== */
.navbar-custom {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    position: relative;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1s;
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* ==================== STICKY NAVBAR ==================== */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ==================== GRADIENT TEXT ==================== */
.gradient-text {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Gradient text for trust section (on white background) */
.trust-section .gradient-text {
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BADGES ==================== */
.bg-primary-gradient {
    background: linear-gradient(135deg, #250C77, #3B1A8C) !important;
    border: none;
    color: white;
    padding: 0.6rem 1.5rem !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    letter-spacing: 0.3px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
    padding: 0.5rem 0 1.5rem;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    
}

/* Hero Container with Rounded Corners */
.hero-section .row {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin: 0 auto;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
}

/* Hero Title */
.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-title-main {
    color: var(--text-dark);
    display: block;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #250C77, #3B1A8C);
    border-radius: 3px;
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    max-width: 560px;
}

.hero-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    margin: 0.25rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-feature-item i {
    color: #10B981;
    font-size: 1.1rem;
}

/* Hero CTA */
.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.25rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #250C77, #3B1A8C) !important;
    border: none;
    color: white !important;
    padding: 0.85rem 2.25rem !important;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(14,165,233,0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(14,165,233,0.35);
    background: linear-gradient(135deg, #0EA5E9, #0284C7) !important;
}

.btn-hero-secondary {
    background: white !important;
    border: 2px solid #E5E7EB;
    color: var(--text-dark) !important;
    padding: 0.85rem 2.25rem !important;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.4rem 0 0 0;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #E5E7EB, transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-visual-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Floating Cards */
.hero-visual .floating-card {
    position: absolute;
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-visual .floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    border-radius: 1.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-visual .floating-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 60px rgba(14,165,233,0.2), 0 12px 30px rgba(0, 0, 0, 0.1);
}

.hero-visual .floating-card:hover::before {
    opacity: 1;
}

.card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
    padding: 1rem;
}

.hero-visual .floating-card i {
    font-size: 2.75rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

/* Card Positioning and Animation */
.hero-visual .card-1 {
    top: 10%;
    left: 5%;
    animation: floatCard1 6s ease-in-out infinite;
}

.hero-visual .card-2 {
    top: 5%;
    right: 10%;
    animation: floatCard2 7s ease-in-out infinite;
}

.hero-visual .card-3 {
    bottom: 15%;
    left: 8%;
    animation: floatCard3 5s ease-in-out infinite;
}

.hero-visual .card-4 {
    bottom: 10%;
    right: 5%;
    animation: floatCard4 6.5s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-20px) translateX(-10px);
    }
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-25px) translateX(10px);
    }
}

@keyframes floatCard3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-18px) translateX(12px);
    }
}

@keyframes floatCard4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-22px) translateX(-8px);
    }
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 1400px) {
    .hero-section .row {
        max-width: 98%;
    }
}

@media (max-width: 991px) {
    .hero-section .row {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .contact-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-stat {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 767px) {
    .hero-section .row {
        padding: 2rem 1.25rem;
        border-radius: 1.5rem;
    }
    
    .cta-section .display-3 {
        font-size: 2.5rem;
    }
    
    .contact-section .display-4 {
        font-size: 2rem;
    }
    
    .cta-stat {
        margin-bottom: 1rem;
        min-height: 180px;
    }
    
    .cta-stat h4 {
        font-size: 1.2rem;
    }
    
    .cta-stat p {
        font-size: 0.95rem;
    }
    
    .cta-stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-stat i {
        font-size: 2.5rem !important;
    }
    
    .map-container iframe {
        height: 400px !important;
    }
    
    .footer-section .lead {
        font-size: 1rem;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonials-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section .display-3 {
        font-size: 2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-stat {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .cta-stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer-section {
        padding: 2.5rem 0 1.5rem;
    }
    
    .hero-section .row {
        padding: 1.75rem 1rem;
        border-radius: 1.25rem;
    }
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0 !important;
}

.trust-section .container {
    max-width: 1320px;
}

.trust-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover {
    transform: translateY(-12px);
}

.trust-card .trust-item {
    padding: 2.75rem 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
    border: 2px solid #0EA5E9;
    border-radius: 1.75rem;
    box-shadow: 0 12px 28px rgba(14,165,233,0.15), 0 4px 8px rgba(14,165,233,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-card .trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #250C77, #3B1A8C);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover .trust-item {
    border-color: #38BDF8;
    box-shadow: 0 24px 56px rgba(14,165,233,0.25), 0 12px 24px rgba(14,165,233,0.15);
    background: linear-gradient(135deg, #FFFFFF 0%, #DBEAFE 100%);
    transform: scale(1.02);
}

.trust-card:hover .trust-item::before {
    transform: scaleX(1);
    height: 6px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.trust-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    transition: all 0.4s ease;
    z-index: 1;
}

.trust-item-icon i {
    font-size: 1.75rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-card:hover .trust-item-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
}

.trust-item h3 {
    font-weight: 900 !important;
    font-size: 2.75rem !important;
    margin-bottom: 0.5rem !important;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.trust-item h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #250C77, #3B1A8C);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-card:hover .trust-item h3::after {
    width: 80%;
}

.trust-item p {
    font-size: 1rem !important;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    color: var(--text-muted) !important;
    font-weight: 600 !important;
    z-index: 1;
}

.trust-card:hover .trust-item p {
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    background: #F8FAFC;
    padding: 5rem 0;
}

.features-section .container {
    max-width: 1320px;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.modern-card {
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.modern-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    transform: translateY(-8px);
}

.modern-card:hover::before {
    transform: translateX(0);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-icon i {
    color: white !important;
    font-size: 2rem !important;
    display: block !important;
}

.modern-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #250C77, #3B1A8C) !important;
}

.bg-success-gradient {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.bg-info-gradient {
    background: linear-gradient(135deg, #0EA5E9, #0284C7) !important;
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #F59E0B, #FF4500) !important;
}

.bg-danger-gradient {
    background: linear-gradient(135deg, #EF4444, #DC2626) !important;
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
}

.feature-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.feature-link a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.feature-link a:hover {
    transform: translateX(5px);
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    background: #F8FAFC;
    padding: 5rem 0;
}

.why-us-section .container {
    max-width: 1320px;
}

.benefit-item {
    padding: 1.5rem 1.25rem;
    background: white;
    border-radius: 1rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-item:hover {
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.1);
    transform: translateX(8px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    min-width: 48px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
    flex-shrink: 0;
}

.why-us-visual {
    position: relative !important;
    min-height: 620px !important;
    margin-top: 2rem !important;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%) !important;
    border-radius: 2rem !important;
    padding: 3rem 2rem !important;
    overflow: hidden !important;
    border: 1px solid rgba(56, 189, 248, 0.15) !important;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.why-us-visual::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='%2338BDF8' stroke-width='0.5' opacity='0.15'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23grid)'/%3E%3C/svg%3E") !important;
    opacity: 1 !important;
    z-index: 0 !important;
}

.why-us-visual::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 350px !important;
    height: 350px !important;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(14, 165, 233, 0.08) 50%, transparent 70%) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
    animation: pulse 4s ease-in-out infinite !important;
}

.floating-box {
    position: absolute !important;
    width: 135px !important;
    height: 135px !important;
    background: white !important;
    border-radius: 1.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    animation: bounce 3s ease-in-out infinite !important;
    animation-delay: var(--delay) !important;
    border: none !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

.floating-box:hover {
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2) !important;
    transform: translateY(-8px) scale(1.05) !important;
}

.floating-box:nth-child(1) {
    top: 12% !important;
    left: 18% !important;
    --delay: 0s !important;
}

.floating-box:nth-child(2) {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    --delay: 0.5s !important;
}

.floating-box:nth-child(3) {
    top: 12% !important;
    right: 18% !important;
    --delay: 1s !important;
}

.floating-box:nth-child(4) {
    bottom: 12% !important;
    left: 22% !important;
    width: 130px !important;
    height: 130px !important;
    --delay: 1.5s !important;
}

.floating-box:nth-child(5) {
    bottom: 12% !important;
    right: 18% !important;
    width: 130px !important;
    height: 130px !important;
    --delay: 2s !important;
}

.floating-box:nth-child(1) .box-content i {
    background: linear-gradient(135deg, #0EA5E9, #0284C7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.floating-box:nth-child(2) .box-content i {
    background: linear-gradient(135deg, #0EA5E9, #38BDF8) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.floating-box:nth-child(3) .box-content i {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.floating-box:nth-child(4) .box-content i {
    background: linear-gradient(135deg, #F59E0B, #FF4500) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.floating-box:nth-child(5) .box-content i {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.box-content {
    text-align: center !important;
    padding: 1rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.box-content i {
    font-size: 2.75rem !important;
    margin-bottom: 0.5rem !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08)) !important;
    display: block !important;
}

.box-content p {
    margin: 0.5rem 0 0 0 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: var(--text-dark) !important;
    letter-spacing: 0.3px !important;
    line-height: 1.2 !important;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-box:nth-child(2) {
    animation: bounceCenter 3s ease-in-out infinite !important;
}

@keyframes bounceCenter {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, calc(-50% - 20px));
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    background: #F8FAFC;
    padding: 5rem 0;
}

.how-it-works-section .container {
    max-width: 1320px;
}

.step-card-modern {
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(14, 165, 233, 0.1));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1320px;
}

.testimonials-section .text-center h2 {
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .text-center .lead {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-section .badge {
    background: linear-gradient(135deg, #250C77, #3B1A8C) !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonial-slide.inactive {
    opacity: 0.5 !important;
    transform: scale(0.95) !important;
}

.testimonial-card {
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    transform: translateY(-4px);
}

.testimonial-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
}

.testimonial-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    flex-grow: 1;
}

.stars {
    color: #FF4500;
    font-size: 1.2rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    opacity: 1;
}

.carousel-btn:hover:not(.disabled) {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(14,165,233,0.35);
}

.carousel-btn:active:not(.disabled) {
    transform: translateY(-2px) scale(1.02);
}

.carousel-btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.carousel-dot:hover:not(.active) {
    background: rgba(14, 165, 233, 0.5);
    transform: scale(1.2);
}

/* ==================== TESTIMONIALS RESPONSIVE - MOBILE ONLY ==================== */
@media (max-width: 1199px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem) !important;
        min-width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    
    .testimonials-wrapper {
        gap: 1.5rem !important;
    }
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 4rem 0 !important;
    }
    
    .testimonials-section .text-center h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 3rem 0 !important;
    }
    
    .testimonials-section .text-center h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .testimonials-section .text-center .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .testimonial-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .testimonials-wrapper {
        gap: 1.5rem !important;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
    }
    
    .testimonial-controls {
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .testimonial-controls .carousel-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    .testimonial-controls .carousel-dots {
        gap: 0.5rem !important;
        max-width: 200px;
    }
    
    .testimonial-controls .carousel-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    .testimonial-controls .carousel-dot.active {
        width: 24px !important;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 2.5rem 0 !important;
    }
    
    .testimonials-section .container {
        padding: 0 1rem !important;
    }
    
    .testimonials-section .text-center h2 {
        font-size: 1.5rem !important;
    }
    
    .testimonials-section .text-center .lead {
        font-size: 0.95rem !important;
    }
    
    .testimonials-section .badge {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.7rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem !important;
    }
    
    .testimonial-badge {
        padding: 0.35rem 0.85rem !important;
        font-size: 0.7rem !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .stars {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .avatar {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    .testimonial-card h6 {
        font-size: 0.95rem !important;
    }
    
    .testimonial-card small {
        font-size: 0.8rem !important;
    }
    
    .testimonial-controls .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
    
    .testimonial-controls {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .testimonial-controls .carousel-dots {
        gap: 0.4rem !important;
        max-width: 150px !important;
    }
    
    .testimonial-controls .carousel-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .testimonial-controls .carousel-dot.active {
        width: 20px !important;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, #0EA5E9 0%, #250C77 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    max-width: 1320px;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    z-index: 0;
}

.cta-section .badge {
    background: white !important;
    color: var(--primary-color) !important;
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-section .btn {
    font-size: 1.05rem;
    padding: 0.9rem 2.5rem;
    transition: all 0.3s ease;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-section .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-stat {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.cta-stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.cta-stat i {
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.cta-stat:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.cta-stat h4 {
    font-size: 1.3rem;
    letter-spacing: 0.3px;
    margin: 0.5rem 0;
}

.cta-stat p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: #F8FAFC;
    padding: 6rem 0;
}

.contact-section .container {
    max-width: 1320px;
}

.contact-content {
    padding-right: 2rem;
}

.contact-info-item {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-info-item:hover {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.12);
    transform: translateY(-4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    z-index: 999;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(14,165,233,0.35);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* ==================== RESPONSIVE SCROLL TO TOP ==================== */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==================== CENTER ICONS IN SPECIFIC CARDS ==================== */
/* Only centers cta-stat icons without affecting any other styles */
.cta-stat .cta-stat-icon {
    margin: 0 auto;
}

.cta-stat .cta-stat-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== CENTER ICONS IN STEP CARDS ==================== */
/* Centers step-icon in "Get Started in Minutes" section */
.step-card-modern .step-icon-wrapper {
    display: flex;
    justify-content: center;
}

.step-card-modern .step-icon {
    margin: 0 auto;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(14, 165, 233, 0.1));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1320px;
}

.testimonials-section .text-center h2 {
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .text-center .lead {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-section .badge {
    background: linear-gradient(135deg, #250C77, #3B1A8C) !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.testimonial-slide.inactive {
    opacity: 0.5 !important;
    transform: scale(0.95) !important;
}

.testimonial-card {
    padding: 2.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    transform: translateY(-4px);
}

.testimonial-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    color: white;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
}

.testimonial-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    flex-grow: 1;
}

.stars {
    color: #FF4500;
    font-size: 1.2rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    opacity: 1;
}

.carousel-btn:hover:not(.disabled) {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(14,165,233,0.35);
}

.carousel-btn:active:not(.disabled) {
    transform: translateY(-2px) scale(1.02);
}

.carousel-btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #250C77, #3B1A8C);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.carousel-dot:hover:not(.active) {
    background: rgba(14, 165, 233, 0.5);
    transform: scale(1.2);
}

/* ==================== TESTIMONIALS RESPONSIVE - MOBILE ONLY ==================== */
@media (max-width: 1199px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem) !important;
        min-width: calc(50% - 1rem) !important;
        max-width: calc(50% - 1rem) !important;
    }
    
    .testimonials-wrapper {
        gap: 1.5rem !important;
    }
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 4rem 0 !important;
    }
    
    .testimonials-section .text-center h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 3rem 0 !important;
    }
    
    .testimonials-section .text-center h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .testimonials-section .text-center .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .testimonial-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .testimonials-wrapper {
        gap: 1.5rem !important;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
    }
    
    .testimonial-controls {
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .testimonial-controls .carousel-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    .testimonial-controls .carousel-dots {
        gap: 0.5rem !important;
        max-width: 200px;
    }
    
    .testimonial-controls .carousel-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    .testimonial-controls .carousel-dot.active {
        width: 24px !important;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 2.5rem 0 !important;
    }
    
    .testimonials-section .container {
        padding: 0 1rem !important;
    }
    
    .testimonials-section .text-center h2 {
        font-size: 1.5rem !important;
    }
    
    .testimonials-section .text-center .lead {
        font-size: 0.95rem !important;
    }
    
    .testimonials-section .badge {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.7rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem !important;
    }
    
    .testimonial-badge {
        padding: 0.35rem 0.85rem !important;
        font-size: 0.7rem !important;
    }
    
    .testimonial-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .stars {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .avatar {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    .testimonial-card h6 {
        font-size: 0.95rem !important;
    }
    
    .testimonial-card small {
        font-size: 0.8rem !important;
    }
    
    .testimonial-controls .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }
    
    .testimonial-controls {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .testimonial-controls .carousel-dots {
        gap: 0.4rem !important;
        max-width: 150px !important;
    }
    
    .testimonial-controls .carousel-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .testimonial-controls .carousel-dot.active {
        width: 20px !important;
    }
}
