@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Syne:wght@400..800&family=Yantramanav:wght@100..900&display=swap');
@import url('https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css');

/* ============================================================== 
     # Variables & Design Tokens
=================================================================== */
:root {
    --dark1: #F8FAFC;
    --dark2: #94A3B8;
    --light_white: #0B0F19;
    --primary_color: #3B82F6;
    --primary_color2: #60A5FA;
    --primary_light: #1E293B;
    --primary_light2: rgba(59, 130, 246, 0.2);
    --accent_gold: #E7CB75;
    --accent_gold_light: rgba(231, 203, 117, 0.15);
    --gray: #1E293B;
    --font_syne: 'Cambria', Georgia, serif;
    --font_yantramanv: 'Cambria', Georgia, serif;
    --font_dm: 'Cambria', Georgia, serif;
    --yellow_color: #E7CB75;
    --white: #111827;
    --border_radius: 0px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================== 
     # Global Resets & Scrollbars
=================================================================== */
*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font_dm);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark2);
    background-color: var(--light_white);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font_yantramanv);
    color: var(--dark1);
    font-weight: 700;
}

/* Scrollbar Design */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--light_white);
}
::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--dark2);
}

/* ============================================================== 
     # Layout Components
=================================================================== */
.custom-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .custom-container {
        padding: 0 15px;
    }
}

.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-center {
    justify-content: center;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-1 {
    flex: 1;
}
.w-full {
    width: 100%;
}
.gap-24 {
    gap: 24px;
}
.gap-12 {
    gap: 12px;
}

/* Typography elements */
.section-subtitle {
    font-family: var(--font_syne);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary_color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font_yantramanv);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--dark1);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .section-title {
        font-size: 32px;
    }
}

/* ============================================================== 
     # Buttons (Synck Hover Effect)
=================================================================== */
.theme-btn, .theme-btn2 {
    font-family: var(--font_dm);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
    background: var(--primary_color);
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 0 !important;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    overflow: hidden;
    gap: 8px;
    border: none;
}

.theme-btn::before, .theme-btn::after,
.theme-btn2::before, .theme-btn2::after {
    content: '';
    width: 50%;
    height: 0;
    background: var(--dark1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: var(--transition);
}

.theme-btn::after, .theme-btn2::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.theme-btn:hover::before, .theme-btn:hover::after,
.theme-btn2:hover::before, .theme-btn2:hover::after {
    height: 100%;
}

.theme-btn:hover, .theme-btn2:hover {
    color: #060606 !important;
}

.theme-btn:hover i, .theme-btn2:hover i {
    transform: rotate(45deg);
    color: #060606 !important;
}

.theme-btn i, .theme-btn2 i {
    font-size: 16px;
    color: #ffffff !important;
    transition: transform 0.5s ease;
}

/* Button 2 Variant */
.theme-btn2 {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #2563EB !important;
}

.theme-btn2::before, .theme-btn2::after {
    background: #2563EB;
}

.theme-btn2:hover {
    color: #060606 !important;
}

/* Simple shadow wrapper */
.simple-shadow {
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.03);
    border-radius: var(--border_radius);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.simple-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================================== 
     # Header & Navigation
=================================================================== */
.header-bar {
    background: #182233 !important;
    color: #ffffff !important;
    padding: 10px 0;
    font-size: 14px;
    font-family: var(--font_dm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

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

.header-bar .left-info span {
    margin-right: 20px;
    color: #ffffff !important;
}

.header-bar .left-info span a {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition);
}

.header-bar .left-info span a:hover {
    color: #E3C773 !important;
}

.header-bar .left-info span i {
    color: #E3C773 !important;
    margin-right: 6px;
}

.header-bar .right-marquee,
.header-bar .right-marquee span {
    color: #ffffff !important;
}

.header-bar .right-marquee a {
    color: #ffffff !important;
    font-weight: 600;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
}

.header-bar .right-marquee a:hover {
    color: #E3C773 !important;
    border-color: #E3C773 !important;
}

.header-area {
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0px 2px 20px rgba(0,0,0,0.02);
}

.mobile-menu-btn-wrap, .mobile-drawer-info {
    display: none;
}

.header-area .custom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-area .logo img {
    height: 65px;
    max-height: 80px;
    width: auto;
}

.header-area .navbar-wrapper ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.header-area .navbar-wrapper ul li a {
    font-family: var(--font_dm);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark1);
    position: relative;
    padding: 10px 0;
}

.header-area .navbar-wrapper ul li a:hover,
.header-area .navbar-wrapper ul li.current-menu-item a {
    color: var(--primary_color);
}

.header-area .navbar-wrapper ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary_color);
    transition: var(--transition);
}

.header-area .navbar-wrapper ul li a:hover::after,
.header-area .navbar-wrapper ul li.current-menu-item a::after {
    width: 100%;
}

.header-area .menu-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--dark1);
    cursor: pointer;
}

