/* ===== ABOUT US PAGE SPECIFIC STYLES ===== */
/* This file contains styles that are ONLY used on the about-us page */

/* ===== BOOTSTRAP CAROUSEL SLIDESHOW ===== */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.slideshow-container .carousel {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slideshow-container .carousel-inner {
    border-radius: 0.75rem;
}

.slideshow-container .carousel-item {
    height: 480px; /* 3:2 aspect ratio (600px width / 3 * 2 = 400px, but keeping 480px for better visibility) */
}

.slideshow-container .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

/* Carousel Indicators */
.slideshow-container .carousel-indicators {
    bottom: 10px;
    gap: 6px;
}

.slideshow-container .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.slideshow-container .carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slideshow-container .carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===== ABOUT HERO SECTION (About Us Page) ===== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    /* min-height: 100vh; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(147, 51, 234, 0.8) 100%);
    z-index: 2;
}

/* ===== AMAZING NEW FLOATING ELEMENTS ===== */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 20px;
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.floating-card:nth-child(1) {
    top: 14%;
    right: 52%;
    animation-delay: 5s;
}

.floating-card i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.floating-card span {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
    }
    25% { 
        transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 1deg)); 
    }
    50% { 
        transform: translateY(-25px) rotate(var(--rotation, 0deg)); 
    }
    75% { 
        transform: translateY(-10px) rotate(calc(var(--rotation, 0deg) - 1deg)); 
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 0.3; transform: translateX(100%); }
}

.floating-card:hover {
    transform: scale(1.03) rotate(0deg) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 auto 1rem auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    position: relative;
    width: fit-content;
}

.hero-badge i {
    font-size: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
    z-index: 10;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Add % symbol after the percentage stat number */
.stat-card:last-child .stat-number::after {
    content: '%';
    font-size: 1.4rem;
    font-weight: 600;
    color: #fbbf24;
}

/* Force percentage label to wrap on mobile */
.stat-card:last-child .stat-label {
    word-break: break-word;
    white-space: normal;
    line-height: 1.1;
}

.instructor-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 20;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

.scroll-arrow i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.min-vh-75 {
    min-height: 75vh;
}

/* Ensure hero content has proper z-index */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    position: relative;
    z-index: 10;
}

.hero-buttons {
    position: relative;
    z-index: 10;
}

