:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --dark-bg: #1F2937;
    --light-bg: #F3F4F6;
    --text-main: #111827;
    --text-muted: #6B7280;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Section Specifics */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Marquee Styles */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Service Card Hover */
.service-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.link-hover i {
    transition: transform 0.3s ease;
}

.link-hover:hover i {
    transform: translateX(5px);
}

/* Navbar Styles */
.navbar-logo-container {
    height: 40px;
}

.navbar-logo-text-container {
    line-height: 1;
}

.navbar-logo-title {
    font-family: sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: #009CA6;
}

.navbar-logo-subtitle {
    font-family: sans-serif;
    font-size: 10px;
    color: #1E3A8A;
    letter-spacing: 0.5px;
}

.nav-link-home {
    color: #1E3A8A !important;
}

.btn-lang-toggle {
    width: 45px;
    height: 35px;
    background-color: transparent;
    /* Removed green background */
    border-radius: 4px;
}

.icon-lang-toggle {
    font-size: 14px;
}

.btn-company-profile {
    background-color: #1E3A8A;
    border-radius: 8px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.btn-company-profile:hover {
    background-color: #172554;
    /* Darker blue on hover */
    color: #ffffff !important;
    /* Ensure text stays white */
}

/* Hero Section Styles */
.hero-section {
    padding-top: 150px;
    padding-bottom: 50px;
    -webkit-box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0);
    /* Fix for potential background clip issues */
    background: linear-gradient(90deg, #E3FEEF 0%, #FEF1EB 45%, rgba(226, 227, 255, 0.1) 100%), url('../images/hero_img.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.badge-primary-soft {
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #0f172a;
}

.text-accent-blue {
    color: #1e3a8a;
}

.hero-subheadline {
    font-size: 1.15rem;
    max-width: 550px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.btn-quote {
    background-color: #1e3a8a;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 28px;
}

.btn-whatsapp {
    border: 1px solid #22c55e;
    color: #15803d;
    background-color: white;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
}

.marquee-section {
    background: linear-gradient(90deg, #E2E3FF 0%, #FEF1EB 50%, #E3FEEF 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.marquee-text {
    color: #0f172a;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Services Section Styles */
.section-padding-large {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-uppercase-small {
    color: #6366F1;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.section-title-core {
    color: #1e1b4b;
}

.service-card-bg {
    background: linear-gradient(135deg, #F0FDF4 0%, #F5F3FF 100%);
    transition: all 0.3s ease;
}

.service-icon-wrapper {
    min-width: 60px;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #E2E8F0;
}

.service-number {
    font-size: 2.5rem;
    color: #94A3B8;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.service-card-title {
    font-size: 1.5rem;
    color: #000;
}

/* Why Choose Us Section Styles */
.bg-lavender-light {
    background-color: #F8F7FF;
}

.wcu-headline {
    color: #1E1B4B;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.wcu-list-title {
    color: #312E81;
    font-weight: 700;
    font-size: 1.05rem;
}

.wcu-list-text {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.progress-container {
    height: 35px;
    background-color: #E0E7FF;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}

.progress-bar-custom {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: space-between;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
}

.progress-teal {
    width: 95%;
    background: linear-gradient(90deg, #2DD4BF 0%, #a5f3fc 100%);
    /* Fallback or adjustment for gradient visibility */
    background-color: #2DD4BF;
}

.progress-blue {
    width: 92%;
    background: linear-gradient(90deg, #4338CA 0%, #C4B5FD 100%);
    background-color: #4338CA;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #E0E7FF;
    color: #4338CA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.wcu-image-container {
    position: relative;
    padding: 20px;
}

/* Portfolio / Latest Work Styles */
.portfolio-section {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.portfolio-filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.portfolio-filter-btn {
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.portfolio-filter-btn:hover {
    border-color: #1e3a8a;
    color: #1e3a8a;
    background-color: #f8fafc;
}

.portfolio-filter-btn.active {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    color: white;
}

.portfolio-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: none;
}

.portfolio-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);
}

.portfolio-img-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-content {
    background: linear-gradient(90deg, #DFFFE9 0%, #FFF3EB 50%, #E8E5FD 100%);
    padding: 1.5rem;
    text-align: left;
}

.portfolio-title {
    color: #0F172A;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.portfolio-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

.btn-request-quote {
    background-color: #1e3a8a;
    color: white;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


/* Vision / Process Section Styles */
.vision-section {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.vision-title {
    color: #1E1B4B;
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.vision-card {
    background: linear-gradient(135deg, #F0FDF4 0%, #F5F3FF 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.vision-icon-container {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563EB, #DB2777, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.vision-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.vision-step-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Timeline/Connector Dots */
.timeline-dot {
    width: 14px;
    height: 14px;
    background-color: #1e3a8a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* Removed double circle border/shadow */
}

.timeline-dot.left {
    left: -7px;
}

.timeline-dot.right {
    right: -7px;
}

/* Dashed Line Background - simplified version */
.timeline-wrapper {
    position: relative;
    padding: 10px 0;
}

.timeline-dashed-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 3px dashed #1e3a8a;
    opacity: 0.5;
    z-index: 1;
    transform: translateY(-50%);
    display: none;
}

/* Show timeline only on lg screens and up (desktop) */
@media (min-width: 992px) {
    .timeline-dashed-line {
        display: block;
    }

    .timeline-dot {
        display: block;
    }
}



/* Testimonial Section Styles */
.testimonial-section {
    background-color: #FFF9FA;
    /* Light pinkish background */
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.testimonial-header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.header-badge-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #6366F1;
    font-weight: 700;
}

.testimonial-title {
    color: #1E1B4B;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 1.5rem;
    }
}

.text-highlight {
    color: #1E3A8A;
}

/* Carousel Layout - Absolute Positioning System */
.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    perspective: 1000px;
    /* Height must be defined since items are absolute */
    min-height: 500px;
    display: flex;
    /* Kept for vertical centering if needed, but main layout is absolute */
    justify-content: center;
    /* overflow: hidden; */
    /* Optional: Hide overflowing side items if screen is small */
}

@media (max-width: 992px) {
    .testimonial-carousel-wrapper {
        min-height: 600px;
        /* Taller for stacked mobile content */
    }
}

/* Individual Item - Absolute Base */
.testimonial-single-item {
    position: absolute;
    top: 50%;
    /* Center vertically in wrapper */
    left: 50%;
    /* Center horizontally base */
    width: 750px;
    display: flex;
    align-items: center;
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* ONE SMOOTH TRANSITION */
    margin-top: -200px;
    /* Rough offset to center vertically based on approx height/2 */

    /* Default Hidden State for non-active/prev/next items */
    opacity: 0;
    z-index: 0;
    transform: translateX(-50%) scale(0.7);
    visibility: hidden;
}

/* Fix vertical centering precise calculation or use flex on parent */
/* Actually, let's let top:0 and manage via wrapper padding/flex if possible? 
   Absolute alignment is tricky. easier: top: 0, height: 100%. 
   But let's stick to specific 'top' or transform.
*/
.testimonial-single-item {
    top: 20px;
    /* Top padding inside wrapper */
    margin-top: 0;
    bottom: auto;
}


/* Active Center Slide */
.testimonial-single-item.active-slide {
    opacity: 1;
    z-index: 20;
    transform: translateX(-50%) scale(1);
    visibility: visible;
}

/* Previous Slide (Left) */
.testimonial-single-item.prev-slide {
    opacity: 0.5;
    z-index: 10;
    transform: translateX(-160%) scale(0.85);
    /* Moves left */
    visibility: visible;
    cursor: pointer;
}

/* Next Slide (Right) */
.testimonial-single-item.next-slide {
    opacity: 0.5;
    z-index: 10;
    transform: translateX(60%) scale(0.85);
    /* Moves right */
    visibility: visible;
    cursor: pointer;
}


/* Responsive Tweaks */
@media (max-width: 1200px) {
    .testimonial-single-item {
        width: 650px;
    }

    .testimonial-single-item.prev-slide {
        transform: translateX(-155%) scale(0.85);
    }

    .testimonial-single-item.next-slide {
        transform: translateX(55%) scale(0.85);
    }
}

@media (max-width: 992px) {
    .testimonial-single-item {
        width: 85vw;
        flex-direction: column;
        align-items: stretch;
    }

    /* Adjust slide positions for narrower view - maybe hide side ones partly? */
    .testimonial-single-item.prev-slide {
        transform: translateX(-160%) scale(0.8);
        opacity: 0.3;
    }

    .testimonial-single-item.next-slide {
        transform: translateX(60%) scale(0.8);
        opacity: 0.3;
    }
}

/* Mobile - Single Card Mode */
@media (max-width: 768px) {
    .testimonial-carousel-wrapper {
        min-height: 550px;
        overflow: visible;
        /* Let overlap happen or hide? */
    }

    .testimonial-single-item {
        width: 92vw;
        /* Full width essentially */
    }

    /* Hide side slides structurally but keep logic */
    .testimonial-single-item.prev-slide,
    .testimonial-single-item.next-slide {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) scale(0.9);
        /* Just shrink behind active */
        z-index: -1;
    }

    .testimonial-single-item.active-slide {
        transform: translateX(-50%) scale(1);
    }
}



/* Image Box */
.testimonial-single-item .t-img-box {
    width: 220px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 5;
    margin-right: -50px;
    /* Overlap on Desktop */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

@media (max-width: 992px) {
    .testimonial-single-item .t-img-box {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        /* Circle on mobile/tablet ? Or keep rect */
        margin-right: 0;
        margin-bottom: -70px;
        /* Overlap downwards */
        margin-left: 2rem;
        /* Indent */
        border: 4px solid white;
    }
}

.testimonial-single-item .t-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Box */
.testimonial-single-item .t-content-box {
    flex-grow: 1;
    border-radius: 24px;
    padding: 3rem 2.5rem 3rem 6rem;
    /* Left padding compensates overlap */
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 4;
    /* Lower than image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .testimonial-single-item .t-content-box {
        padding: 4rem 2rem 2rem 2rem;
        /* Adjusted for top image overlap */
        text-align: left;
    }
}

/* Gradients matching the design vibe */
.t-bg-green {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.t-bg-purple {
    background: linear-gradient(135deg, #FDF4FF 0%, #FAE8FF 100%);
}

.t-bg-blue {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

/* Content Typography */
.quote-icon {
    font-size: 3rem;
    color: #1E3A8A;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.t-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.t-name {
    font-weight: 800;
    color: #1E3A8A;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.t-role {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* Navigation Buttons Container */
.nav-btn-container {
    padding-right: 0;
    /* Reset */
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    /* Minimal height */
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
    /* Let clicks pass through container */
}

@media (max-width: 992px) {
    .nav-btn-container {
        top: 100%;
        /* Move below card on mobile */
        transform: translateY(-50%);
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

/* Actual Buttons */
.nav-btn {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3A8A;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    pointer-events: auto;
    /* Re-enable clicks */
}

.nav-btn:hover {
    background: #1E3A8A;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

.nav-btn.prev {
    left: -30px;
    /* Positions it at the start of the Image */
}

.nav-btn.next {
    right: -30px;
    /* Positions it at the end of the Content Box */
}

@media (max-width: 992px) {

    .nav-btn.prev,
    .nav-btn.next {
        position: relative;
        left: auto;
        right: auto;
    }

    /* Ensure only active slide buttons show (or are used) */
    .testimonial-single-item:not(.active-slide) .nav-btn-container {
        display: none;
    }
}

/* Hide buttons for non-active slides */
.testimonial-single-item:not(.active-slide) .nav-btn-container {
    display: none;
}

/* Logo Marquee */
.logo-marquee-section {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent);
}

@media (max-width: 992px) {
    .logo-marquee-section {
        margin-top: 2rem;
        /* Clear navigation buttons on mobile */
    }
}

.logo-marquee-track {
    display: inline-flex;
    animation: scrollLogos 30s linear infinite;
    gap: 6rem;
    align-items: center;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scoll half way if content is duplicated */
}

.brand-logo-item {
    font-weight: 700;
    font-size: 2rem;
    color: #475569;
    /* Moved from hover state */
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 1;
    /* Full opacity */
    transition: 0.3s;
    filter: none;
    /* No grayscale */
}

/* Removed hover effect as requested */

/* =========================================
   Footer & CTA Section Styles
   ========================================= */

/* Top CTA Section */
.cta-section {
    background-image: url('../images/footer-printer.jpg');
    background-size: contain;
    background-position: right center;
    /* Focus on the printer part */
    background-repeat: no-repeat;
    /* padding-top: 5rem;
    padding-bottom: 5rem; */
    position: relative;
    /* No border since it blends */
}

/* Ensure text is readable if image conflicts - optional overlay if needed, 
   but user asked for 'exact image' so we assume image has whitespace */

.cta-title {
    color: #0F172A;
    letter-spacing: -1px;
    font-size: 1.5rem;
    line-height: 1.1;
}

.cta-text {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
}

.btn-cta-primary {
    background-color: #1E3A8A;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: 1px solid #1E3A8A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #172554;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.btn-cta-whatsapp {
    background-color: white;
    color: #15803d;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: 1px solid #9ca3af;
    /* Light cooler gray border per design */
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-cta-whatsapp i {
    font-size: 1.2rem;
}

.btn-cta-whatsapp:hover {
    background-color: #f0fdf4;
    color: #14532d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
}


/* Main Footer Section */
.main-footer {
    /* Exact gradient from light green (left) to light purple (right) */
    background: linear-gradient(90deg, #E6FFFA 0%, #FAFAFA 50%, #F3E8FF 100%);
    font-size: 0.95rem;
    position: relative;
}

.footer-heading {
    color: #0F172A;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #1E3A8A;
}

.footer-contact li {
    font-size: 0.95rem;
    color: #64748b;
}

.footer-social-icons .social-btn {
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3A8A;
    /* Default color per design */
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.footer-social-icons .social-btn:hover {
    background-color: #1E3A8A;
    color: white;
    transform: translateY(-2px);
}

.back-to-top {
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.back-to-top:hover {
    opacity: 0.7;
}

@media (max-width: 992px) {
    .cta-section {
        background-position: center bottom;
        padding-bottom: 300px;
        /* Space for image to show at bottom on mobile */
    }

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

/* =========================================
   Contact Section Styles
   ========================================= */

.contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.text-primary-dark {
    color: #1E3A8A;
}

/* Feature Badges (Left Side) */
.feature-badge {
    background-color: #E2E8F0;
    /* Slate 200 light gray */
    color: #1e293b;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #1e3a8a;
    font-weight: bold;
}

/* Quick Contact Items */
.contact-icon-circle-small {
    width: 40px;
    height: 40px;
    background-color: #E2E8F0;
    color: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-link {
    text-decoration: none;
    color: #1e293b;
    font-size: 1.1rem;
    color: #1E3A8A;
}

.contact-text {
    font-size: 1.1rem;
    color: #1E3A8A;
}

/* Contact Form Card (Right Side) */
/* Contact Form Card (Right Side) */
/* Contact Form Card (Right Side) */
/* Contact Form Card (Right Side) */
.contact-form-card {
    background: linear-gradient(90deg, #E3FEEF 0%, #FEF1EB 50%, #E2E3FF 100%);
    /* Exact 3-color gradient from user reference */
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
}

.form-label-custom {
    font-weight: 600;
    /* Lighter weight */
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control-custom {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #64748b;
    background-color: #ffffff;
    transition: all 0.2s;
}

.form-control-custom::placeholder {
    color: #cbd5e1;
}

.form-control-custom:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.05);
    outline: none;
}

/* Custom Checkbox Wrapper */
.custom-check-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    /* More horizontal padding for button look */
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    height: auto;
    /* Allow auto height */
    width: fit-content;
    /* Sizing dynamic to text */
}

.custom-check-wrapper:hover {
    border-color: #94a3b8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.custom-check-wrapper input[type="checkbox"] {
    width: 1em;
    height: 1em;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    margin-top: 0;
    flex-shrink: 0;
}

.custom-check-wrapper label {
    cursor: pointer;
    color: #0f172a;
    font-weight: 200;
    font-size: 0.90rem;
    /* Slightly larger text */
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    /* Keep text on one line for this button style if possible */
}

/* Submit Button */
.btn-contact-submit {
    background-color: #ffffff;
    color: #1e3a8a;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 10px;
    border: 1px solid #1e3a8a;
    font-size: 1.05rem;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

@media (min-width: 992px) {
    .btn-contact-submit {
        width: auto;
        min-width: 200px;
    }
}

.btn-contact-submit:hover {
    background-color: #1e3a8a;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.15);
}

@media (max-width: 992px) {
    .contact-form-card {
        padding: 2rem;
        margin-top: 3rem;
    }
}

/* Arabic RTL Text Overrides (Structure Preserved) */
.lang-ar h1,
.lang-ar h2,
.lang-ar h3,
.lang-ar h4,
.lang-ar h5,
.lang-ar h6,
.lang-ar p,
.lang-ar .lead,
.lang-ar .form-label-custom,
.lang-ar .footer-desc,
.lang-ar .cta-text,
.lang-ar .contact-desc {
    text-align: right;
    direction: rtl;
}

/* Form Inputs Right Align */
.lang-ar .form-control-custom,
.lang-ar .form-control-custom::placeholder {
    text-align: right;
    direction: rtl;
}

/* Navbar Links - Keep centered but text RTL */
.lang-ar .navbar-nav .nav-link {
    direction: rtl;
}

/* Footer Links */
.lang-ar .footer-links li,
.lang-ar .footer-contact li {
    text-align: right;
    direction: rtl;
    justify-content: flex-end;
    /* If flex */
}

/* Fix flex items in footer contact to align right if they were flex-start */
.lang-ar .footer-contact li.d-flex {
    flex-direction: row-reverse;
    /* Icons on right for footer list? */
}

/* Actually, user said structure same. If structure same, Icon Left, Text Right. 
   But text-align: right.
*/
.lang-ar .footer-contact li.d-flex {
    flex-direction: row;
    /* Keep structure */
    justify-content: flex-end;
    /* Push to right? Or keep left? */
}

/* Wait, if structure is same, then left column is left column. 
   Text inside should be right aligned? */

.lang-ar .footer-links li a {
    display: block;
    text-align: right;
}

/* Hero Section */
.lang-ar .hero-headline,
.lang-ar .hero-subheadline {
    text-align: right;
}

/* Centered Section Titles */
.lang-ar .text-center h1,
.lang-ar .text-center h2,
.lang-ar .text-center h3,
.lang-ar .text-center p {
    text-align: center;
    /* Keep centered sections centered */
}

/* Feature Badges in Contact */
.lang-ar .feature-badge {
    direction: rtl;
    /* If row (Icon Left), rtl makes it (Text Right, Icon Left). 
       Wait, direction: rtl on flex row swaps order visually. 
       Icon (1st child) becomes Rightmost. Text (2nd) becomes Leftmost.
       User said "structure in the same position".
       So we should NOT use direction: rtl on the container if we want Icon Left.
    */
    direction: ltr;
    /* Force container LTR */
    display: flex;
    justify-content: flex-end;
    /* Move to right side? */
    text-align: right;
}

/* Actually, if we want text-align right, but icon left... 
   Text usually flows away from the edge.
   Let's just set direction: rtl for text content.
*/
.lang-ar .feature-badge {
    justify-content: flex-end;
    /* Align the whole badge content to the right if desired? */
    /* No, they are columns. text-align right is enough. */
    flex-direction: row-reverse;
    /* To put icon on right? No, structure same. */
}

/* Let's strictly follow: Structure same. Icon Left. Text Right. */
.lang-ar .feature-badge {
    /* Text simply right aligned? */
    text-align: right;
    /* But it's flex. */
    justify-content: flex-end;
    flex-direction: row-reverse;
    /* Icon on Right looking better for Arabic usually, but violates "structure same"? */
}

/* User specific request: "structure will be in the same position" 
   This strongly suggests: LEFT: Icon. RIGHT: Text.
   But Text is Arabic.
*/

.lang-ar .feature-badge {
    flex-direction: row;
    /* Keep Icon Left */
    text-align: right;
    /* Text aligns right inside its box? */
}

/* If text is right aligned, it might look detached from the icon if gaps are large. 
   Let's stick to simple text-align: right for blocks. */

.lang-ar .contact-item {
    flex-direction: row-reverse;
    /* This matches standard Arabic UI better (Icon Right). 
    But user said "structure same". 
    If I keep Icon Left, and Text Right Align, it looks okay. 
*/
}

/* Final Decision for this iteration: 
   Just text-align: right and direction: rtl on TEXT elements. 
   Keep container directions LTR.
*/

.lang-ar h1,
.lang-ar h2,
.lang-ar p,
.lang-ar span,
.lang-ar a,
.lang-ar label,
.lang-ar li {
    letter-spacing: normal;
    /* Arabic doesn't use spacing much */
}