/* ============================================
   Custom CSS for Google Ads Landing Page
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #db2020;
    --primary-dark: #0a58ca;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --white-bg: #ffffff;
    --light-bg: #f2f2f7;
    --dark-bg: #212529;
    --text-muted: #6c757d;
    --border-radius: 0.5rem;
    --transition-speed: 0.3s;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}


/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Noto Sans Thai', sans-serif;
}

 

.text-primary {
    color: var(--primary-color) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Noto Sans Thai', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #111111;
    overflow-x: hidden;
}

/* Container Max-Width */
.container {
    max-width: 1300px;
}

.container-lg {
    max-width: 1300px;
}

.container-fluid {
    /*max-width: 1400px;*/
    margin-left: auto;
    margin-right: auto;
}

/* Header Navigation */
.header-nav {
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header-nav.hide {
    transform: translateY(-100%);
}

.header-nav.show {
    transform: translateY(0);
}

/* Hamburger Menu Animation */
.navbar-toggler.hamburger {
    border: none !important;
    padding: 0 !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navbar-toggler.hamburger:focus,
.navbar-toggler.hamburger:active,
.navbar-toggler.hamburger:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler.hamburger .navbar-toggler-icon {
    background-image: none !important;
    background-color: #212529 !important;
    width: 25px;
    height: 3px;
    position: relative;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler.hamburger .navbar-toggler-icon::before,
.navbar-toggler.hamburger .navbar-toggler-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: #212529;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler.hamburger .navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler.hamburger .navbar-toggler-icon::after {
    bottom: -10px;
}

/* When hamburger is clicked (expanded state) - transform to X */
.navbar-toggler.hamburger[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent !important;
}

.navbar-toggler.hamburger[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler.hamburger[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Hide hamburger on desktop */
@media (min-width: 992px) {
    .navbar-toggler.hamburger {
        display: none !important;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    font-size: 1.3rem;
    transition: color var(--transition-speed) ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 0.25rem;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #212529;
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: white !important;
}

/* Mobile Backdrop Overlay */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
    z-index: 999;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu with enhanced shadow */
@media (max-width: 991.98px) {
    .header-nav {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    
    .navbar-collapse {
        padding-top: 1rem;
    }
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    will-change: opacity;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 70vh;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide > .container {
    position: relative;
    z-index: 2;
}

.min-vh-70 {
    min-height: 70vh;
}

.hero-content {
    padding: 2rem 0;
}

.hero-content h1 {
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    color: #f0f0f0;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation */
.slider-nav-container {
    position: relative;
    margin-top: 2rem;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-prev,
.slider-next {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Benefits Section */
.benefits-section {
    background: var(--light-bg);
}

.benefit-card {
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg) !important;
}

.benefit-icon svg {
    transition: transform var(--transition-speed) ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* Social Proof Section */
.social-proof-section {
    background: white;
}

.stats-bar .stat-item {
    transition: transform var(--transition-speed) ease;
}

.stats-bar .stat-item:hover {
    transform: scale(1.05);
}

.testimonial-card {
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 1rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg) !important;
}

.stars {
    font-size: 1.25rem;
}

.client-logo img {
    filter: grayscale(100%);
    transition: filter var(--transition-speed) ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--light-bg);
}

.step-card {
    transition: transform var(--transition-speed) ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    transition: all var(--transition-speed) ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.3);
}

.step-icon svg {
    transition: transform var(--transition-speed) ease;
}

.step-card:hover .step-icon svg {
    transform: scale(1.15);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
}

.contact-form-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    padding: 0.75rem;
    transition: all var(--transition-speed) ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.accordion-button {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    background: white;
}

.trust-item {
    transition: all var(--transition-speed) ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: white !important;
    box-shadow: var(--box-shadow-lg);
}

.trust-icon svg,
.guarantee-icon svg {
    transition: transform var(--transition-speed) ease;
}

.trust-item:hover .trust-icon svg,
.guarantee-item:hover .guarantee-icon svg {
    transform: scale(1.15) rotate(5deg);
}

/* Footer */
.footer {
    background: var(--dark-bg) !important;
}

.footer .hover-link:hover {
    color: white !important;
    text-decoration: underline !important;
}

.social-links a {
    opacity: 0.7;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-light:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .min-vh-70 {
        min-height: auto;
        padding: 2rem 0;
    }
}

@media (max-width: 767.98px) {
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* ============================================
   Owl Carousel Hero Section
   ============================================ */

.hero-section-owl {
    position: relative;
    overflow: hidden;
}

.owl-carousel.owl-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.hero-slide-owl {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-slide-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hero-overlay-owl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content-owl {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 3rem 0;
}

.hero-content-owl h1 {
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 700;
}

.hero-content-owl .lead {
    color: #f0f0f0;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.btn-group-owl {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    border-color: white;
    color: white;
    border-width: 2px;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
}

/* Owl Carousel Container */
.owl-carousel {
    position: relative;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    pointer-events: all;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.owl-nav button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.owl-prev {
    left: 2rem !important;
}

.owl-next {
    right: 2rem !important;
}

/* Testimonial Carousel Specific */
.owl-carousel.owl-testimonials {
    position: relative;
    padding: 2rem 0;
    margin: 0 auto;
}

.owl-carousel.owl-testimonials .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 15 !important;
}

.owl-carousel.owl-testimonials .owl-nav button {
    pointer-events: all !important;
    position: absolute;
    z-index: 15 !important;
}

.owl-carousel.owl-testimonials .owl-prev {
    left: -60px !important;
}

.owl-carousel.owl-testimonials .owl-next {
    right: -60px !important;
}

/* Owl Carousel Dots */
.owl-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    width: 100%;
    display: flex !important;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    pointer-events: auto;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    display: inline-block !important;
    outline: none !important;
}

.owl-dot.active {
    background: white !important;
    width: 32px;
    border-radius: 6px;
}

.owl-dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Owl Hero */
@media (max-width: 991.98px) {
    .hero-slide-owl {
        min-height: 75vh;
    }

    .hero-content-owl h1 {
        font-size: 2.5rem;
    }

    .hero-content-owl .lead {
        font-size: 1.1rem;
    }

    .btn-group-owl {
        justify-content: center;
    }

    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .owl-prev {
        left: 0.5rem !important;
    }

    .owl-next {
        right: 0.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-slide-owl {
        min-height: 65vh;
    }

    .hero-content-owl h1 {
        font-size: 1.75rem;
    }

    .hero-content-owl .lead {
        font-size: 1rem;
    }

    .btn-group-owl {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-group-owl .btn {
        width: 100%;
        text-align: center;
    }

    .owl-nav {
        display: none;
    }

    .owl-dot {
        width: 10px;
        height: 10px;
    }

    .owl-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }
}

/* ============================================
   Client Logos Marquee Section
   ============================================ */

.client-logos-section {
    background: #fff;
    width: 100%;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, #fff, transparent);
    z-index: 10;
    pointer-events: none;
}

.marquee-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, #fff, transparent);
    z-index: 10;
    pointer-events: none;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 15s linear infinite;
    padding: 1rem 0;
    width: fit-content;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem 2rem;
    min-width: fit-content;
}

.client-logo-img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.client-logo-item:hover .client-logo-img {
    filter: grayscale(0%) opacity(1);
}

/* Performance Optimizations */
.hero-slide,
.benefit-card,
.testimonial-card,
.step-card {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Print Styles */
@media print {
    .header-nav,
    .slider-nav,
    .cta-section,
    .contact-form-section,
    .footer {
        display: none;
    }
}

/* Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Styles for Keyboard Navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove outline for mouse users only */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}


/* ============================================
   Image-Only Hero Carousel Section
   ============================================ */

.hero-section-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 65px;
}

.owl-carousel.owl-hero-image {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: 65px;
}

.hero-slide-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f0f0f0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* ============================================
   Gallery & Lightbox Styling
   ============================================ */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.gallery-link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.gallery-link:hover img {
    transform: scale(1.08);
}

.gallery-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(219, 32, 32, 0.1);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.gallery-link:hover::after {
    opacity: 1;
}

.gallery-link::before {
    display: none;
}

.gallery-link:hover::before {
    opacity: 1;
}

/* Lazy load image placeholder animation */
img.lazy {
    opacity: 0.7;
}

img.lazy[src*="svg"] {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}



/* ============================================
   General Utility Classes
   ============================================ */
.generalsection {
    padding: 60px 0;
}

.rowsection {
    padding: 60px 0;
}

.bglight {
    background-color: var(--light-bg) !important;
}
 
.fs0 {
    font-size: 5rem!important;
    line-height: 1.1!important;
} 
.fs1 {
    font-size: 4rem!important;
    line-height: 1.1!important;
}
.fs2 {
    font-size: 3.5rem!important;
    line-height: 1.2!important;
}
.fs3 {
    font-size: 3rem!important;
    line-height: 1.2!important;
}
.fs4 {
    font-size: 2.5rem!important;
    line-height: 1.3!important;
}
.fs5 {
    font-size: 2rem!important;
    line-height: 1.3!important;
}
.fs6 {
    font-size: 1.5rem!important;
    line-height: 1.4!important;
}
.fs7 {
    font-size: 1.2rem!important;
    line-height: 1.5!important;
}
.fb1 {
    font-weight: 700!important;
}
.fb2 {
    font-weight: 600!important;
}
.fb3 {
    font-weight: 500!important;
}

/* Mobile font size adjustments */
@media (max-width: 768px) {
    .fs0 {
        font-size: 3.5rem!important;
        line-height: 1.1!important;
    }   
     .fs1 {
        font-size: 2.8rem!important;
        line-height: 1.15!important;
    }
    .fs2 {
        font-size: 2.4rem!important;
        line-height: 1.25!important;
    }
    .fs3 {
        font-size: 2.2rem!important;
        line-height: 1.25!important;
    }
    .fs4 {
        font-size: 1.95rem!important;
        line-height: 1.3!important;
    }
    .fs5 {
        font-size: 1.7rem!important;
        line-height: 1.35!important;
    }
    .fs6 {
        font-size: 1.4rem!important;
        line-height: 1.4!important;
    }
    .fs7 {
        font-size: 1.1rem!important;
        line-height: 1.5!important;
    }
}

@media (max-width: 576px) {
    .fs0 {
        font-size: 3rem!important;
        line-height: 1.2!important;
    }    
    .fs1 {
        font-size: 2.3rem!important;
        line-height: 1.2!important;
    }
    .fs2 {
        font-size: 2rem!important;
        line-height: 1.3!important;
    }
    .fs3 {
        font-size: 1.8rem!important;
        line-height: 1.3!important;
    }
    .fs4 {
        font-size: 1.6rem!important;
        line-height: 1.35!important;
    }
    .fs5 {
        font-size: 1.4rem!important;
        line-height: 1.4!important;
    }
    .fs6 {
        font-size: 1.2rem!important;
        line-height: 1.45!important;
    }
    .fs7 {
        font-size: 1.05rem!important;
        line-height: 1.55!important;
    }
}