<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive CSS for Mobile and Tablet Devices */

/* Extra Large Devices (Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .service-card img {
        height: 220px;
    }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
}

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Typography adjustments for tablets */
    .hero-section h1 {
        font-size: 1.875rem;
    }
    
    .hero-section h3 {
        font-size: 1.375rem;
    }
    
    h2 {
        font-size: 1.625rem;
    }
    
    /* Layout adjustments */
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card img {
        height: 180px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Navbar adjustments */
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
    font-size: 10px !important;
        padding: 0.75rem 1rem;
    }
    
    /* Footer adjustments */
    footer .col-md-3 {
        margin-top: 1.5rem;
    }
    
    /* Additional page elements */
    .metric-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .award-item img {
        height: 70px;
    }
}

/* Small Devices (Landscape Phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Typography for small tablets */
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section h3 {
        font-size: 1.25rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.125rem;
    }
    
    /* Layout adjustments */
    .hero-section {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card img {
        height: 160px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Grid adjustments */
    .col-md-6.col-lg-3 {
        margin-bottom: 1rem;
    }
    
    .col-lg-4 {
        margin-bottom: 1rem;
    }
    
    /* Additional elements */
    .metric-number {
        font-size: 2.25rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .learning-feature {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author img {
        width: 40px;
        height: 40px;
    }
    
    .award-item {
        margin-bottom: 1rem;
    }
    
    .award-item img {
        height: 60px;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Typography for mobile */
    .hero-section h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-section h3 {
        font-size: 1.125rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    /* Layout for mobile */
    .hero-section {
        padding: 1.5rem 0;
        min-height: 80vh;
    }
    
    .hero-section .container {
        padding: 0 1rem;
    }
    
    /* Cards and components */
    .feature-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-card i {
        font-size: 2rem !important;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card img {
        height: 140px;
    }
    
    .service-card .price {
        font-size: 1.125rem;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-form .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 12px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Navbar mobile */
    .navbar-brand {
    font-size: 12px !important;
        font-size: 1.125rem !important;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-nav .nav-link {
    font-size: 10px !important;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    /* Footer mobile */
    footer {
        padding: 2rem 0 !important;
    }
    
    footer .col-md-6,
    footer .col-md-3 {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    footer h5,
    footer h6 {
        font-size: 1rem;
    }
    
    footer ul {
        text-align: center;
    }
    
    /* Additional page mobile styles */
    .content-card,
    .feature-box,
    .learning-feature {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-box i {
        font-size: 2rem !important;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .impact-metric {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .case-study,
    .success-story-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .award-item {
        padding: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .award-item img {
        height: 50px;
    }
    
    .tracking-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .progress {
        height: 6px;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb-nav {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-image {
        height: 18px;
    }
    
    /* Spacing adjustments */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Container padding for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Specific Mobile Adjustments for Swiper/Carousel (as mentioned in requirements) */
@media (max-width: 767.98px) {
    /* Disable autoplay and effects on mobile for Swiper */
    .swiper-container {
        --swiper-autoplay-delay: 0;
    }
    
    .swiper-slide {
        transition: none !important;
    }
    
    /* Ensure carousels are touch-friendly on mobile */
    .swiper-wrapper {
        touch-action: pan-y;
    }
}

/* Landscape phone adjustments */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.375rem;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .breadcrumb-nav,
    footer,
    .btn,
    .contact-form {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
    }
    
    .hero-section {
        background: none !important;
    }
}

/* High DPI/Retina Display Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-card img,
    .content-card img,
    .case-study img,
    .success-story-card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility improvements for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .feature-card:hover,
    .service-card:hover,
    .btn-primary:hover {
        transition: none !important;
        transform: none !important;
    }
}

/* Focus states for accessibility */
@media (any-hover: hover) {
    .feature-card:hover,
    .service-card:hover,
    .feature-item:hover {
        transform: translateY(-5px);
    }
}

/* Touch device specific adjustments */
@media (any-hover: none) {
    .feature-card:hover,
    .service-card:hover,
    .feature-item:hover,
    .btn-primary:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    /* Larger touch targets for mobile */
    .navbar-nav .nav-link {
    font-size: 10px !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
    }
} </pre></body></html>