:root {
    /* Colors */
    --navy: #0B2D6B;
    --navy-dark: #071A3A;
    --teal: #2A6F7B;
    --green: #35C56A;
    /* Lime green from logo icon */
    --bg: #F9FAFB;
    /* Lighter off-white from Figma */
    --text: #0B1B3A;
    --muted: #5D6B85;
    --card: #FFFFFF;
    --stroke: rgba(11, 27, 58, 0.08);

    /* Shadows */
    --shadow-sm: 0 10px 30px rgba(11, 27, 58, 0.08);
    --shadow-md: 0 18px 50px rgba(11, 27, 58, 0.10);

    /* Radii */
    --r-sm: 16px;
    --r-md: 22px;
    --r-lg: 30px;
    --r-xl: 44px;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
}

.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.py-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .py-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .custom-container {
        padding: 0 20px;
    }
}

/* Typography */
h1.hero-heading {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    /* Extra Bold as per Figma */
    color: #0B1C3F;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.small-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.muted-text {
    color: var(--muted);
    font-size: 16px;
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pricing-switch {
    display: inline-flex;
    border: 2px solid #0B2D6B;
    border-radius: 30px;
}

.toggle-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 30px;
    text-decoration: none;
    color: #0B2D6B;
    font-weight: 600;
    transition: all 0.3s ease;
    line-height: 1.1;
}

.toggle-link .subtext {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

/* Active */
.toggle-link.active {
    background: #0B2D6B;
    color: #ffffff;
}

/* Make subtext white when active */
.toggle-link.active .subtext {
    opacity: 0.9;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-navy {
    background-color: var(--navy);
    color: white !important;
}

.btn-white {
    background-color: white;
    color: var(--navy) !important;
    border-radius: 12px;
    font-weight: 600;
}
.btn-white:hover {
    background: #f2f2f2;
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: white !important;
}

.btn-login {
    background-color: white !important;
    border: 1px solid var(--stroke) !important;
    color: var(--text) !important;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
}

.btn-touch {
    background: linear-gradient(90deg, #1C4D9F 0%, var(--green) 100%);
    color: white !important;
    border: none !important;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
}

.btn-white {
    background-color: white;
    color: #0B1C3F !important;
    border: 1px solid white;
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white !important;
}

.btn-circle {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    color: #0B1C3F;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .btn-circle {
    background: var(--green);
    color: white !important;
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    height: 86px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    z-index: 1050;
    background: transparent;
    width: 100%;
    margin: 0;
    padding: 0;

    /* Sticky Positioning */
    position: sticky;
    top: 0;
}

.navbar.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0;
}

/* Align Navbar visual content with Hero Card content */
.navbar .custom-container {
    padding-left: 56px;
    padding-right: 56px;
    /* Hero card has 56px padding, this ensures logo/buttons align with the text/content edges */
}

.navbar-capsule {
    background: #0B2D6B;
    padding: 6px 6px 6px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(11, 45, 107, 0.2);
}
.navbar-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.navbar-grid .navbar-brand {
    justify-self: start;
}

.navbar-grid .navbar-capsule {
    justify-self: center;
}

.navbar-grid .nav-actions {
    justify-self: end;
}

/* Built for Saudi Section Spacing */
.built-saudi-section .h5 {
    font-size: 14px;
    margin-bottom: 8px !important;
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
}

.built-saudi-section .muted-text.small {
    font-size: 15px;
    line-height: 1.5;
}

.saudi-feature {
    padding-left: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.saudi-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 24px;
    border-radius: 3px;
    background: linear-gradient(
        180deg,
        var(--navy),
        var(--green)
    );
    transition: height 0.3s ease;
}

.saudi-feature:hover {
    transform: translateX(6px);
}

.saudi-feature:hover::before {
    height: 40px;
}
.saudi-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.saudi-feature p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
}



.navbar-capsule .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px !important;
}

.navbar-capsule .nav-link:hover,
.navbar-capsule .nav-link.active {
    color: white !important;
}