/* ===== ABOUT STEVEN SECTION (About Us Page) ===== */
.about-steven {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about-content h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-content .lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.experience-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.timeline-content h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===== TEACHING PHILOSOPHY SECTION (About Us Page) ===== */
.teaching-philosophy {
    padding: 2rem 0;
    background: var(--bg-light);
}

.philosophy-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.philosophy-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== CERTIFICATIONS SECTION (About Us Page) ===== */
.certifications {
    padding: 5rem 0;
    background: var(--bg-white);
}

.certification-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.certification-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.certification-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS SECTION (About Us Page) ===== */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-content p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-text {
    transition: all 0.3s ease;
}

.testimonial-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-toggle-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-toggle-btn:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.testimonial-toggle-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.testimonial-toggle-btn:hover i {
    transform: translateX(3px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-info h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT US PAGE ===== */

/* ===== LARGE TABLET/SMALL DESKTOP (min-width: 992px and max-width: 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        padding-top: 50px;
    }
    
    .floating-card:nth-child(1) {
        top: 8%;
        right: 10%;
        animation-delay: 5s;
    }
    

}

/* ===== TABLET ONLY (min-width: 769px and max-width: 991px) ===== */
@media (min-width: 769px) and (max-width: 991px) {

    .hero-section {
        padding-top: 50px;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 15px;
        position: absolute !important;
        max-width: 200px;
    }
    
    .floating-card:nth-child(1) {
        top: 3% !important;
        right: 5% !important;
        bottom: auto !important;
    }
    
    .floating-card i {
        font-size: 1.1rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
    }

    .hero-badge {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1rem auto;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .slideshow-container {
        margin-top: 15px;
    }
}

@media (min-width: 576px) and (max-width: 768px) { 
    .hero-section {
        padding-top: 210px;
        text-align: center;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    
    .floating-card {
        padding-left: 10px;
        padding-right: 20px;
        font-size: 0.85rem;
        border-radius: 15px;
        position: absolute !important;
        max-width: 200px;
    }
    
    .floating-card:nth-child(1) {
        top: 9% !important;
        left: 5% !important;
        bottom: auto !important;
        min-width: 190px;
    }

    .hero-stats {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .hero-buttons {
        display: none;
    }

    .slideshow-container {
        max-width: 550px;
        margin: 0 auto;
    }

    .slideshow-container .carousel-item {
        height: 420px; /* Increased height for tablet */
    }

    .slideshow-container .carousel-indicators {
        bottom: 8px;
        gap: 5px;
    }

    .slideshow-container .carousel-indicators button {
        width: 9px;
        height: 9px;
    }

}

/* ===== MOBILE ONLY (max-width: 576px) ===== */
@media (max-width: 576px) {
    /* About Hero Small Screen - MOBILE ONLY */
    .hero-section {
        padding-top: 50px;
        text-align: center;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: nowrap;
        margin: 1.5rem 0;
    }
    
    .stat-card {
        padding: 1rem 0.8rem;
        min-width: 80px;
        flex: 1;
        max-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-buttons {
        display: none;
    }
    
    
    /* New floating cards for MOBILE ONLY */
    .floating-card {
        padding-left: 10px;
        padding-right: 20px;
        font-size: 0.85rem;
        border-radius: 15px;
        position: absolute !important;
        max-width: 200px;
    }
    
    .floating-card:nth-child(1) {
        top: 75% !important;
        left: 15% !important;
        bottom: auto !important;
        min-width: 160px;
    }
    
    .floating-card i {
        font-size: 1.1rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }

    .instructor-image {
        display: none;
    }

    .slideshow-container {
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }

    .slideshow-container .carousel-item {
        height: 300px;
    }

    .slideshow-container .carousel-indicators {
        bottom: 5px;
        gap: 4px;
    }

    .slideshow-container .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .hero-badge {
        display: none;
    }

    .about-steven {
        padding-top: 40px;
    }

    .about-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-about-steven-fluid-title {
        font-size: 1.5rem !important;
    }
}

/* ===== TIMELINE SECTION (About Us Page) ===== */
.timeline-section {
    background: var(--bg-light);
}

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #3b82f6;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #3b82f6;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #3b82f6;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

/* ===== ABOUT STEVEN CTA SECTION (About Us Page) ===== */

.cta-about-steven-bg {
    background: linear-gradient(120deg, #7c4dff 0%, #6c63ff 100%);
    border-radius: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 32px rgba(44, 62, 80, 0.10);
    min-height: 260px;
    align-items: center;
}

.cta-about-steven-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-about-steven-text {
    font-size: 1.15rem;
    color: #f3f3f3;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-about-steven-img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 1rem;
    background: #fff3;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
}

.cta-about-steven-btn {
    background: #181c2f;
    border: none;
    border-radius: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}

.cta-about-steven-btn:hover, .cta-about-steven-btn:focus {
    background: #23284a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.15);
}

@media (max-width: 991px) {
    .cta-about-steven-title {
        font-size: 1.5rem;
    }
    .cta-about-steven-bg {
        padding: 2rem 1rem;
    }
    .cta-about-steven-img {
        max-height: 160px;
    }
}

@media (max-width: 767px) {
    .cta-about-steven-bg {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1rem;
    }
    .cta-about-steven-title {
        font-size: 1.2rem;
    }
    .cta-about-steven-img {
        margin-top: 1.5rem;
        max-height: 120px;
    }

    .hero-section {
        padding-top: 80px;
    }
}

/* ===== FULL-WIDTH ABOUT STEVEN CTA SECTION (About Us Page) ===== */
.cta-about-steven-fluid-bg {
    background: linear-gradient(120deg, #2563eb 0%, #1e40af 100%);
    border-radius: 0;
    color: #fff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-about-steven-fluid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.cta-about-steven-fluid-bg .container-md {
    position: relative;
    z-index: 2;
}

.cta-about-steven-fluid-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-about-steven-fluid-text {
    font-size: 1.15rem;
    color: #f3f3f3;
    margin-bottom: 2rem;
}

.cta-about-steven-fluid-img {
    max-width: 100%;
    max-height: 220px;
    border-radius: 1rem;
    background: #fff3;
    box-shadow: 0 2px 16px rgba(44, 62, 80, 0.10);
}

.cta-about-steven-fluid-btn {
    background: #23294b;
    color: #ffffff;
    border: none;
    border-radius: 0.6rem;
    font-size: 1.12rem;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
    transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
    outline: none;
}

.cta-about-steven-fluid-btn:hover, .cta-about-steven-fluid-btn:focus {
    background: #181c2f;
    color: #fff;
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.16);
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 991px) {
    .cta-about-steven-fluid-title {
        font-size: 1.5rem;
    }
    .cta-about-steven-fluid-bg {
        padding: 2rem 1rem;
    }
    .cta-about-steven-fluid-img {
        max-height: 160px;
    }
}

@media (max-width: 767px) {
    .cta-about-steven-fluid-bg {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1rem;
    }
    .cta-about-steven-fluid-title {
        font-size: 1.2rem;
    }
    .cta-about-steven-fluid-img {
        margin-top: 1.5rem;
        max-height: 120px;
    }
}

/* ===== MODERN CTA BUTTON STYLES ===== */
.btn-dark.btn-lg {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #1e40af;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-dark.btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-dark.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #1e40af;
}

.btn-dark.btn-lg:hover::before {
    opacity: 1;
}

.btn-dark.btn-lg span {
    position: relative;
    z-index: 1;
}

.btn-dark.btn-lg i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-dark.btn-lg:hover i {
    transform: scale(1.1);
}

/* Add shine effect */
.btn-dark.btn-lg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgba(30, 64, 175, 0.1) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: rotate(45deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.btn-dark.btn-lg:hover::after {
    left: 100%;
    top: 100%;
} 