/* ============================================================== 
     # Mobile Navigation Drawer
=================================================================== */
@media (max-width: 991px) {
    .header-area .navbar-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        padding: 80px 30px;
        transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s ease, opacity 0.35s ease;
        z-index: 2000;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
    }
    
    .header-area .navbar-wrapper.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .header-area .navbar-wrapper ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-bar {
        display: none !important;
    }

    .header-area .menu-btn-wrap .theme-btn {
        display: none;
    }

    .mobile-menu-btn-wrap {
        display: block;
    }

    .mobile-drawer-info {
        display: block;
        margin-top: 30px;
        text-align: left;
    }

    .drawer-info-divider {
        height: 1px;
        background: rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        width: 100%;
    }

    .drawer-info-item {
        margin-bottom: 12px;
        font-size: 14px;
        font-family: var(--font_dm);
    }

    .drawer-info-item a {
        color: var(--dark1);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        transition: var(--transition);
    }

    .drawer-info-item a:hover {
        color: var(--primary_color);
    }

    .drawer-info-item i {
        color: var(--primary_color);
        font-size: 18px;
    }

    .drawer-info-item.text-muted {
        color: #ffffff !important;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
    }

    .drawer-info-item.text-muted i {
        color: var(--primary_color);
        font-size: 18px;
    }

    .drawer-info-rep {
        margin-top: 20px;
        background: var(--light_white);
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 1.5;
        color: var(--dark2);
        border: 1px solid rgba(0,0,0,0.03);
    }

    .drawer-info-rep strong {
        color: var(--primary_color);
        font-weight: 700;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* تنسيق القائمة المنسدلة للمنتجات في شاشات الجوال والتابلت */
    .mobile-only-item {
        display: block !important;
    }

    .header-area .navbar-wrapper .has-dropdown {
        width: 100%;
    }
    
    .header-area .navbar-wrapper .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border-radius: 8px !important;
        padding: 10px !important;
        margin-top: 10px !important;
        display: none !important; /* إخفاء افتراضي على الموبايل */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .header-area .navbar-wrapper .has-dropdown.open .dropdown-menu {
        display: flex !important;
    }
    
    .header-area .navbar-wrapper .dropdown-menu li a {
        padding: 10px !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    .header-area .navbar-wrapper .dropdown-menu li a:hover {
        background: rgba(0, 0, 0, 0.04) !important;
    }

    .header-area .navbar-wrapper .has-dropdown > a i {
        transition: transform 0.3s ease;
    }

    /* تدوير السهم عند فتح القائمة المنسدلة */
    .header-area .navbar-wrapper .has-dropdown.open > a i {
        transform: rotate(180deg) !important;
    }
}

/* ============================================================== 
     # Hero Section (Empowerment)
=================================================================== */
.hero-empowerment-area {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.hero-empowerment-area .custom-container {
    width: 100%;
}

.hero-empowerment-area .custom-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-empowerment-left-content {
    flex: 1.1;
}

.hero-empowerment-left-content p {
    font-size: 18px;
    color: var(--dark2);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-empowerment-left-content .btns-group {
    display: flex;
    gap: 15px;
}

.hero-empowerment-right-content {
    flex: 0.9;
    position: relative;
}

.hero-empowerment-right-content .top-content {
    position: relative;
}

.hero-empowerment-right-content .top-content .desktop {
    width: 100%;
    border-radius: var(--border_radius);
    object-fit: cover;
}

.hero-badges-wrapper {
    position: absolute;
    bottom: -30px;
    left: -40px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.experience-box {
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-box img {
    width: 50px;
    height: 50px;
}

.experience-box h1 {
    font-size: 40px;
    line-height: 1;
    color: var(--primary_color);
}

.experience-box p {
    font-size: 14px;
    color: var(--dark2);
}

.experience-box p span {
    display: block;
    font-weight: 700;
    color: var(--dark1);
}

.bottom-content {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.our-expert-team-box, .google-reviews-box {
    flex: 1;
    background: var(--white);
    padding: 20px;
}

.our-expert-team-box-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.our-expert-team-box .imgs {
    display: flex;
}

.our-expert-team-box .imgs img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
}

.our-expert-team-box .imgs img:first-child {
    margin-left: 0;
}

.our-expert-team-box p {
    font-size: 14px;
    color: var(--dark2);
}

.our-expert-team-box p span {
    display: block;
    font-weight: 700;
    color: var(--dark1);
}

.google-reviews-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-reviews-box .left span {
    font-size: 12px;
    color: var(--dark2);
    display: block;
}

.google-reviews-box .left img {
    height: 25px;
    margin-top: 5px;
}

.google-reviews-box .right {
    text-align: right;
}

.google-reviews-box .right .stars {
    color: var(--yellow_color);
    font-size: 16px;
    margin-bottom: 5px;
}

.google-reviews-box .right p {
    font-size: 14px;
    color: var(--dark2);
}

.google-reviews-box .right p span {
    display: block;
    font-weight: 700;
    color: var(--dark1);
}

@media (max-width: 991px) {
    .hero-empowerment-area {
        min-height: auto;
        padding: 120px 0 60px 0;
    }
    
    .hero-empowerment-area .custom-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-empowerment-left-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-empowerment-left-content .btns-group {
        justify-content: center;
    }
    
    .hero-empowerment-right-content {
        width: 100%;
        max-width: 100%;
        padding-left: 0px !important;
    }
    
    .hero-products-slideshow {
        height: 340px;
    }
    
    .hero-badges-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
    }
    
    .hero-badges-wrapper .experience-box {
        flex: 1;
        max-width: 180px;
        padding: 15px;
        min-width: unset;
    }
    
    .experience-box {
        left: 0;
        bottom: 0;
    }
    
    .bottom-content {
        flex-direction: column;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .hero-empowerment-area {
        padding: 100px 0 50px 0;
    }
    
    .hero-empowerment-left-content h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .hero-empowerment-left-content p {
        font-size: 15px !important;
    }

    .hero-empowerment-left-content .btns-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .hero-empowerment-left-content .btns-group a {
        width: 100%;
        max-width: 290px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-products-slideshow {
        height: 230px;
    }
    
    .hero-badges-wrapper {
        gap: 10px;
    }
    
    .hero-badges-wrapper .experience-box {
        padding: 10px 15px;
    }
    
    .hero-badges-wrapper .experience-box h1 {
        font-size: 24px !important;
    }
    
    .hero-badges-wrapper .experience-box p {
        font-size: 10px !important;
    }
    
    .hero-badges-wrapper .experience-box img {
        max-width: 80px !important;
        height: 30px !important;
    }

    .about-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .projects-container-premium {
        border-radius: 12px !important;
        margin-top: 30px !important;
    }
    
    .project-row, .banner-row {
        padding: 25px 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .project-row > div, .banner-row > div {
        min-width: unset !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .project-row h3, .banner-row h3 {
        font-size: 20px !important;
    }
    
    .project-row p {
        font-size: 14px !important;
    }
    
    .banner-row a {
        width: 100% !important;
        justify-content: center !important;
    }

    /* تقليص الفراغات والتباعد الرأسي للأقسام على شاشات الجوال */
    .how-we-do-area, 
    .about-area, 
    .service-area, 
    .case-studio-area, 
    .contact-area {
        padding: 55px 0 !important;
    }

    .about-iso-section {
        min-width: unset !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .about-iso-grid {
        grid-template-columns: 1fr !important;
    }

    .about-tech-demand {
        min-width: unset !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .case-studio-tabs {
        gap: 8px !important;
        margin-bottom: 25px !important;
    }

    .case-studio-tabs .nav-item button {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
}

/* ============================================================== 
     # Partners Marquee (Clients logo scrolling)
=================================================================== */
.client-area {
    background: var(--light_white);
    padding: 60px 0;
    border-bottom: 1px solid var(--gray);
    overflow: hidden;
}

.clients-marquee-row {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.clients-marquee-rtl {
    animation: scrollMarqueeRTL 35s linear infinite;
}

.clients-marquee-ltr {
    animation: scrollMarqueeLTR 35s linear infinite;
}

.client-logo {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 200px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition);
}

.client-logo:hover img {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes scrollMarqueeRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeLTR {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ============================================================== 
     # How We Do (Our Process Section)
=================================================================== */
.how-we-do-area {
    padding: 120px 0;
    position: relative;
}

.how-we-do-area .custom-row {
    display: flex;
    gap: 50px;
}

.how-we-do-left-content {
    flex: 0.8;
}

.how-we-do-left-content .top {
    margin-bottom: 30px;
}

.how-we-do-left-content p {
    font-size: 18px;
    color: var(--dark2);
    margin-top: 15px;
}

.how-we-do-right-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-we-do-items {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.how-we-do-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.how-we-do-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary_color);
}

.how-we-do-icon {
    width: 70px;
    height: 70px;
    background: var(--primary_light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary_color);
}

.how-we-do-icon img {
    width: 35px;
    height: 35px;
}

.how-we-do-content h5 {
    font-size: 20px;
    margin-bottom: 8px;
}

.how-we-do-content p {
    font-size: 14px;
    color: var(--dark2);
}

@media (max-width: 991px) {
    .how-we-do-area .custom-row {
        flex-direction: column;
    }
    .how-we-do-items {
        flex-direction: column;
    }
}

/* ============================================================== 
     # Service Cards & Grid
=================================================================== */
.service-area {
    padding: 120px 0;
    background: var(--white);
}

.service-section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-section-header .left {
    max-width: 700px;
}

.service-section-header p {
    max-width: 500px;
    font-size: 17px;
    color: var(--dark2);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.service-card > div:first-child:not(.circle-icon) {
    width: 100% !important;
    display: block !important;
}

.service-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    object-fit: contain;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--dark2);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow_color);
    color: var(--dark1);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .service-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ============================================================== 
     # Products (Case Studies Tabs)
=================================================================== */
.case-studio-area {
    padding: 120px 0;
    background: var(--light_white);
}

.case-studio-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-studio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.case-studio-tabs .nav-item button {
    font-family: var(--font_dm);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border: 1px solid rgba(231, 203, 117, 0.25) !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    color: #CBD5E1 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    letter-spacing: 0.3px;
}

.case-studio-tabs .nav-item button.active,
.case-studio-tabs .nav-item button:hover {
    background: #2563EB !important;
    color: #ffffff !important;
    border-color: #60A5FA !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45) !important;
}

.case-studio-tab-content .tab-pane {
    display: none;
}

.case-studio-tab-content .tab-pane.active {
    display: block;
}

.case-studio-body {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.case-studio-body .left {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.case-studio-img-card {
    position: relative;
    border-radius: var(--border_radius);
    overflow: hidden;
    height: 380px;
}

.case-studio-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.case-studio-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary_color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.case-studio-body .right {
    flex: 0.8;
    display: flex;
}

.case-studio-contents {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    height: 100%;
}

.case-studio-contents img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.case-studio-contents h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.case-studio-contents p {
    font-size: 16px;
    color: var(--dark2);
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .case-studio-body {
        flex-direction: column;
    }
    .case-studio-body .left {
        grid-template-columns: 1fr;
    }
    .case-studio-img-card {
        height: 280px;
    }
}

/* ============================================================== 
     # About Page (Timeline & Checklists)
=================================================================== */
.about-area {
    padding: 120px 0;
    background: var(--white);
}

.about-area .custom-row {
    display: flex;
    gap: 60px;
}

.about-area .left-content {
    flex: 1;
}

.about-area .left-content p {
    font-size: 18px;
    color: var(--dark2);
    margin-bottom: 30px;
}

.about-area .left-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-area .left-content ul li {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-area .left-content ul li i {
    color: var(--white);
    background: var(--primary_color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.about-area .right-content {
    flex: 1;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--gray);
}

.about-timeline-item {
    position: relative;
}

.about-timeline-item .number {
    position: absolute;
    left: -37px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 2px solid var(--primary_color);
    color: var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.about-timeline-item-inner h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-timeline-item-inner p {
    color: var(--dark2);
}

@media (max-width: 991px) {
    .about-area .custom-row {
        flex-direction: column;
    }
}

/* ============================================================== 
     # Testimonials (Swiper Slider Styling)
=================================================================== */
.testimonial-area {
    padding: 120px 0;
    background: var(--primary_light);
}

.testimonial-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border_radius);
    position: relative;
}

.testimonial-item .platform-name {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--primary_color);
}

.testimonial-item h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 16px;
    color: var(--dark2);
    margin-bottom: 30px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-box-content h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.author-box-content p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--dark2);
}

/* Swiper navigation buttons */
.swiper-button-prev, .swiper-button-next {
    color: var(--primary_color);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--primary_color);
    color: var(--white);
}

/* ============================================================== 
     # Footer Section
=================================================================== */
footer {
    background: #060D1E;
    color: #fff;
    padding: 80px 0 30px 0;
}

footer .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

footer .footer-logo img {
    height: 95px !important;
    max-height: 120px !important;
    width: auto;
    margin-bottom: 20px;
}

footer .footer-about p {
    color: #FFF;
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 350px;
}

footer .social-links {
    display: flex;
    gap: 15px;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

footer .social-links a:hover {
    background: var(--primary_color);
}

footer .footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-family: var(--font_syne);
}

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

footer .footer-column ul li {
    margin-bottom: 15px;
}

footer .footer-column ul li a {
    color: #CBD5E1;
    font-size: 15px;
}

footer .footer-column ul li a:hover {
    color: var(--primary_color2);
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 991px) {
    footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    footer .footer-top {
        grid-template-columns: 1fr;
    }
    footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================================== 
     # Pages Styles (Contact / FAQ / Products Details)
=================================================================== */

/* Breadcrumb area */
.breadcrumb-area {
  padding: 100px 0;
  background: linear-gradient(rgba(9, 29, 41, 0), rgba(9, 29, 41, 0)), url('../imgs/breadcrumb_bg.jpg?v=2.2.0') no-repeat center center / cover;
  text-align: center;
  color: var(--white);
}

.breadcrumb-area h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--white);
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary_color2);
}

.breadcrumb-list li a:hover {
    color: var(--primary_color);
}

/* Contact page structures */
.contact-area {
    padding: 120px 0;
}

.contact-row {
    display: flex;
    gap: 60px;
}

.contact-info-wrap {
    flex: 0.8;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card .icon {
    font-size: 32px;
    color: var(--primary_color);
    background: var(--primary_light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

.contact-form-wrap {
    flex: 1.2;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark1);
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--gray);
    border-radius: var(--border_radius);
    font-family: var(--font_dm);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary_color);
}

/* Accordion for FAQ */
.faq-area {
    padding: 120px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-header {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-header i {
    transition: var(--transition);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--dark2);
    font-size: 15px;
}

.faq-item.active .faq-body {
    padding: 0 30px 24px 30px;
    max-height: 500px;
}

/* Product Details specifics */
.product-details-area {
    padding: 120px 0;
}

.product-details-row {
    display: flex;
    gap: 60px;
}

.product-details-img {
    flex: 1;
}

.product-details-img img {
    width: 100%;
    border-radius: var(--border_radius);
    box-shadow: 0px 10px 40px rgba(0,0,0,0.05);
}

.product-details-content {
    flex: 1;
}

.product-details-content .desc1 {
    font-size: 18px;
    color: var(--dark1);
    margin-bottom: 20px;
}

.product-details-content .desc2 {
    color: var(--dark2);
    margin-bottom: 35px;
}

.advantages-list-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.advantages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin-bottom: 35px;
}

.advantages-list li {
    width: calc(50% - 10px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--dark2);
}

.advantages-list li i {
    color: var(--primary_color);
    font-size: 18px;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .contact-row, .product-details-row {
        flex-direction: column;
    }
    .advantages-list li {
        width: 100%;
    }
}

/* Navigation Dropdown Menu styling */
.has-dropdown {
    position: relative;
}

@media (min-width: 992px) {
    .mobile-only-item {
        display: none !important;
    }
    .has-dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) scale(1) !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.97);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    width: 380px;
    padding: 15px !important;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100% !important;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
    border: none !important;
    width: 100%;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a .dp-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: #363636 !important;
    color: #E3C773 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.dropdown-menu li a .dp-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-menu li a .dp-item-title {
    font-family: var(--font_syne);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark1);
    transition: color 0.25s ease;
    display: block;
}

.dropdown-menu li a .dp-item-desc {
    font-size: 11px;
    color: var(--dark2);
    display: block;
}

/* Hover effects */
.dropdown-menu li a:hover {
    background: var(--primary_light) !important;
}

.dropdown-menu li a:hover .dp-item-icon {
    background: var(--primary_color);
    color: var(--white);
}

.dropdown-menu li a:hover .dp-item-title {
    color: var(--primary_color);
}

/* Quote Request Modal CSS */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 24, 63, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-card {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 70px rgba(6, 24, 63, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal-card {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light_white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    color: var(--dark1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-close:hover {
    background: #ff4d4d;
    color: var(--white);
}

.quote-modal-header {
    text-align: left;
    margin-bottom: 30px;
}

.quote-modal-header .modal-badge {
    background: var(--primary_light);
    color: var(--primary_color);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.quote-modal-header h3 {
    font-family: var(--font_syne);
    font-size: 26px;
    font-weight: 600;
    color: var(--dark1);
    margin: 0 0 8px 0;
}

.quote-modal-header p {
    font-size: 14px;
    color: var(--dark2);
    margin: 0;
    line-height: 1.5;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.modal-form-row {
    display: flex;
    gap: 20px;
}

.modal-form-row .modal-form-group {
    flex: 1;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark1);
    letter-spacing: 0.5px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: var(--font_dm);
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    border-color: var(--primary_color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.1);
}

.modal-form-group select {
    height: 48px;
    cursor: pointer;
}

@media (max-width: 575px) {
    .quote-modal-overlay {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 40px 15px !important;
    }

    .modal-form-row {
        flex-direction: column;
        gap: 20px;
    }

    .quote-modal-card {
        padding: 25px 15px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .quote-modal-header h3 {
        font-size: 20px !important;
    }

    .quote-modal-header p {
        font-size: 12px !important;
    }

    .modal-form-group label {
        font-size: 13px !important;
    }

    .modal-form-group input, 
    .modal-form-group select, 
    .modal-form-group textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
}

/* Custom Floating Toast Notification (Ultra-Premium Sharp Dark Theme) */
.custom-toast-notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(9, 14, 26, 0.99) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(227, 199, 115, 0.15);
    border-radius: 0px !important;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 110000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(227, 199, 115, 0.35);
    border-left: 4px solid #E3C773 !important;
    max-width: 580px;
    width: max-content;
}

.custom-toast-notification.error-toast {
    border-color: rgba(239, 68, 68, 0.4) !important;
    border-left: 4px solid #EF4444 !important;
}

.custom-toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.custom-toast-notification .toast-icon {
    width: 34px;
    height: 34px;
    background: rgba(227, 199, 115, 0.12);
    color: #E3C773;
    border: 1px solid rgba(227, 199, 115, 0.3);
    border-radius: 0px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.custom-toast-notification.error-toast .toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.custom-toast-notification .toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.custom-toast-notification .toast-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #E3C773;
}

.custom-toast-notification.error-toast .toast-badge {
    color: #EF4444;
}

.custom-toast-notification .toast-message {
    font-family: var(--font_dm);
    font-size: 13.5px;
    font-weight: 600;
    color: #F8FAFC;
    line-height: 1.45;
}

.custom-toast-notification .toast-close {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    transition: color 0.2s ease;
}

.custom-toast-notification .toast-close:hover {
    color: #E3C773;
}

/* Tech Grid Background */
.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.65) 0%, rgba(9, 14, 26, 0.75) 100%) !important;
    pointer-events: none;
    z-index: 1;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Wavy flowing wind currents in Hero */
.wind-currents-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.wind-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0, 71, 255, 0.28) 50%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    animation: flowWind 10s infinite ease-in-out;
    opacity: 0;
}

@keyframes flowWind {
    0% {
        left: -400px;
        transform: translateY(0) scaleX(0.5);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(30px) scaleX(1.3);
    }
    85% {
        opacity: 0.8;
    }
    100% {
        left: 100%;
        transform: translateY(-20px) scaleX(0.5);
        opacity: 0;
    }
}

.wind-line.line-1 {
    top: 15%;
    width: 350px;
    height: 4px;
    animation-duration: 9s;
    animation-delay: 0s;
}

.wind-line.line-2 {
    top: 30%;
    width: 250px;
    height: 3px;
    animation-duration: 7s;
    animation-delay: 2.5s;
}

.wind-line.line-3 {
    top: 45%;
    width: 400px;
    height: 5px;
    animation-duration: 11s;
    animation-delay: 1.2s;
}

.wind-line.line-4 {
    top: 60%;
    width: 300px;
    height: 4px;
    animation-duration: 8.5s;
    animation-delay: 4.8s;
}

.wind-line.line-5 {
    top: 75%;
    width: 280px;
    height: 3px;
    animation-duration: 6.5s;
    animation-delay: 3s;
}

.wind-line.line-6 {
    top: 25%;
    width: 380px;
    height: 4px;
    animation-duration: 10s;
    animation-delay: 5.5s;
}

.wind-line.line-7 {
    top: 85%;
    width: 320px;
    height: 4px;
    animation-duration: 12s;
    animation-delay: 1.8s;
}

/* Hero Products Slideshow CSS */
.hero-products-slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px; /* حواف ناعمة بمقدار 10px */
    overflow: hidden;
    border: none; /* بدون أي إطار خارجي */
    box-shadow: 0 20px 40px rgba(6, 24, 63, 0.08);
}

.product-slide {
    position: absolute;
    top: 8%;
    left: 8%;
    width: 84%;
    height: 84%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(0.95); /* تأثير التكبير الطفيف للأمام للظهور بشكل منبثق ناعم */
    z-index: 0;
}

.product-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Global Scroll Reveal Animation */
.reveal-section, .reveal-left, .reveal-right {
    opacity: 1;
    will-change: opacity, transform;
}

.reveal-section {
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
}

.reveal-left {
    transform: translateX(-60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.reveal-right {
    transform: translateX(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

/* Revealed States */
.reveal-section.global-revealed,
.reveal-left.global-revealed,
.reveal-right.global-revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Unique Breadcrumb Backgrounds */
.breadcrumb-area.bg-about {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/section-bg2-algiers.png?v=2.2.0') no-repeat center center / cover;
}
.breadcrumb-area.bg-products {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/breadcrumb_products.png?v=2.2.0') no-repeat center center / cover;
}
.breadcrumb-area.bg-services {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/cta_bg.jpg?v=2.2.0') no-repeat center center / cover;
}
.breadcrumb-area.bg-location {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/section-bg-algiers.png?v=2.2.0') no-repeat center center / cover;
}
.breadcrumb-area.bg-contact {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/cliref_banner_4.jpg?v=2.2.0') no-repeat center center / cover;
}
.breadcrumb-area.bg-faqs {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/breadcrumb_faqs.png?v=2.2.0') no-repeat center center / cover;
}
.breadcrumb-area.bg-testimonials {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/breadcrumb_bg.jpg?v=2.2.0') no-repeat center center / cover;
}

/* ============================================================== 
     # PDF Viewer Modal
=================================================================== */
#pdf-viewer-dialog {
    border: none;
    border-radius: var(--border_radius);
    padding: 0;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    overflow: hidden;
    display: none;
    animation: dialogFadeIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font_dm);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

#pdf-viewer-dialog[open] {
    display: flex;
}

#pdf-viewer-dialog::backdrop {
    background: rgba(28, 28, 28, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.pdf-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pdf-dialog-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pdf-dialog-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary_color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font_syne);
}

.pdf-dialog-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font_yantramanv);
}

.pdf-dialog-title i {
    color: #e74c3c;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.2));
}

.pdf-dialog-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pdf-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary_color);
    color: var(--white) !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(19, 81, 216, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: inherit;
}

.pdf-btn-download:hover {
    background: var(--primary_color2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 81, 216, 0.35);
}

.pdf-btn-download:active {
    transform: translateY(0);
}

.pdf-btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f1f5f9;
    color: #475569 !important;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
}

.pdf-btn-close:hover {
    background: #f87171;
    color: #ffffff !important;
    border-color: #f87171;
    transform: translateY(-2px) rotate(90deg);
}

.pdf-btn-close:active {
    transform: translateY(0);
}

.pdf-iframe-container {
    flex: 1;
    background: #525659;
    position: relative;
}

.pdf-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================== 
     # Custom Toast Notification
=================================================================== */
#custom-toast-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    align-items: center;
}

.custom-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    font-family: var(--font_dm);
    min-width: 320px;
    justify-content: flex-start;
}