.lang-pill {
    padding: 8px 18px;
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

/* Hover */
.lang-pill:hover {
    border-color: var(--navy);
    color: var(--navy);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* Remove Bootstrap default arrow spacing */
.lang-pill.dropdown-toggle::after {
    margin-left: 6px;
    font-size: 10px;
}
/* Hero Section */
.hero-section {
    padding-top: 50px;
    /* Increased to prevent overlap with sticky navbar */
    padding-bottom: 50px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-card {
    height: 100%;
    border-radius: var(--r-xl);
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to the top for better control */
}

.hero-gradient-card {
    background: linear-gradient(135deg, #0B1C3F 0%, #10B981 100%);
    color: white;
}

.hero-heading {
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-heading span {
    display: block;
}

.hero-text {
    font-size: 17px;
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-img-card {
    background: #f8f9fa;
    padding: 0;
    overflow: hidden;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    /* Fill flex column height */
    min-height: auto;
}

.hero-img-card img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-stage-container {
    background-color: var(--navy);
    border-radius: var(--r-xl);
    height: 600px;
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-stage-container::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(53, 197, 106, 0.18),
        transparent 70%
    );
    top: -100px;
    right: -100px;
    z-index: 1;
}

.stage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vector-shape {
    position: absolute;
    opacity: 0.12;
}

.vector-1 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    opacity: 0.15;
}

.vector-2 {
    right: 0;
    left: auto;
    bottom: 0;
    height: 100%;
    width: auto;
    opacity: 0.15;
}

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

.stage-mockups-hero {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    z-index: 3;
}

.mockup-hero-1,
.mockup-hero-2 {
    width: 280px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.mockup-hero-2 {
    margin-top: 50px;
}

.stage-arrows button,
.toolkit-prev,
.toolkit-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 60px;
    height: 60px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.stage-arrows button:hover,
.toolkit-prev:hover,
.toolkit-next:hover {
    color: white;
    transform: translateY(-50%) scale(1.1);
    background: transparent;
}

.stage-prev,
.toolkit-prev {
    left: 10px;
}

.stage-next,
.toolkit-next {
    right: 10px;
}

/* Challenge Section */
.challenge-card {
    background: var(--card);
    border-radius: var(--r-md);
    padding: 36px;
    border: 1px solid var(--stroke);
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(53, 197, 106, 0.3);
}

.challenge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(
        180deg,
        var(--navy),
        var(--green)
    );
    transition: height 0.35s ease;
}

.challenge-card:hover::before {
    height: 100%;
}



.card-icon {
    width: 52px;
    height: 52px;
    background: var(--bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--navy);
    font-size: 26px;
}

.know-more-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 2px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    background: white;
    margin-left: 12px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: var(--navy);
    color: white;
}

/* Stage Section (Core Features) */
.stage-container {
    background-color: var(--navy);
    border-radius: var(--r-xl);
    height: 700px;
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
}

.stage-mockups {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: center;
}

.stage-mockups img {
    width: 280px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* mission card */
.mission-card {
    background: var(--card);
    border-radius: var(--r-md);
    padding: 44px;
    border: 1px solid var(--stroke);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(53, 197, 106, 0.25);
}
.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(
        180deg,
        var(--navy),
        var(--green)
    );
    transition: height 0.35s ease;
}

.mission-card:hover::before {
    height: 100%;
}
.mission-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(11, 45, 107, 0.08),
        rgba(53, 197, 106, 0.08)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.mission-card:hover .card-icon {
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--green)
    );
    color: white;
    transform: scale(1.05) rotate(3deg);
}


.rounded-img-block {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.rounded-img-block img {
    transition: transform 0.6s ease;
}

.rounded-img-block:hover img {
    transform: scale(1.05);
}
.rounded-img-block::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(53, 197, 106, 0.15),
        transparent 70%
    );
    bottom: -80px;
    right: -80px;
    z-index: -1;
}
.text-gradient {
    background: linear-gradient(
        90deg,
        var(--navy),
        var(--green)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* Works Stage */
.works-stage-container {
    background-color: #0d3886;
    border-radius: var(--r-xl);
    padding: 60px 40px;
    color: white;
}

.step-card {
    text-align: left;
    padding: 30px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

.step-card span {
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    opacity: 0.7;
}

/* Pricing */
.pricing-card {
    background: white;
    border-radius: var(--r-md);
    padding: 40px;
    border: 1px solid var(--stroke);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 28, 63, 0.1);
    border-color: var(--green);
}

.pricing-card.featured-plan {
    border-color: var(--green);
    background: white;
    box-shadow: 0 20px 40px rgba(11, 28, 63, 0.08);
}

.price-pill {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg);
    border-radius: 999px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.includes h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.includes li {
    margin-bottom: 12px;
    font-size: 14px;
}

.includes li i {
    color: var(--navy);
    margin-right: 8px;
}

.pricing-card .btn-circle {
    position: absolute;
    bottom: 32px;
    right: 32px;
    /* Positioned to the right traditionally in these designs, or bottom-left if Figma insists */
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 40px 24px;
        padding-bottom: 90px;
    }

    .pricing-card .btn-circle {
        bottom: 24px;
        right: 24px;
    }
}

/* CTA */
.cta-banner {
    background-color: var(--navy);
    border-radius: var(--r-xl);
    padding: 80px;
    color: white;
    box-shadow: 0 25px 60px rgba(11, 28, 63, 0.2);
}

.cta-banner h2 {
    font-size: 48px;
    font-weight: 800;
}

/* Footer */
.footer {
    background-color: #040915;
    color: white;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    text-decoration: none;
}

/* Carousel Overwrites */
.logo-carousel .logo-item {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;          /* full visibility */
    filter: none;        /* remove grayscale */
    transition: all 0.3s ease;
}

.logo-carousel .logo-item {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-carousel .logo-item:hover {
    transform: scale(1.05); /* optional nice hover effect */
}

/* Perfectly Responsive Adjustments */

@media (max-width: 1199px) {
    h1.hero-main-heading {
        font-size: 56px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-stage-container {
        height: 520px;
    }

    .mockup-hero-1,
    .mockup-hero-2 {
        width: 220px;
    }
}

@media (max-width: 991px) {
    .navbar {
        height: 72px;
    }

    .navbar-brand img {
        height: 30px;
    }

    .hero-heading {
        font-size: 44px;
    }

    .hero-card {
        padding: 32px;
        min-height: auto;
    }

    .section-title {
        font-size: 36px;
    }

    .stage-container {
        height: 550px;
    }

    .stage-mockups img {
        width: 200px;
    }

    .cta-banner {
        padding: 60px 40px;
    }

    .cta-banner h2 {
        font-size: 32px;
    }

    .muted-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-heading {
        font-size: 34px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 28px;
    }

    h3 {
        font-size: 18px;
    }

    .muted-text {
        font-size: 15px;
    }

    .hero-card {
        padding: 40px 24px;
    }

    .stage-container {
        height: 400px;
        padding: 40px 20px;
    }

    .stage-mockups {
        bottom: -80px;
        gap: 20px;
    }

    .stage-mockups img {
        width: 140px;
    }

    .rounded-img-block {
        height: 300px;
    }

    .cta-banner {
        padding: 40px 24px;
        text-align: center;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .footer {
        text-align: center;
    }

    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-lg-4 {
        margin-bottom: 40px;
    }

    .store-badges {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-card {
        padding: 32px 20px;
    }
}

/* Mobile Menu Active State */
.mobile-menu-inner .nav-link.active {
    color: var(--navy) !important;
    font-weight: 700;
    background-color: rgba(11, 45, 107, 0.05);
    border-radius: 8px;
}

/* Challenge Slider Full Width Alignment */
.challenge-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding-left: 24px;
    /* Default for smaller screens */
}

@media (min-width: 1400px) {
    .challenge-slider-wrapper {
        padding-left: calc((100vw - 1400px) / 2 + 24px);
    }
}

/* Built for Saudi Section */
.saudi-feature {
    margin-bottom: 24px;
}
.reality-list {
    max-width: 900px;
    text-align: left;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.reality-list li {
    position: relative;
    padding: 20px 20px 20px 55px;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1;
}

/* Accent line */
.reality-list li::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 22px;
    width: 12px;
    height: 12px;
    background: #0b2d6b; /* change to your brand color */
    border-radius: 50%;
}

/* Hover effect */
.reality-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Highlight final strong statement */
.reality-list .strong-point {
    background: linear-gradient(135deg, #0d6efd, #0056b3);
    color: #fff;
    font-weight: 500;
}

/* Title highlight */
.highlight-text {
    color: #1d4a8d;
    font-weight: 600;
}

.challenge-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.03) 0%,
        rgba(53, 197, 106, 0.03) 100%
    );
    position: relative;
}

.mission-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
     position: relative;
    overflow: hidden;
}

.toolkit-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.03) 0%,
        rgba(53, 197, 106, 0.03) 100%
    );
    position: relative;
}


