/* ============================================
   SS INFOTECH - Modern Clean Homepage Styles
   Clean, Cute, Minimal, Professional Design
   ============================================ */

/* ============================================
   1. GLOBAL STYLES & RESET
   ============================================ */
:root {
    /* Modern IT Company Color Palette */
    --primary-blue: #0A47A3;
    --primary-blue-light: #1E5FBF;
    --primary-blue-dark: #072F6E;

    --pastel-pink: #FFE5EC;
    --pastel-blue: #F2F6FC;
    --pastel-purple: #F3E5F5;
    --pastel-green: #E8F5E9;
    --pastel-yellow: #FFF9E6;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F2F6FC;
    --gray: #E8EDF5;
    --text-dark: #333333;
    --text-gray: #6B6B6B;

    /* Accent */
    --accent-blue: #1E90FF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 71, 163, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 71, 163, 0.1);
    --shadow-lg: 0 8px 24px rgba(10, 71, 163, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   2. BACKGROUND - Soft Minimal Gradient
   ============================================ */
.cute-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F4FF 50%, #FFF5F8 100%);
    z-index: -1;
    pointer-events: none;
}

/* Remove all animated shapes */
.floating-shape,
.sparkle,
.bubble {
    display: none !important;
}

/* ============================================
   3. HERO SECTION
   ============================================ */
.hero-modern {
    padding: var(--spacing-xxl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--pastel-blue);
    color: var(--primary-blue);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #0A47A3 0%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   4. BUTTONS - Clean & Modern
   ============================================ */
.btn-cute {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   5. RESPONSIVE BANNERS SECTION
   ============================================ */
.responsive-banners-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.banners-grid {
    display: grid;
    gap: var(--spacing-md);
    /* Mobile first: 1 banner per row */
    grid-template-columns: 1fr;
}

.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: var(--white);
}

.banner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.banner-link,
.banner-link-static {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.banner-image-wrapper {
    position: relative;
    width: 100%;
    /* Maintain 16:9 aspect ratio */
    padding-bottom: 56.25%;
    overflow: hidden;
    background: var(--light-gray);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.banner-card:hover .banner-image {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 71, 163, 0.9), transparent);
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-card:hover .banner-overlay {
    opacity: 1;
}

.banner-content {
    color: var(--white);
}

.banner-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
}

.banner-cta i {
    transition: transform 0.3s ease;
}

.banner-card:hover .banner-cta i {
    transform: translateX(4px);
}


/* ============================================
   6. CATEGORIES SECTION
   ============================================ */
.categories-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.categories-slider-wrapper {
    margin-top: var(--spacing-lg);
    position: relative;
    width: 100%;
}

.categoriesSwiper {
    padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-xl) !important;
}

.categoriesSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.categoriesSwiper .category-card {
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A47A3, #1E90FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon-wrapper {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.icon-glow {
    display: none;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.category-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

.category-badge {
    font-size: 1.5rem;
}

/* ============================================
   7. FEATURED PRODUCTS SECTION
   ============================================ */
.featured-products-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Soft distinctive shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Unique bouncy transition */
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 71, 163, 0.12);
    z-index: 2;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Overlay removed as per request */

/* View button removed */

.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
}

.badge-featured {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(10, 71, 163, 0.2);
}

.product-content {
    padding: var(--spacing-md);
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-blue);
}

.product-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray);
}

.product-price {
    font-weight: 600;
    color: var(--primary-blue);
}

.product-downloads {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-actions {
    margin-top: var(--spacing-sm);
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-cart:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ============================================
   8. FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    margin-bottom: var(--spacing-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.icon-emoji {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ============================================
   9. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
    overflow: hidden;
}

.testimonials-carousel {
    margin-top: var(--spacing-lg);
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--spacing-md);
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-glow {
    display: none;
}

.floating-emoji {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.card-decoration {
    display: none;
}

/* ============================================
   10. CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, #0A47A3 0%, #1E90FF 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xxl) var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

/* ============================================
   FEATURED PRODUCT CARD REDESIGN FROM PRODUCTS.CSS
   ============================================ */
.product-card.featured-card {
    flex-direction: column !important;
    /* Override horizontal layout */
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1.5rem !important;
    text-align: center !important;
    background: var(--white) !important;
    border: 1px solid rgba(74, 144, 226, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    min-height: 340px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    gap: 1rem !important;
    display: flex !important;
}

.product-card.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.12) !important;
    border-color: var(--primary-blue) !important;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.25);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Image Container */
.featured-image-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fbff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.featured-image-box::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.featured-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.product-card.featured-card:hover .featured-image-box img {
    transform: scale(1.08);
}

/* Category Label */
.featured-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.8;
}

/* View Product Button */
.btn-view-product {
    background: var(--primary-blue);
    color: white;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 200px;
    text-decoration: none;
}

.btn-view-product:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.35);
    color: white;
}


.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ============================================
   11. SWIPER CUSTOMIZATION
   ============================================ */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem;
}

.swiper-pagination-bullet {
    background: var(--primary-blue);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ============================================
   12. RESPONSIVE DESIGN
   ============================================ */

/* Small Tablet (577px and up) - 2 banners per row */
@media (min-width: 577px) {
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    /* Banners: 2 per row on tablet */
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Laptop (992px and up) - 3 banners per row */
@media (min-width: 992px) {
    .banners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Banners: 3 per row on laptop */
    .banners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {

    /* Banners: Auto-fit 3-4 per row on large desktop */
    .banners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-xl);
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }

    .hero-modern {
        padding: var(--spacing-lg) 0;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cute {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .category-card {
        padding: var(--spacing-md);
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-name {
        font-size: 1rem;
    }

    .category-desc {
        font-size: 0.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Extra small mobile (max 480px) */
@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        padding: 0.75rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-name {
        font-size: 0.875rem;
    }

    .category-desc {
        font-size: 0.7rem;
    }
}

/* ============================================
   13. CONTAINER SPACING
   ============================================ */
.container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }
}

/* ============================================
   14. ACCESSIBILITY & PERFORMANCE
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   15. JOB APPLY CTA SECTION
   ============================================ */
.job-cta-section {
    padding: var(--spacing-lg) 0;
    width: 100%;
}

.job-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow per request */
    border: 1px solid rgba(10, 71, 163, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.job-cta-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .job-cta-card {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: var(--spacing-xl);
    }

    .job-cta-content {
        flex: 1;
        padding-right: var(--spacing-md);
    }
}

.job-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.job-cta-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.btn-job-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(10, 71, 163, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.btn-job-apply:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 71, 163, 0.3);
    color: var(--white);
}

.btn-job-apply i {
    transition: transform 0.3s ease;
}

.btn-job-apply:hover i {
    transform: translateX(3px) rotate(-45deg);
}