.custom-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.custom-toast.hide {
    transform: translateY(-30px) scale(0.9);
    opacity: 0;
}

.custom-toast .toast-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success Toast */
.custom-toast.success {
    border-color: rgba(34, 197, 94, 0.2);
}
.custom-toast.success .toast-icon {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

/* Info Toast */
.custom-toast.info {
    border-color: rgba(59, 130, 246, 0.2);
}
.custom-toast.info .toast-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

/* Error Toast */
.custom-toast.error {
    border-color: rgba(239, 68, 68, 0.2);
}
.custom-toast.error .toast-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.custom-toast .toast-message {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark1);
}

/* Disable animation for open brochure button icon */
#open-brochure-btn:hover i {
    transform: none !important;
    transition: none !important;
}

@media (max-width: 576px) {
    .pdf-dialog-header {
        padding: 12px 16px;
    }
    .pdf-dialog-title {
        font-size: 16px;
    }
    .pdf-dialog-tag {
        font-size: 8px;
    }
    .pdf-btn-download {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
    }
    .pdf-btn-download span {
        display: none;
    }
    .pdf-btn-download i {
        font-size: 18px;
        margin: 0;
    }
}

/* Mobile Responsive Toast Notification Fix */
@media (max-width: 768px) {
    #custom-toast-container {
        top: 16px;
        width: max-content;
        max-width: calc(100vw - 24px);
    }

    .custom-toast, .custom-toast-notification {
        min-width: unset !important;
        max-width: calc(100vw - 24px) !important;
        padding: 12px 18px !important;
        gap: 12px !important;
        border-radius: 0px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7) !important;
    }

    .custom-toast .toast-icon, .custom-toast-notification .toast-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 15px !important;
        border-radius: 0px !important;
    }

    .custom-toast .toast-message, .custom-toast-notification .toast-message {
        font-size: 12.5px !important;
        font-weight: 600 !important;
        white-space: normal !important;
    }
}