.toolkit-lead {
    max-width: 820px;
    font-size: 17px;
    line-height: 1.7;
}
.logo-strip-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.03) 0%,
        rgba(53, 197, 106, 0.03) 100%
    );
    position: relative;
}
.core-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
}
.pricing-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
}

.built-saudi-section {
  background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
     position: relative;
    overflow: hidden;
}

.problem-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
}
.feature-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    transition: all 0.3s ease;
}

/* Hover Effect */
.feature-card:hover {
    border-color: var(--green);   /* Or var(--navy) */
    box-shadow: 0 15px 40px rgba(11, 45, 107, 0.08);
    transform: translateY(-4px);
}
.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-card p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
}

.feature-card {
    position: relative;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    transition: 0.3s ease;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-header h4{
    margin: 0;
}

.feature-icon{
    font-size: 24px;
    color: var(--navy);
}

.stage-title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.problem-swiper {
    padding: 30px 0;
}

.problem-card {
    background: white;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--stroke);
    transition: all 0.4s ease;
    transform: scale(0.85);
    opacity: 0.6;
}

.problem-icon {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: var(--muted);
}

.swiper-slide-active .problem-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 20px 60px rgba(11, 45, 107, 0.15);
    border-color: transparent;
}

.problem-card {
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        var(--navy),
        var(--green)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: scale(0.92);
    opacity: 0.85;
}

