/* ==================== Modern CA LLP Website Styles ==================== */
/* Color Scheme:
   - Background: #FFFFFF
   - Hero/Dark sections: #0F172A
   - Primary CTA: #2563EB
   - CTA Hover: #1D4ED8
   - Accent/AI Glow: #22D3EE
   - Cards: #F1F5F9
   - Text Primary: #1E293B
*/

/* ==================== Global Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #1E293B;
    background: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo:focus {
    outline: 2px solid #2563EB;
    outline-offset: 4px;
    border-radius: 4px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg,
.logo-icon img {
    display: block;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563EB;
}

.logo-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #1E293B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #2563EB;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1E293B;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F172A;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: #2563EB;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #22D3EE;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #2563EB;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.ca-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.ca-card {
    position: absolute;
    background: rgba(241, 245, 249, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: cardFloat 6s infinite ease-in-out;
}

.card-top-left {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.card-top-right {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.card-bottom-left {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
}

.card-bottom-right {
    bottom: 20%;
    right: 8%;
    animation-delay: 1s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
    font-size: 2rem;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.75rem;
    color: #22D3EE;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.chart-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #2563EB, #22D3EE);
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }
.chart-bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes barGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #E2E8F0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-mobile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(241, 245, 249, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #FFFFFF;
}

.feature-text p {
    font-size: 0.95rem;
    color: #CBD5E1;
}

.cta-button {
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.cta-button:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* ==================== Section Styles ==================== */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1E293B;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 3rem;
}

/* ==================== About Section ==================== */
.about {
    padding: 5rem 2rem;
    position: relative;
    background: #FFFFFF;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1E293B;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #F1F5F9;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    border-color: #22D3EE;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2563EB;
}

.value-card p {
    color: #64748B;
}

/* ==================== Services Section ==================== */
.services {
    padding: 5rem 2rem;
    background: #F8FAFC;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #F1F5F9;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #22D3EE);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563EB;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1E293B;
}

.service-card p {
    color: #64748B;
    line-height: 1.8;
}

/* ==================== Industries Section ==================== */
.industries {
    padding: 5rem 2rem;
    background: #FFFFFF;
    position: relative;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.industry-card {
    background: #F1F5F9;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: #2563EB;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.industry-icon {
    font-size: 2.5rem;
}

.industry-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.industry-card h3 {
    font-size: 1rem;
    color: #1E293B;
    margin: 0;
}

/* ==================== Partners/Team Section ==================== */
.partners {
    padding: 5rem 2rem;
    background: #F8FAFC;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card {
    background: #F1F5F9;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.12);
    border-color: #22D3EE;
}

.partner-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid #2563EB;
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 0.5rem;
}

.partner-credentials {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 0.5rem;
}

.partner-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partner-linkedin {
    display: inline-block;
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.partner-linkedin:hover {
    color: #22D3EE;
    transform: translateX(5px);
}

/* ==================== Contact Section ==================== */
.contact {
    padding: 5rem 2rem;
    background: #FFFFFF;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.contact-section-subheading {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F1F5F9;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-block h4 {
    font-size: 1.2rem;
    color: #2563EB;
    margin-bottom: 0.5rem;
}

.info-block p {
    color: #64748B;
    line-height: 1.6;
}

.info-block a {
    color: #2563EB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #1D4ED8;
}

.contact-form {
    background: #F1F5F9;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1E293B;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1E293B;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Trust Section Below Form */
.form-trust-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
}

.trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.trust-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.25rem;
}

.trust-content p {
    font-size: 0.875rem;
    color: #64748B;
    line-height: 1.4;
}

/* ==================== Map Section ==================== */
.map-section {
    padding: 4rem 2rem;
    background: #F8FAFC;
}

.map-container {
    max-width: 1400px;
    margin: 2rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ==================== Footer ==================== */
.footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #22D3EE;
}

.footer-seo-section {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    margin-top: 2rem;
}

.footer-seo-section h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-seo-section p {
    color: #94A3B8;
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #22D3EE;
}

.footer-credit {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.9rem;
}

.footer-credit a {
    color: #22D3EE;
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    color: #2563EB;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar-container {
        padding: 1rem 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ca-card {
        display: none;
    }

    .chart-container {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .info-block {
        padding: 1rem;
    }

    .form-trust-section {
        flex-direction: column;
    }

    .trust-badge {
        padding: 0.875rem;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1.25rem;
    }
    
    .industry-icon {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    .industry-card h3 {
        font-size: 0.9rem;
    }
}

/* ==================== Hero Banner Slider Styles ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(15, 23, 42, 0.85) 0%, 
        rgba(37, 99, 235, 0.7) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFFFFF;
}

.slide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.3rem;
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.slide-content .cta-button {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFFFFF;
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

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

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        min-height: 500px;
        margin-top: 60px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .banner-badge {
        padding: 8px 16px;
        margin-bottom: 1.5rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 2rem;
    }

    .slide-content .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.75rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .banner-badge {
        flex-direction: row;
        gap: 8px;
        padding: 8px 12px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .badge-text {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .slide-content {
        padding: 1rem;
    }
    
    .slider-arrow.prev {
        left: 0.5rem;
    }
    
    .slider-arrow.next {
        right: 0.5rem;
    }
}

/* ==================== Countries Section ==================== */
.countries {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.country-flag {
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.country-flag img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag img {
    transform: scale(1.05);
}

.country-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

@media (max-width: 768px) {
    .countries {
        padding: 3rem 0;
    }

    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .country-card {
        padding: 2rem;
    }

    .country-flag img {
        width: 100px;
    }

    .country-card h3 {
        font-size: 1.25rem;
    }
}