/* ============================================================== 
     # Comprehensive Dark Gradient Mode Overrides
=================================================================== */
html, body {
    background: linear-gradient(145deg, #090E1A 0%, #0F172A 40%, #060913 100%) fixed !important;
    color: #CBD5E1 !important;
}

body {
    background: linear-gradient(145deg, #090E1A 0%, #0F172A 40%, #060913 100%) fixed !important;
}

/* Sections Backgrounds: Soft Dark Gradients & Transparency */
section, 
.hero-empowerment-area,
.how-we-do-area,
.about-area,
.service-area,
.case-studio-area,
.contact-area,
.faq-area {
    background: transparent !important;
}

/* Header Gradient */
.header-area {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(9, 14, 26, 0.95) 100%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Headings & Text */
h1, h2, h3, h4, h5, h6,
.section-title,
.service-card h4,
.service-card h3,
.hero-empowerment-left-content h1 {
    color: #F8FAFC !important;
}

p, .section-subtitle, .service-card p,
.about-content p, .contact-content p,
.hero-empowerment-left-content p {
    color: #CBD5E1 !important;
}

/* Navigation Links */
.header-area .navbar-wrapper ul li a {
    color: #F8FAFC !important;
}

.header-area .navbar-wrapper ul li a:hover,
.header-area .navbar-wrapper ul li.current-menu-item a {
    color: #60A5FA !important;
}

/* Mega Menu & Dropdowns Gradient */
.dropdown-menu {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
}

.dropdown-menu li a .dp-item-title {
    color: #F8FAFC !important;
}

.dropdown-menu li a .dp-item-desc {
    color: #94A3B8 !important;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 41, 59, 0.5) 100%) !important;
}

/* Cards & Containers Gradient */
.service-card, 
.testimonial-item, 
.faq-item, 
.case-studio-card,
.about-content-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Modals Gradient */
.quote-modal-card {
    background: linear-gradient(145deg, #111827 0%, #0F172A 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #F8FAFC !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7) !important;
}

.quote-modal-close {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #F8FAFC !important;
}

/* Inputs & Form Controls Gradient */
input, select, textarea, .form-control {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
    color: #F8FAFC !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

input::placeholder, textarea::placeholder {
    color: #64748B !important;
}

/* Theme Buttons Gradient Base & Hover */
.theme-btn {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
    color: #ffffff !important;
}

.theme-btn2 {
    background: #2563EB !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.theme-btn i, .theme-btn2 i {
    color: #ffffff !important;
}

.theme-btn:hover, .theme-btn2:hover,
.theme-btn:hover i, .theme-btn2:hover i {
    color: #060606 !important;
}

/* Image Wrappers Gradient */
div[style*="background: #f8fafc"],
div[style*="background:#f8fafc"] {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%) !important;
}

/* Footer Gradient Override */
footer {
    background: linear-gradient(180deg, #090E1A 0%, #03060C 100%) !important;
    color: #fff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    margin: 0 !important;
    padding-bottom: 40px !important;
    box-sizing: border-box !important;
}

footer .footer-about p {
    color: #FFF !important;
    font-size: 15px !important;
    margin-bottom: 25px !important;
    max-width: 350px !important;
}

footer .footer-column h4 {
    color: #FFFFFF !important;
}

footer .footer-column ul li a {
    color: #CBD5E1 !important;
}

footer .footer-column ul li a:hover {
    color: #60A5FA !important;
}

/* Icon Containers Circular #363636 & Gold Icon Fix */
.dp-item-icon {
    background: #363636 !important;
    color: #E3C773 !important;
    border-radius: 50% !important;
}

.dp-item-icon i {
    color: #E3C773 !important;
}

div[style*="background: rgba(255,255,255,0.1)"],
div[style*="background: rgba(255, 255, 255, 0.1)"],
div[style*="background:rgba(255,255,255,0.1)"] {
    background: #ffffff !important;
    color: #2563EB !important;
}

div[style*="background: rgba(255,255,255,0.1)"] i,
div[style*="background: rgba(255, 255, 255, 0.1)"] i,
div[style*="background:rgba(255,255,255,0.1)"] i {
    color: #2563EB !important;
}

.circle-icon {
    border-radius: 50% !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
}

/* ============================================================== 
     # Infinite Marquee Keyframes for Category Galleries
=================================================================== */
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding: 8px 0;
}

.marquee-track-left {
    display: inline-flex;
    gap: 20px;
    animation: marqueeLeft 32s linear infinite;
    width: max-content;
}

.marquee-track-right {
    display: inline-flex;
    gap: 20px;
    animation: marqueeRight 32s linear infinite;
    width: max-content;
}

.marquee-track-left:hover,
.marquee-track-right:hover {
    animation-play-state: paused;
}

.marquee-img-card {
    width: 275px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 7px;
    cursor: pointer !important;
    border: 2px solid rgba(231, 203, 117, 0.35) !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 0 15px rgba(231, 203, 117, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.marquee-img-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #E3C773 !important;
    box-shadow: 0 15px 35px rgba(231, 203, 117, 0.25), inset 0 0 20px rgba(231, 203, 117, 0.15) !important;
}

.marquee-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Custom High-End Image Lightbox Modal */
.gallery-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 11, 20, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    padding: 12px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 2px solid rgba(231, 203, 117, 0.4);
    box-shadow: 0 25px 70px rgba(0,0,0,0.85), 0 0 50px rgba(227, 199, 115, 0.25);
    border-radius: 12px;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-overlay.active .gallery-lightbox-content {
    transform: scale(1);
}

.gallery-lightbox-content img {
    max-width: 82vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    background: #363636;
    color: #E3C773;
    border: 2px solid #E3C773;
    border-radius: 50% !important;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 10;
}

.gallery-lightbox-close:hover {
    transform: scale(1.15) rotate(90deg);
    background: #E3C773;
    color: #0F172A;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(30, 41, 59, 0.85);
    color: #E3C773;
    border: 1px solid rgba(231, 203, 117, 0.4);
    border-radius: 50% !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    z-index: 10;
}

.gallery-lightbox-nav:hover {
    background: #E3C773;
    color: #0F172A;
    border-color: #E3C773;
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
    left: -24px;
}

.gallery-lightbox-next {
    right: -24px;
}

.gallery-lightbox-caption {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #E3C773;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Service Commercial Button Hover Fix */
.btn-service-commercial {
    transition: all 0.35s ease !important;
}

.btn-service-commercial:hover {
    background: #E3C773 !important;
    color: #0F172A !important;
    border-color: #E3C773 !important;
    box-shadow: 0 10px 25px rgba(231, 203, 117, 0.3) !important;
}

.btn-service-commercial:hover i {
    color: #0F172A !important;
}

/* Produit Page 2-Column Grid Layout */
.produit-grid-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
}

.produit-grid-container > * {
    min-width: 0 !important;
    overflow: hidden !important;
}

.produit-grid-container .theme-btn {
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 768px) {
    .produit-grid-container {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================== 
     # Universal Mobile Responsiveness & Zero-Overflow Layout Fixes
=================================================================== */
@media (max-width: 991px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    /* Container & Row Normalization */
    .custom-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .custom-row,
    .contact-row,
    .about-area .custom-row,
    .hero-empowerment-area .custom-row,
    .how-we-do-area .custom-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Reset inline min-widths that cause right-side overflow and left shifts */
    div[style*="min-width"],
    .left-content,
    .right-content,
    .contact-info-wrap,
    .contact-form-wrap,
    .about-tech-demand,
    .about-iso-section,
    .service-card,
    .case-studio-contents {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Normalize large card paddings on mobile */
    div[style*="padding: 45px"],
    div[style*="padding:45px"],
    div[style*="padding: 50px"],
    div[style*="padding:50px"],
    .contact-form-wrap,
    .testimonial-item {
        padding: 24px 18px !important;
    }

    /* Prevent footer radial glows and background shapes from causing canvas overflow */
    footer, .footer-shapes {
        overflow: hidden !important;
        max-width: 100% !important;
    }
}

@media (max-width: 575px) {
    .custom-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .contact-info-wrap,
    .contact-form-wrap {
        text-align: left !important;
        padding: 20px 16px !important;
    }

    .section-title {
        word-break: break-word;
    }
}

/* Responsive Font Scaling for Mobile Headings */
@media (max-width: 768px) {
    .breadcrumb-area h1,
    h1[style*="font-size: 38px"],
    h1[style*="font-size:38px"],
    .breadcrumb-area h1[style] {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .section-title,
    h2.section-title,
    h2[style*="font-size: 36px"],
    h2[style*="font-size:36px"],
    h2[style*="font-size: 34px"],
    h2[style*="font-size: 38px"],
    .section-title[style] {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 575px) {
    .breadcrumb-area h1,
    h1[style*="font-size: 38px"],
    h1[style*="font-size:38px"],
    .breadcrumb-area h1[style] {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .section-title,
    h2.section-title,
    h2[style*="font-size: 36px"],
    h2[style*="font-size:36px"],
    h2[style*="font-size: 34px"],
    h2[style*="font-size: 38px"],
    .section-title[style] {
        font-size: 21px !important;
        line-height: 1.35 !important;
    }
}

/* Mobile Styling & Formatting for FAQ Accordion Items (Sharp Corners) */
.faq-item {
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px 18px !important;
        border-radius: 0 !important;
    }

    .faq-header {
        font-size: 16px !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .faq-header > div:first-child {
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .faq-header .circle-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }

    .faq-header .circle-icon i {
        font-size: 16px !important;
    }

    .faq-header span {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    .faq-body {
        margin-top: 14px !important;
        padding-top: 14px !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
    }
}

@media (max-width: 575px) {
    .faq-item {
        padding: 16px 14px !important;
        border-radius: 0 !important;
    }

    .faq-header {
        font-size: 14.5px !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }

    .faq-header > div:first-child {
        gap: 10px !important;
        align-items: flex-start !important;
    }

    .faq-header .circle-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .faq-header .circle-icon i {
        font-size: 15px !important;
    }

    .faq-header span {
        font-size: 14px !important;
        line-height: 1.45 !important;
        font-weight: 700 !important;
    }

    .faq-body {
        margin-top: 12px !important;
        padding-top: 12px !important;
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }
}

/* Responsive Formatting for Mobile Background Shape bg-shape-4.svg */
@media (max-width: 991px) {
    .footer-shapes img[src*="bg-shape-4.svg"],
    footer img[src*="bg-shape-4.svg"] {
        opacity: 0.55 !important;
        object-fit: contain !important;
        object-position: bottom right !important;
        max-height: 100% !important;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none !important;
    }
}

@media (max-width: 575px) {
    .footer-shapes img[src*="bg-shape-4.svg"],
    footer img[src*="bg-shape-4.svg"] {
        opacity: 0.35 !important;
        object-fit: contain !important;
        object-position: bottom center !important;
        max-height: 85% !important;
        width: 100% !important;
        height: auto !important;
    }
}