.old-price {
    text-decoration: line-through;
    color: #9aa4b2;
    font-size: 14px;
    font-weight: 500;
}


.discount-badge {
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: var(--teal);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}


.price-box {
    margin: 20px 0 24px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1px;
}

.price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.price-period {
    font-size: 14px;
    color: var(--muted);
}

.price-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card.featured-plan {
    border: 2px solid var(--green);
    transform: translateY(-12px);
}

.pricing-card.featured-plan::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}
.pricing-card {
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(11, 28, 63, 0.12);
}



.contact-section {
    background: linear-gradient(
        180deg,
        rgba(11, 45, 107, 0.02),
        rgba(53, 197, 106, 0.02)
    );
     position: relative;
    overflow: hidden;
}
.contact-section::before {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(11, 45, 107, 0.04);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}
.contact-info {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--stroke);
    border-radius: 16px;
}

.contact-info .btn-circle {
    background: #f4f6fa;
    border: 1px solid var(--stroke);
    color: var(--navy);
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover .btn-circle {
    background: var(--navy);
    color: white;
    transform: scale(1.05);
}
.contact-section .card {
    border-radius: 20px;
    border: 1px solid var(--stroke);
    box-shadow: 0 20px 40px rgba(11, 28, 63, 0.06);
}

.comparison-table{
    background:white;
    border-radius:10px;
    overflow:hidden;
}

.comparison-table thead{
    background:#f8f9fa;
}

.comparison-table th{
    font-weight:600;
    padding:16px;
}

.comparison-table td{
    padding:14px;
}

.comparison-table tbody tr:hover{
    background:#f9fbff;
}

.comparison-table td:first-child{
    font-weight:500;
}

.form-control {
    border-radius: 12px;
    border: 1px solid var(--stroke);
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.25s ease;
}

.form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(11, 45, 107, 0.08);
}
.btn-navy {
    background: var(--navy);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: #0b1f4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(11, 45, 107, 0.15);
}
.bg-light {
    background: #f7f9fc !important;
}

.hero-heading {
    margin-bottom: 16px;
}.hero-heading-h1 {
    margin-bottom: 16px;
}
/* Desktop language button */
.lang-btn {
    background: #f4f6fa;
    border: 1px solid var(--stroke);
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s ease;
}

.lang-btn:hover {
    background: var(--navy);
    color: #fff;
}

/* Dropdown style */
.lang-dropdown {
    border-radius: 14px;
    border: 1px solid var(--stroke);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 8px;
}

.lang-dropdown .dropdown-item {
    border-radius: 8px;
    font-weight: 500;
}

.lang-dropdown .dropdown-item.active {
    background: var(--navy);
    color: #fff;
}

/* Mobile active language */
.active-lang {
    background: var(--navy);
    color: #fff !important;
}

/* Mobile title */
.mobile-lang-title {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.6;
}

/* 1. Flip the icons so they point the right way */
[dir="rtl"] .prev-btn i,
[dir="rtl"] .next-btn i {
    transform: scaleX(-1);
    display: inline-block;
}

/* 2. Swap button positions in the UI for RTL */
[dir="rtl"] .carousel-nav {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* 3. Essential Fix: Prevent Owl from breaking layout in RTL */
[dir="rtl"] .owl-carousel {
    direction: ltr !important;
}
[dir="rtl"] .owl-carousel .owl-item {
    direction: rtl !important;
    float: right; /* Ensures items stack correctly from the right */
}








