/*
Theme Name: 10deils Home Services
Theme URI: https://10deils.com
Author: Chetan Baraiya
Author URI: https://aaryasoftex.com/
Description: A professional home services marketplace theme with bilingual EN/AR support, RTL layout, service carousels, and premium animations.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tendeils
Tags: home-services, rtl-language-support, custom-menu, translation-ready
*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #144DF6;
    --hover-color: #144DF6;
    --dark-bg: #1A1A1A;
    --darker-bg: #111111;
    --light-bg: #F9F9F9;
    --text-color: #333333;
    --text-light: #AAAAAA;
    --white: #FFFFFF;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
    --brand-gradient: linear-gradient(90deg, #144df6 0%, #00d2ff 100%);
}

html {
    overflow-x: hidden;
}

/* Lenis Recommended CSS */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
}

.breadcrumbs a {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrumbs span.separator {
    opacity: 0.5;
}

.breadcrumbs span.current {
    opacity: 0.7;
}

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    display: block !important;
}

.page-header .hero-overlay.dark-type {
    background: rgba(0, 0, 0, 0.8) !important;
}

.page-header h1 {
    color: var(--white) !important;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 800;
}

/* Base Animation Classes */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-top {
    transform: translateY(-50px);
}

.reveal-bottom {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Stagger Effects */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-bg);
    text-transform: uppercase;
    font-weight: 700;
}

.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.heder-btn {
    margin-right: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-bg);
    text-transform: capitalize;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 5px;
}

.header-btn-eng {
    background: rgba(20, 77, 246, 0.08);
    border: 1px solid rgba(20, 77, 246, 0.2);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-quote,
.btn-submit {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
}

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

.btn-primary:hover,
.btn-quote:hover,
.btn-submit:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

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

.com-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
    transition: var(--transition);
    display: inline-flex;
    width: fit-content;
    margin-top: 30px;
    background: linear-gradient(90deg, #144df6 0%, #00d2ff 100%);
    ;
    padding: 12px 25px;
    min-width: auto;
    border: none;
    box-shadow: 0 10px 20px rgba(20, 77, 246, 0.2);
}

.com-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(185, 255, 102, 0.3);
}

/* Highlight Text */
.highlight {
    color: var(--primary-color);
}

/* New About Us Styles */
:root {
    --accent-lime: #144DF6;
    --dark-pill: #1d1d1d;
}

.badge-pill {
    background: #f1f3f3;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    border: 1px solid #eee;
    text-transform: uppercase;
}

