/* Global Styles */
:root {
    --primary-color: #6B46C1;
    --secondary-color: #4A5568;
    --accent-color: #805AD5;
    --text-color: #2D3748;
    --light-text: #718096;
    --background-color: #FFFFFF;
    --light-background: #F7FAFC;
    --border-color: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}

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

/* Header Styles */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.navbar-logo img {
    height: 70px;
    max-width: 220px;
}

.navbar-links {
    display: flex;
    gap: 2rem;
}

.navbar-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: var(--primary-color);
}

.navbar-icons {
    display: flex;
    gap: 1rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(107,70,193,0.88), rgba(107,70,193,0.88)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
}

.hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
}

.hero-label {
    background: rgba(34,34,34,0.85);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.2em 1em;
    border-radius: 6px;
    margin-bottom: 2.2rem;
    letter-spacing: 0.04em;
    display: inline-block;
}

.hero-headline-white {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.hero-headline-yellow {
    color: #f7e97b;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.1;
    display: block;
    margin-top: 0.5rem;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.hero-form-card {
    background: #fff;
    color: #222;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(107,70,193,0.13);
    padding: 2rem 2.2rem 2rem 2.2rem;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-form-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #222;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    font-size: 1.08rem;
    font-family: inherit;
    background: #f7fafc;
    color: #222;
    outline: none;
    transition: border 0.2s;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    border-color: #6B46C1;
}

.hero-form textarea {
    resize: vertical;
    min-height: 30px;
    line-height: 1.5;
}

.hero-form button {
    margin-top: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 1rem 0;
}

/* Checkbox Styles */
.form-checkbox-group {
    margin: 0.2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #555;
    position: relative;
    padding: 0.2rem 0;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #6B46C1;
    border-radius: 3px;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #6B46C1;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -2.5px;
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: #6B46C1;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Hover and focus states */
.checkbox-label:hover .checkmark {
    border-color: #553c9a;
    box-shadow: 0 0 0 2px rgba(107, 70, 193, 0.1);
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    border-color: #553c9a;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
}

/* Active state for better touch feedback */
.checkbox-label:active .checkmark {
    transform: scale(0.95);
}

/* reCAPTCHA Styles */
.recaptcha-container {
    margin: 0.3rem 0;
    display: flex;
    justify-content: center;
}

.recaptcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

.recaptcha-note {
    margin-top: 0.5rem;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Error message styles */
.error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Terms and Privacy Page Styles */
.terms-hero,
.privacy-hero {
    background: linear-gradient(rgba(107,70,193,0.88), rgba(107,70,193,0.88)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom color classes for terms page - colors only, no font-size changes */
.terms-text-white {
    color: #fff;
}

.terms-text-yellow {
    color: #f7e97b;
}

.terms-hero h1,
.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.terms-hero p,
.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.terms-content,
.privacy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.terms-text,
.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-text h2,
.privacy-text h2 {
    color: #6B46C1;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #6B46C1;
    padding-bottom: 0.5rem;
}

.terms-text h2:first-child,
.privacy-text h2:first-child {
    margin-top: 0;
}

.terms-text p,
.privacy-text p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.terms-text ul,
.privacy-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-text li,
.privacy-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    color: #6B46C1;
    margin-top: 2rem;
}

/* Responsive styles for terms and privacy pages */
@media (max-width: 768px) {
    .terms-hero h1,
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero p,
    .privacy-hero p {
        font-size: 1rem;
    }
    
    .terms-text,
    .privacy-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .terms-text h2,
    .privacy-text h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 3rem 1rem;
    }
    .hero-left, .hero-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .hero-form-card {
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: unset;
        padding-top: 90px; /* Ensures space for navbar */
        padding-bottom: 1.5rem;
    }
    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0.5rem 1rem 0.5rem;
    }
    .hero-headline-white {
        font-size: 1.1rem;
        text-align: center;
    }
    .hero-headline-yellow {
        font-size: 1.5rem;
        text-align: center;
    }
    .hero-form-card {
        padding: 1rem 0.5rem;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        gap: 0.6rem;
        padding: 0.7rem 0;
        min-height: 44px; /* Better touch target */
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
        margin-top: 0;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        width: 7px;
        height: 11px;
        margin-top: -7px;
        margin-left: -3.5px;
    }
    
    .recaptcha-container .g-recaptcha {
        transform: scale(0.8);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-background);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    scroll-margin-top: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stats-expert-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.btn-expert {
    background: #fff;
    color: #2D3748;
    font-weight: 700;
    font-size: 1.4rem;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 2.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.03em;
}
.btn-expert:hover {
    background: #f7e97b;
    color: #6B46C1;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: white;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.why-us .subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.whyus-container {
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 0 2.5rem 0;
}
.whyus-image {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whyus-illustration {
    max-width: 370px;
    width: 100%;
    height: auto;
    display: block;
}
.whyus-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}
@media (max-width: 1100px) {
    .whyus-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        padding: 2rem 0 1.5rem 0;
    }
    .whyus-image {
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }
    .whyus-illustration {
        max-width: 220px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--light-background);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: #fff;
    color: var(--primary-color);
    text-align: center;
}

.cta h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.cta-offer {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
}

.offer-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.cta-feature-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.cta-feature-center {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.cta-feature-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 2.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.cta-feature-btn:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Footer */
footer {
    background: #6B46C1;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-text);
}

/* Enhanced footer styling to keep existing content and add copyright */
.enhanced-footer {
    background: #6B46C1;
    color: white;
    padding: 0.5rem 0;
    text-align: center;
}

.enhanced-footer .footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.enhanced-footer .footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1.5rem auto;
    width: 80%;
    max-width: 600px;
}

.enhanced-footer .footer-address {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.enhanced-footer .footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    line-height: 1.5;
    display: block !important;
}

.enhanced-footer a {
    color: #f7e97b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.enhanced-footer .footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn:hover,
.btn-expert:hover {
    background: #f7e97b !important;
    color: #6B46C1 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    bottom: 4.5rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1100;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 5.5rem;
        left: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.dual-white {
    color: #fff;
}

.simple-footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem 1.5rem 1rem;
    border-radius: 0 0 10px 10px;
}
.footer-description {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.footer-divider {
    border-top: 1px solid #fff;
    margin: 0 auto 1.5rem auto;
    width: 90%;
    max-width: 900px;
}
.footer-address {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

footer .footer-grid, footer .footer-section, .footer-logo, .footer-company-info, .footer-copyright {
    display: none !important;
}

.clients-section {
    padding: 4rem 0 2rem 0;
    background: #fff;
    margin-bottom: 2rem;
}
.clients-carousel-wrapper {
    margin-bottom: 1.2rem;
}
.clients-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
}
.clients-title-bg {
    background: none;
    color: #222;
    padding: 0.2em 0.5em;
    border-radius: 3px 0 0 3px;
    margin-right: -0.2em;
}
.clients-title-highlight {
    background: #f7e97b;
    color: #222;
    padding: 0.2em 0.5em;
    border-radius: 0 3px 3px 0;
}
.clients-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 120px;
}
.clients-slide {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    transition: opacity 0.5s;
}
.clients-slide.active {
    display: flex;
}
.clients-slide img {
    max-width: 288px;
    max-height: 144px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.5rem 1rem;
}
@media (max-width: 900px) {
    .clients-slide img {
        max-width: 192px;
        max-height: 108px;
        padding: 0.3rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .clients-slide {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .clients-slide img {
        max-width: 84vw;
        max-height: 72px;
        margin-bottom: 0.5rem;
    }
}

html {
  scroll-behavior: smooth;
}

.process-section {
    background: #fff;
    padding: 4rem 0 2.5rem 0;
    scroll-margin-top: 100px;
}
.process-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.process-title-highlight {
    background: #f7e97b;
    color: #222;
    font-size: 2rem;
    font-weight: 700;
    padding: 0.2em 0.7em;
    border-radius: 6px;
    letter-spacing: 0.03em;
}
.process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 2.2rem;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1 1 0;
    min-width: 120px;
}
.process-dot {
    position: absolute;
    top: 2.05rem;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #8f4be9;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 3;
}
.process-icon {
    font-size: 2.8rem;
    color: #222;
    margin-top: 2.7rem;
    margin-bottom: 0.7rem;
    background: #fff;
    z-index: 2;
}
.process-label {
    font-size: 1.15rem;
    color: #444;
    font-weight: 500;
    margin-top: 0.2rem;
    text-align: center;
}
.process-flow::before {
    content: '';
    position: absolute;
    left: 7.5%;
    right: 7.5%;
    top: 2.2rem;
    height: 3px;
    background: #d1c4e9;
    z-index: 1;
}
@media (max-width: 900px) {
    .process-flow {
        gap: 1.2rem;
    }
    .process-label {
        font-size: 1rem;
    }
    .process-title-highlight {
        font-size: 1.2rem;
    }
}
@media (max-width: 600px) {
    .process-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 2.2rem;
    }
    .process-step {
        flex-direction: row;
        align-items: center;
        min-width: 0;
        margin-bottom: 0.5rem;
    }
    .process-icon {
        font-size: 2rem;
        margin-bottom: 0;
        margin-right: 1rem;
    }
    .process-dot {
        margin: 0 1rem 0 0;
    }
    .process-label {
        margin-top: 0;
        font-size: 1rem;
    }
    .process-flow::before {
        display: none;
    }
}

.industries-section {
    background: #fff;
    padding: 4rem 0 2.5rem 0;
    scroll-margin-top: 130px;
    margin-top: 10vh;
}
.industries-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.industries-left {
    flex: 2;
}
.industries-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    letter-spacing: 0.03em;
}
.industries-highlight {
    background: #f7e97b;
    color: #222;
    padding: 0.2em 0.7em;
    border-radius: 6px;
    margin-right: 0.3em;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.industry-card {
    background: #6B46C1;
    color: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(107,70,193,0.08);
    min-width: 120px;
    min-height: 140px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.industry-card i {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
}
.industry-card span {
    margin-top: 0.2rem;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}
.industry-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 24px rgba(107,70,193,0.18);
}
.industry-card:hover i {
    color: #fff !important;
}
.industries-more {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.7rem;
    font-weight: 500;
}
.industries-right {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industries-illustration {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
}
.industries-illustration-large {
    max-width: 650px;
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 1100px) {
    .industries-container {
        flex-direction: column;
        align-items: stretch;
    }
    .industries-right {
        justify-content: flex-start;
        margin-top: 2.5rem;
    }
}
@media (max-width: 700px) {
    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .industries-title {
        font-size: 1.2rem;
    }
    .industries-illustration {
        max-width: 220px;
    }
}
@media (max-width: 500px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-card {
        min-width: 0;
        padding: 1.2rem 0.5rem 0.8rem 0.5rem;
    }
}

.dual-yellow {
    color: #f7e97b;
}

.highlight-yellow {
    background: #f7e97b;
    color: #222;
    padding: 0.2em 0.5em;
    border-radius: 6px;
    display: inline-block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 2rem;
    color: #6B46C1;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.carousel-arrow.left-arrow {
    left: -60px;
}
.carousel-arrow.right-arrow {
    right: -60px;
}
.carousel-arrow:hover {
    background: #f7e97b;
    color: #43286a;
}
@media (max-width: 900px) {
    .carousel-arrow.left-arrow { left: 0; }
    .carousel-arrow.right-arrow { right: 0; }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.7rem;
}
.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    outline: none;
}
.carousel-dot.active {
    background: #6B46C1;
}

.scrollable-row {
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    padding-bottom: 10px;
    position: relative;
}
.scrollable-row .clients-slide {
    display: inline-flex;
    gap: 2.5rem;
    width: auto;
    min-width: max-content;
    animation: scroll-logos 30s linear infinite;
}
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.scrollable-row .clients-slide img {
    display: inline-block;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
}
