/*
Theme Name: Astra Child
Template: astra
Description: Child theme for Astra.
Author: Your Name
Version: 1.0.0
*/

/* Modern Hero Section */
:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Blog Carousel Header */
.blog-carousel-header {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-carousel-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.blog-carousel-header p {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Modern Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 6rem;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.9));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 90%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '"\201C"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(99, 102, 241, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.125rem;
}

.testimonial-author p {
    margin: 0.25rem 0 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonials-cta {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.testimonials-cta a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonials-cta a:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Client Testimonials */
.client-testimonials {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: #f9fafb;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-subtitle {
    display: inline-block;
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0.5rem 0 1.5rem;
    line-height: 1.2;
}

.testimonials-header p {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.testimonial-avatar {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

.client-testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 2;
}

.testimonial-content::before {
    content: '"\201C"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 6rem;
    color: rgba(99, 102, 241, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-content::before {
    transform: scale(1.05);
    color: rgba(99, 102, 241, 0.1);
}

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

.testimonial-card:hover .testimonial-author {
    transform: translateX(5px);
}

/* Decorative Elements */
.client-testimonials::before,
.client-testimonials::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    z-index: 1;
}

.client-testimonials::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    filter: blur(80px);
}

.client-testimonials::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    filter: blur(60px);
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 0.5rem;
}

.cta-button.primary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-button svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.cta-button.primary:hover svg {
    transform: translateX(4px);
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button-primary {
    background: #fff;
    color: #6e45e2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.button-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.button-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.button-primary:hover .button-icon {
    transform: translateX(3px);
}

.tech-stack {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.tech-logos {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tech-logos span {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    max-width: 100%;
    height: 100%;
    min-height: 400px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tech-logos {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .button {
        width: 100%;
        justify-content: center;
    }
}

/* Stats Section */
.tech-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-element span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.element-1 {
    top: -15px;
    right: -15px;
    background: #61dafb;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30px;
    left: -20px;
    background: #68a063;
    color: white;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: -15px;
    right: 20px;
    background: #092e20;
    color: white;
    animation-delay: 1s;
}

/* Trusted By Section */
.trusted-by {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.trusted-by span {
    display: block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.logos span {
    color: white;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logos span:hover {
    opacity: 1;
}

/* Hero Shape */
.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .tech-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .trusted-by {
        margin-top: 2rem;
    }
    
    .logos {
        gap: 1rem;
    }
}

/* Team Section Styles */
.team-section-simple {
    background: #f8fafc;
    padding: 60px 0;
}
.team-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.team-section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.team-section-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.team-member-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.team-member-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.team-member-card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 3px solid #e5e7eb;
    background: #f3f4f6;
}
.team-member-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 4px;
}
.team-position {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 10px;
}
.team-desc {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Carousel Component Styles */
.custom-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 48px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    width: 100%;
    padding: 16px 0;
}
.carousel-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 280px;
    max-width: 320px;
    flex: 0 0 auto;
    padding: 32px 18px 24px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 8px;
    margin-left: 8px;
    margin-right: 8px;
}
.carousel-item:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.13);
    transform: translateY(-4px) scale(1.03);
}
.carousel-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid #e5e7eb;
    background: #f3f4f6;
}
.carousel-item-content h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 4px;
}
.carousel-item-subtitle {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 8px;
}
.carousel-item-desc {
    color: #444;
    font-size: 0.98rem;
}
.carousel-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.carousel-arrow-left {
    left: -24px;
}
.carousel-arrow-right {
    right: -24px;
}
.carousel-arrow svg {
    display: block;
    width: 28px;
    height: 28px;
}
.carousel-arrow:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
}
@media (max-width: 900px) {
    .carousel-arrow-left {
        left: 0;
    }
    .carousel-arrow-right {
        right: 0;
    }
}
@media (max-width: 600px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}
.carousel-title-link {
    color: #222;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.carousel-title-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.clickable-card {
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.clickable-card:hover {
    background: #f3f6fd;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    transform: translateY(-4px) scale(1.04);
}

/* Swiper.js Carousel Styles - FIXED */
.swiper.custom-swiper-carousel {
    padding-bottom: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
}
.swiper-wrapper {
    min-height: 420px;
}
.swiper-slide {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 20px 12px 16px 12px;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    min-height: 420px;
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}
.carousel-item-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    width: 100%;
}
.carousel-readmore-btn {
    display: inline-block;
    margin-top: auto;
    align-self: center;
    padding: 8px 22px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    color: #fff;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    outline: none;
    border: none;
    cursor: pointer;
}
.carousel-readmore-btn:hover, .carousel-readmore-btn:focus {
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,99,235,0.18);
    text-decoration: none;
}
.swiper-button-next, .swiper-button-prev {
    color: #2563eb;
    background: transparent;
    border-radius: 50%;
    box-shadow: none;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
    position: absolute;
    z-index: 10;
    border: none;
}
.swiper-button-prev {
    left: -64px;
}
.swiper-button-next {
    right: -64px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #1d4ed8;
    opacity: 1;
    background: transparent;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2.1rem;
    font-weight: bold;
}
.swiper-pagination-bullet {
    background: #2563eb;
    opacity: 0.4;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
@media (max-width: 1200px) {
    .swiper.custom-swiper-carousel {
        max-width: 900px;
    }
    .swiper-button-prev {
        left: -32px;
    }
    .swiper-button-next {
        right: -32px;
    }
}
@media (max-width: 900px) {
    .swiper.custom-swiper-carousel {
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    .swiper-button-prev, .swiper-button-next {
        left: 0;
        right: 0;
    }
}
@media (max-width: 600px) {
    .swiper-slide {
        min-height: 340px;
        max-width: 95vw;
        padding: 16px 6px 12px 6px;
    }
    .swiper-slide img {
        height: 120px;
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

.blog-carousel-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.blog-carousel-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #222;
}
.blog-carousel-header p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}