.badge-pill.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-pill.dark {
    background: var(--dark-pill);
    color: white;
    border: none;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Innovations Section */
.innovations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mockup-container {
    position: relative;
    padding-bottom: 50px;
}

.main-mockup {
    width: 90%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.help-bubble {
    position: absolute;
    top: -25px;
    right: 0;
    background: var(--accent-lime);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(185, 255, 102, 0.3);
    z-index: 5;
}

.help-bubble p {
    font-weight: 800;
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    text-transform: none;
}

.help-bubble i {
    font-size: 1.5rem;
}

.download-badge-circular {
    position: absolute;
    bottom: 0px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(42deg, #144df6 0%, #00d2ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    z-index: 5;
}

.download-badge-circular svg {
    width: 100%;
    height: 100%;
    animation: rotateCircle 15s linear infinite;
}

.download-badge-circular text {
    --width: 160px;
    font-size: 9px;
    font-weight: 500;
    line-height: 0em;
    letter-spacing: 1.5px;
    fill: #fff;
}

.download-badge-circular path {
    fill: none;
}

.download-badge-circular .inner-icon {
    position: absolute;
    font-size: 2rem;
    color: #000;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-item-inline {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: #144df638;
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-size: 1.15rem;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    text-transform: none;
}

.innovations-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-google-play img {
    height: 55px;
}

.btn-contact-lime {
    background: var(--accent-lime);
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-contact-lime i {
    font-size: 0.8rem;
}

.btn-contact-lime:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(185, 255, 102, 0.3);
}

.btn-contact-lime.large {
    width: fit-content;
    padding: 18px 40px;
    margin-top: 30px;
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.check-list i {
    color: #66DD9D;
    font-size: 1.2rem;
}

.approach-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.approach-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
}

.card-icon-box.lime {
    width: 60px;
    height: 60px;
    background: linear-gradient(42deg, #144df6 0%, #00d2ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(185, 255, 102, 0.2);
    color: #fff;
}

.approach-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.approach-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-transform: none;
}

.card-check-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.card-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.card-check-list i {
    color: var(--accent-lime);
    font-size: 1.1rem;
}

/* Reliable Banner */
.reliable-banner .container-wide {
    max-width: 1400px;
}

.banner-inner {
    background: #111;
    background-image: radial-gradient(circle at 2px 2px, #222 1px, transparent 0);
    background-size: 40px 40px;
    padding: 80px 100px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    font-size: 3rem;
    color: white;
    margin: 20px 0 40px;
}

.banner-mockups {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.phone-stack-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-phone-mockup {
    position: absolute;
    width: 220px;
    /*height: 450px;*/
    /*background: #111;*/
    border-radius: 35px;
    /*border: 6px solid #222;*/
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.banner-phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-phone {
    z-index: 3;
    transform: scale(1.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.side-phone {
    z-index: 1;
    opacity: 0.8;
}

.left-phone {
    transform: translateX(-140px) rotate(-10deg) scale(0.9);
}

.right-phone {
    transform: translateX(140px) rotate(10deg) scale(0.9);
}

.banner-phone-mockup:hover {
    transform: scale(1.15);
    z-index: 10 !important;
    opacity: 1;
}

.decor-star {
    position: absolute;
    color: var(--accent-lime);
    font-size: 2.5rem;
}

.star-1 {
    top: 20%;
    left: 10%;
    opacity: 0.3;
}

.star-2 {
    bottom: 20%;
    right: 40%;
    opacity: 0.5;
    font-size: 1.5rem;
}

/* Stats & Testimonials Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stats-testimonial-large {
    background: var(--accent-lime);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}

.stats-testimonial-large h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.stats-testimonial-large p {
    color: #849DEA;
    text-transform: none;
    font-weight: 500;
}

.user-img-box {
    margin-top: auto;
    position: relative;
    padding-top: 40px;
}

.user-img-box img {
    width: 80%;
    margin: 0 auto;
    display: block;
    mix-blend-mode: multiply;
}

.star-3 {
    top: 20%;
    left: 0%;
    color: #000;
}

.star-4 {
    bottom: 20%;
    right: 0%;
    color: #fff;
}

.stats-cards-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.mini-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.stars-row {
    color: #fbbc05;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.mini-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: none;
}

.google-logo {
    height: 25px;
}

.avatar-group-stacked {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.avatar-group-stacked img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
}

.avatar-group-stacked img:first-child {
    margin-left: 0;
}

.badge-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    color: #000;
}

.testimonial-bubble-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.test-quote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    margin: 20px 0 40px;
    text-transform: none;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.test-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info {
    flex-grow: 1;
}

.author-info h5 {
    margin-bottom: 2px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
    text-transform: none;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-arrow:hover {
    background: #000;
    color: white;
    border-color: #000;
}

/* Responsive Overrides */
@media (max-width: 991px) {

    .innovations-grid,
    .approach-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .innovations-left {
        order: 2;
    }

    .innovations-right {
        order: 1;
        text-align: center;
    }

    .feature-item-inline {
        text-align: left;
    }

    .innovations-btns {
        justify-content: center;
    }

    .banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .stack-img {
        height: 300px;
        margin-bottom: 0;
        margin-top: 40px;
    }
}

/* RTL Support for New About Us Sections */
[dir="rtl"] .innovations-grid,
[dir="rtl"] .approach-grid,
[dir="rtl"] .stats-grid {
    direction: rtl;
}

[dir="rtl"] .help-bubble {
    right: auto;
    left: 0;
    flex-direction: row-reverse;
}

[dir="rtl"] .download-badge-circular {
    left: auto;
    right: -30px;
}

[dir="rtl"] .check-list i,
[dir="rtl"] .card-check-list i {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .feature-icon-box {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .btn-contact-lime i {
    transform: rotate(180deg);
}

[dir="rtl"] .nav-arrows {
    flex-direction: row-reverse;
}

[dir="rtl"] .avatar-group-stacked img {
    margin-left: 0;
    margin-right: -15px;
}

[dir="rtl"] .avatar-group-stacked img:first-child {
    margin-right: 0;
}

[dir="rtl"] .star-1 {
    left: auto;
    right: 10%;
}

[dir="rtl"] .star-2 {
    right: auto;
    left: 40%;
}

[dir="rtl"] .star-3 {
    left: auto;
    right: 0%;
}

[dir="rtl"] .star-4 {
    right: auto;
    left: 0%;
}

/* FAQ Section */
.faq-section {
    background: #fcfcfc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-left h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 20px 0;
}

.faq-left p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-cta-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.faq-rating strong {
    font-size: 2rem;
    display: block;
}

.faq-rating span {
    color: #666;
    font-size: 0.9rem;
}

.faq-user-avatars {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.user-satisfaction {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #f1f3f3;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-num {
    font-weight: 800;
    font-size: 1.1rem;
}

.accordion-header h3 {
    font-size: 1rem;
    flex-grow: 1;
    color: var(--dark-bg);
}

.accordion-icon {
    padding: 10px;
    width: 30px;
    height: 30px;
    background: #144df638;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    padding: 8px;
    background: #000;
    color: var(--white);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 30px 30px 65px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* RTL FAQ */
.rtl .accordion-icon {
    margin-right: auto;
    margin-left: 0;
}

.rtl .accordion-content p {
    padding: 0 65px 30px 30px;
}

.rtl .avatar-group img {
    margin-left: 0;
    margin-right: -15px;
}

.rtl .avatar-group img:first-child {
    margin-right: 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--darker-bg);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #333;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.9rem;
    margin: 0 !important;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header & Nav */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 3;
    transition: var(--transition);
}

.header.sticky {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header.sticky .header-content {
    height: 70px;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 90px;
}

.navbar {
    display: flex;
    justify-content: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary-color);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark-bg);
    font-size: 1.1rem;
    position: relative;
    text-transform: capitalize;
}

.nav-links a:hover,
.nav-links li.current-menu-item>a,
.nav-links li.current_page_item>a,
.nav-links li.current-menu-ancestor>a {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links li.current-menu-item>a::after,
.nav-links li.current_page_item>a::after,
.nav-links li.current-menu-ancestor>a::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-bg);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Full viewport height for landing page focus */
    background: linear-gradient(90deg, #144df6 0%, #00d2ff 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 0px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.hero-bottom-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-bottom-shape img {
    width: 100%;
    height: auto;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Text | Image */
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 650px;
}

.sub-heading {
    color: #F9F9F9;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    /* allow wrapping on small screens */
}

/* Store Buttons */
.store-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
    transition: var(--transition);
}

.store-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.store-icon {
    font-size: 2rem;
    margin-right: 12px;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.small-text {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.big-text {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Mockup Image */
.hero-mockup {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-mockup img {
    max-width: 100%;
    max-height: 70vh;
    /* Constrain height */
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.5));
}

.hero-mockup:hover img {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

/* Responsive adjusting */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        /* Stack */
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-mockup {
        margin-top: 30px;
        display: none;
        /* Hide on smaller screens or adjust size */
    }

    @media (min-height: 800px) {
        .hero-mockup {
            display: flex;
        }

        /* Show if tall enough */
    }
}


/* Services */
.section-header {
    margin-bottom: 60px;
}

.sub-title {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Category Header */
.category-header {
    margin: 10px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    text-align: left;
}

.category-header h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin: 0;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    position: relative;
    height: 200px;
    /* overflow: hidden; */
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(0deg, #144df6 0%, #00d2ff 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.service-content {
    padding: 40px 30px 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--dark-bg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* Services Carousel Styles */
.services.section-padding {
    background-color: var(--primary-color);
    color: var(--white);
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.services .sub-title {
    color: rgba(255, 255, 255, 0.8);
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
    /* Space for shadows */
    width: 100%;
}

.carousel-slide {
    list-style: none;
    flex-shrink: 0;
    padding: 0 10px;
    /* Gutter between slides via padding */
    box-sizing: border-box;
    /* Default Mobile (1 item) */
    width: 100%;
    flex: 0 0 100%;
}

/* Tablet (2-3 items) - Let's do 3 as requested */
@media (min-width: 768px) {
    .carousel-slide {
        width: 33.333%;
        flex: 0 0 33.333%;
    }
}

/* Desktop (4 items) */
@media (min-width: 1024px) {
    .carousel-slide {
        width: 25%;
        flex: 0 0 25%;
    }
}

/* Specific Card Style matching the green reference */
.service-card-carousel {
    background: var(--white);
    border-radius: 20px;
    /* All corners rounded initially */
    overflow: hidden;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.card-image {
    position: relative;
    height: 200px;
    /* overflow: hidden; */
}

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

.service-card-carousel:hover .card-image img {
    transform: scale(1.1);
}

.card-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #8BC34A;
    /* Using a contrasting accent or keep primary */
    background: var(--primary-color);
    /* Kept consistent */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 35px 25px 25px;
    /* Top padding for icon space */
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--dark-bg);
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Carousel Nav */
/* Carousel Nav */
/* Carousel Nav */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin-top: 10px;
}

.carousel-indicator {
    border: none;
    width: 10px;
    height: 10px;
    background: rgb(112 112 112 / 50%);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.current-slide {
    background: #606060;
    transform: scale(1.2);
}

/* Hide original grid on index if carousel present */
/* But we reused grid classes elsewhere, so only hide if needed or scoping handles it */

/* CTA Section */
.cta-section {
    background: var(--brand-gradient);
    padding: 60px 0;
    color: var(--white);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-btn {
    /* border: 1px solid #fff; */
    border-radius: 5px;
}

.cta-btn1 {
    border: 1px solid #fff;
}

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

.cta-btn .btn-primary:hover {
    background: var(--white);
    color: var(--darker-bg);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.project-overlay p {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.contact-info-box {
    border-radius: 10px;
    background: var(--darker-bg);
    color: var(--white);
    padding: 50px;
}

.contact-info-box h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-box p {
    color: #849DEA;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #aaa;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-box {
    padding: 50px;
    background: var(--white);
}

.contact-form-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

/* Footer */
.footer {
    border-radius: 40px 40px 10px 0px;
    background: var(--darker-bg);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
}

.footer-logo {
    color: var(--white) !important;
    margin-bottom: 20px;
}

.footer-widget p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-widget ul li a {
    color: var(--text-light);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    background: #1f1f1f;
    border: none;
    color: var(--white);
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--hover-color);
}

.footer-bottom {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 0.9rem;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}

.footer-bottom .social-links {
    justify-self: end;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact-list li i {
    color: #144df6;
    /* Lime green matching the image */
    font-size: 1.1rem;
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.footer-contact-list li span {
    line-height: 1.4;
    font-family: var(--font-body);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    /* margin-right: auto;
    margin-left: 20px; */
}

.footer-legal-links a {
    color: var(--text-light);
    font-weight: 500;
}

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

.footer-app-btns {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* Center buttons */
    gap: 10px;
}

/* RTL Support Base */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .logo i {
    margin-left: 10px;
    margin-right: 0;
}

.rtl .social-icons a {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .nav-links {
    flex-direction: row-reverse;
}

.rtl .footer-widget h4::after {
    left: auto;
    right: 0;
}

.rtl .testimonial-card i.quote-icon {
    right: auto;
    left: 30px;
}

/* Sticky Header Adjustment */
.header.sticky {
    position: fixed;
    /* Use fixed for better consistency */
    top: 0;
    width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        height: 70px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        padding: 5px;
        display: block;
    }

    .btn-quote {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .experience-badge {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-box {
        padding: 30px;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* Specialization Section */
.specialization {
    background-color: var(--white);
    overflow: hidden;
}

.specialization-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specialization-image-box {
    position: relative;
    padding-right: 40px;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Rating Badge */
.rating-badge {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.rating-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.rating-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Service Stamp */
.service-stamp {
    position: absolute;
    top: -40px;
    right: 10px;
    width: 120px;
    height: 120px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: rotateStamp 20s linear infinite;
}

.stamp-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.stamp-inner svg {
    width: 100%;
    height: 100%;
    fill: none;
}

.stamp-inner text {
    fill: var(--white);
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-weight: 500;
}

.stamp-inner i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes rotateStamp {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Content Box */
.specialization-content .sub-title {
    margin-bottom: 15px;
}

.specialization-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.specialization-content p {
    color: #666;
    margin-bottom: 10px;
    max-width: 500px;
}

.spec-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.spec-item h4 {
    font-size: 1.1rem;
    text-transform: capitalize;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--dark-bg);
}

/* Marquee Section */
.marquee-section {
    background: var(--primary-color);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 50px;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    min-width: 100%;
    gap: 50px;
    animation: scrollMarquee 30s linear infinite;
    align-items: center;
}

[dir="rtl"] .marquee-content {
    animation: scrollMarqueeRTL 30s linear infinite;
}

.marquee-content span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-content .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }

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

@keyframes scrollMarqueeRTL {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .specialization-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .specialization-image-box {
        padding-right: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .spec-services-grid {
        grid-template-columns: 1fr;
    }

    .specialization-content h2 {
        font-size: 2rem;
    }

    .marquee-content span {
        font-size: 1.5rem;
    }
}

/* App Showcase Section */
.app-showcase {
    background-color: var(--light-bg);
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0px 0;
}

.phone-mockup {
    width: 280px;
    /*height: 580px;*/
    /*background: #111;*/
    /*border-radius: 40px;*/
    /*border: 8px solid #222;*/
    /*overflow: hidden;*/
    position: relative;
    /*box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);*/
    z-index: 2;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-phone {
    position: absolute;
    width: 240px;
    height: 480px;
    right: 0px;
    bottom: 20px;
    z-index: 1;
    opacity: 0.8;
    transform: rotate(10deg);
}

/* Professionals Section */
.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pro-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pro-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
}

.pro-info {
    padding: 25px;
}

.pro-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.pro-info p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.pro-rating {
    font-size: 0.9rem;
    color: #888;
}

.pro-rating i {
    color: #FFD700;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .showcase-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

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

    .feature-list li {
        justify-content: center;
    }

    .showcase-visual {
        margin-top: 40px;
    }

    .secondary-phone {
        display: none;
    }
}

.mini-card .google-logo {
    height: 30px;
    width: auto;
    display: block;
    margin: 15px auto 0;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(20, 77, 246, 0.3);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    /* Above sticky header if needed */
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--hover-color);
    transform: translateY(-5px);
}

/* Testimonials Section */
/* Social Links Round */
.social-links,
.social-icons {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
}

.social-links a,
.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    line-height: 1;
    text-align: center;
    margin: 0 !important;
}

.social-links a i,
.social-icons a i {
    font-size: 0.9rem;
    margin: 0 !important;
}

.social-links a:hover,
.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Testimonial Carousel Styles */
.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.testimonial-track-container {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 15px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.test-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.test-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.testimonial-card i.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-user span {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .testimonial-carousel-container {
        max-width: 100%;
    }
}

/* Language Dropdown Styles */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 5px;
    min-width: 120px;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.show .lang-list {
    display: block;
}

.lang-option {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 0.8rem;
    color: white;
    transition: background 0.3s;
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
}

.lang-option:hover {
    background: var(--primary-color);
}

.lang-option.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.lang-option.active:hover {
    color: white;
}

/* Service Icon Circular Fix */
.service-icon,
.service-card-icon,
.spec-icon,
.spec-services-grid .spec-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.service-icon i,
.service-card-icon i,
.spec-icon i {
    margin: 0 !important;
}

/* RTL Adjustments */
.rtl .lang-list {
    right: auto;
    left: 0;
}

.rtl .lang-option {
    text-align: right;
}

.rtl .social-links,
.rtl .social-icons {
    justify-content: flex-end !important;
}

.rtl .current-lang i {
    margin-right: 10px;
    margin-left: 0;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.hiw-container {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hiw-content h2 {
    font-size: 40px;
    line-height: 1.1;
    margin: 20px 0 40px;
}

.hiw-steps {
    position: relative;
    margin-top: 40px;
}

.hiw-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -30px;
    width: 1px;
    background: #eee;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #144df638;
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.step-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hiw-mockup img,
.hiw-summary img {
    width: 100%;
    height: auto;
}

.hiw-summary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Badge Style */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: #f0f7e6;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: capitalize;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .hiw-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hiw-container {
        grid-template-columns: 1fr;
    }

    .hiw-content {
        text-align: center;
    }

    .hiw-step {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 40px;
    }
}

/* RTL Adjustments */
.rtl .hiw-step {
    text-align: right;
}

.rtl .hiw-step:not(:last-child)::after {
    left: auto;
    right: 20px;
}

/* Global Color Refinements */
.btn-primary,
.btn-submit,
.service-card-carousel .card-icon,
.pro-badge {
    background: linear-gradient(90deg, #144df6 0%, #00d2ff 100%) !important;
    color: #fff !important;
}

/* 
.btn-primary,
.btn-submit,
.service-card-carousel .card-icon,
.pro-badge,
.rating-info strong,
.feature-list i {
    background-color: var(--primary-color) !important;
} */
.highlight {
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
}

/* resposive */
@media screen and (min-width: 1600px) and (max-width: 1920px) {
    .hero-mockup img {
        max-height: 60vh;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .hero-mockup img {
        max-height: 60vh;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .hero-mockup img {
        max-height: 55vh;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hero-mockup img {
        max-height: 40vh;
    }
}

@media screen and (min-width: 375px) and (max-width: 767px) {
    .hero-container {
        gap: 10px;
    }

    .hero {
        height: 125vh;
    }

    .hero-mockup img {
        max-height: 50vh;
    }

    .heder-btn,
    .header-btn-eng {
        font-size: 0.8rem;
        padding: 10px 10px;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .specialization-content h2,
    .hiw-content h2,
    .section-header h2,
    .hero-text h1,
    .stats-testimonial-large h2,
    .banner-content h2,
    .faq-left h2,
    .category-header h2 {
        font-size: 1.8rem;
    }

    .stats-testimonial-large {
        padding: 25px;
    }

    .mini-card {
        padding: 40px 20px;
    }

    .hiw-mockup img,
    .hiw-summary img {
        padding: 0px 50px;
    }

    .accordion-icon {
        width: 30px;
        height: 30px;
    }

    .banner-phone-mockup.side-phone {
        display: none;
    }

    .phone-stack-container {
        height: 400px;
    }

    .banner-phone-mockup.main-phone {
        transform: scale(1);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .footer-legal-links {
        display: contents !important;
    }

    .footer-bottom .footer-legal-links,
    .footer-bottom .social-links {
        justify-content: center;
        justify-self: center;
    }

    .help-bubble {
        display: none;
    }

    .logo-img {
        height: auto;
        width: 18%;
    }

    .footer {
        padding-top: 40px;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .main-mockup {
        width: 100%;
    }

    .sfp-submit-btn {
        width: 50%;
    }

    .page-header {
        padding: 50px 0;
    }

    .contact-form-box {
        padding: 10px;
    }
}


/* resposive */
.custom-contact-form {
    max-width: 600px;
}

.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 16px;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

.custom-contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus,
.custom-contact-form select:focus {
    background: #fff;
    border-color: #ccc;
}

.custom-contact-form input[type="submit"] {
    width: auto;
    background: linear-gradient(90deg, #2b59ff, #1f3fd1);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-contact-form input[type="submit"]:hover {
    background: linear-gradient(90deg, #1f3fd1, #2b59ff);
}

/* App Showcase Section */
.app-showcase {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.showcase-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.showcase-content {
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list i {
    color: #66DD9D;
    font-size: 1.2rem;
}

.showcase-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.phone-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.secondary-phone {
    position: absolute;
    width: 240px;
    right: 50px;
    top: 100px;
    z-index: 1;
    opacity: 0.7;
    transform: scale(0.9);
}

.phone-mockup:hover {
    transform: translateY(-10px);
    z-index: 3;
    opacity: 1;
}

@media (max-width: 992px) {
    .showcase-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-content {
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .showcase-visual {
        height: auto;
        padding-top: 10px;
    }

    .secondary-phone {
        display: none;
    }
}

/* About Announcement Section */
.about-announcement {
    background: linear-gradient(135deg, #f9f9fc 0%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.about-announcement::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(20, 77, 246, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.announcement-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.announcement-content {
    padding-right: 30px;
}

.announcement-content h2 {
    font-size: 20px;
    line-height: 1.4;
    color: var(--dark-bg);
    margin-bottom: 30px;
}

.announcement-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcement-text-blocks .text-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.announcement-text-blocks .text-block:hover {
    transform: translateY(-5px);
}

.text-block .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(20, 77, 246, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.text-block p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.registration-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    border-left: 6px solid var(--primary-color);
}

.registration-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.registration-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.announcement-image {
    position: relative;
}

.announcement-img-wrapper {
    position: relative;
    border-radius: 24px;
/*     overflow: hidden; */
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1); */
}

.announcement-img-wrapper img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.announcement-img-wrapper:hover img {
    transform: scale(1.05);
}

.img-overlay-grad {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%); */
    pointer-events: none;
}

.floating-feature-badge {
    position: absolute;
    bottom: 40px;
    left: 15px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-feature-badge .f-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-feature-badge h5 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-feature-badge span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .announcement-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .announcement-content {
        padding-right: 0;
    }

    .floating-feature-badge {
        left: 30px;
        bottom: 30px;
    }

    .announcement-img-wrapper img {
        height: 400px;
    }
}