﻿@font-face {
    font-family: 'font-bold';
    src: url('../fonts/droid/droidkufi-bold.eot');
    src: url('../fonts/droid/droidkufi-bold.eot?#iefix') format('embedded-opentype'),url('../fonts/droid/droidkufi-bold.woff') format('woff'),url('../fonts/droid/droidkufi-bold.ttf') format('truetype')
}

@font-face {
    font-family: 'font-regular';
    src: url('../fonts/droid/droidkufi-regular.eot');
    src: url('../fonts/droid/droidkufi-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/droid/droidkufi-regular.woff') format('woff'),url('../fonts/droid/droidkufi-regular.ttf') format('truetype')
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('../fonts/droid/droidkufi-regular.eot');
    src: url('../fonts/droid/droidkufi-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/droid/droidkufi-regular.woff') format('woff'),url('../fonts/droid/droidkufi-regular.ttf') format('truetype')
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'font-regular', sans-serif !important;
}

body {
    background-color: #f9f9f9;
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {    
    font-weight: 600;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.bg-light-success {
    background: rgba(40, 199, 111, 0.12) !important;
    color: #28C76F !important;
}

.bg-light-danger {
    background: rgba(255, 0, 0, 0.12) !important;
    color: #FF0000 !important;
}

.bg-light-warning {
    background: rgba(255, 193, 7, 0.12) !important;
    color: #FFC107 !important;
}

.bg-primary {
    background: var(--primary-red) !important;
}

.bg-light-primary {
    background: rgba(0, 123, 255, 0.12) !important;
    color: #007BFF !important;
}

.bg-light-secondary {
    background: rgba(108, 117, 125, 0.12) !important;
    color: #6C757D !important;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 70px;
    height: 70px;
    border: 7px solid var(--border-soft);
    border-top: 7px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 6;
    opacity: .9;
    display: flex; /* ADD THIS */
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    opacity: 0;
    visibility: hidden;
}

    .loader_box.show {
        opacity: 0.9;
        visibility: visible;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--light-red);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Top Navigation - Show on mobile too */
.top-nav {
    background-color: var(--accent-color-1);
    border-bottom: 1px solid #333;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #fff;
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left {
    display: flex;
    align-items: center;
}

.top-nav .nav-link {
    color: var(--text-medium);
    padding: 5px 15px;
    transition: color 0.3s;
}

    .top-nav .nav-link:hover {
        color: var(--primary-red);
    }

/* Main Navigation */
.main-nav {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-brand span {
    color: var(--primary-red);
}

.nav-menu .nav-link {
    color: var(--text-medium);
    margin: 0 5px;
    padding: 8px 15px;
    /*border-radius: 4px;*/
    /*transition: all 0.3s;*/
    font-weight: 500;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    border-bottom: 0 none !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red) !important;
    border-bottom: 3px solid var(--primary-red) !important;
}

/* User Info Dropdown */
.user-dropdown .dropdown-toggle {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    padding: 8px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.user-dropdown .dropdown-toggle::after {
    margin-left: 10px;
}

.user-dropdown .dropdown-menu {
    background-color: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.user-dropdown .dropdown-item {
    color: var(--text-medium);
    padding: 8px 15px;
}

    .user-dropdown .dropdown-item:hover {
        background-color: var(--light-red-bg);
        color: var(--primary-red);
    }

/* Hero Section */
.hero-section {
    /*background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(255, 235, 238, 0.1) 100%);*/
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #f6f7fb
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-color: #e5e9f7;
    opacity: .4;
    border-radius: 100px 0 0 100px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 35%;
        height: 100%;
        background-color: #e5e9f7;
        opacity: .4;
        border-radius: 100px 0 0 100px;
    }

    .hero-section h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--text-dark);
    }

    .hero-section p {
        font-size: 1.1rem;
        color: var(--text-medium);
        margin-bottom: 30px;
        max-width: 600px;
    }

.hero-section {
    /*position: relative;*/
    /* padding: 3rem;*/
    z-index: 1;
}
    
    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        width: 15%;
        height: 100%;
        background-image: radial-gradient(rgb(26 6 6 / 25%) 2px, #58050500 2px);
        background-size: 22px 22px;
        opacity: 0.6;
        pointer-events: none;
        z-index: 10;
    }   

    .hero-section::after {
        right: 0;
        -webkit-mask-image: linear-gradient( to left, transparent 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 1) 100% );
    }

    .hero-section > * {
        position: relative;
        z-index: 2;
    }

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: var(--dark-red) !important;
        border-color: var(--dark-red) !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px color-mix( in srgb, var(--primary) 30%, transparent );
    }

.btn-outline-red {
    background-color: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    background-color: color-mix( in srgb, var(--primary) 10%, transparent );
    border: 1px solid color-mix( in srgb, var(--primary) 25%, transparent );
    border-radius: 30px;
    color: var(--dark-red);
}

    .btn-outline-red:hover {
        background-color: var(--primary-red);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px color-mix( in srgb, var(--primary) 30%, transparent );
    }

.btn-black {
    background-color: #212121;
    border-color: #212121;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

    .btn-black:hover {
        background-color: #000;
        border-color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        color: white;
    }

.btn-lg {
    border-radius: 30px !important;
    padding: 12px 30px;
}

a.btn {
    text-decoration: none !important
}

.client-logos-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

    .client-logos-card h3 {
        margin-bottom: 20px;
        color: var(--primary-red);
    }

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.client-logo {
    width: 100px;
    height: 60px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-gray);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

    .client-logo:hover {
        border-color: var(--primary-red);
        color: var(--primary-red);
        transform: translateY(-5px);
        box-shadow: 0 5px 15px var(--shadow-medium);
    }

/* Carousel */
.featured-carousel {
    margin: 60px 0;
}

.carousel-item {
    background-color: white;
    /*border-radius: 10px;*/
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.95);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--text-dark);
}

/* Product Grid */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

    .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .section-title p {
        color: var(--dark-gray);
    }

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px var(--shadow-light);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px var(--shadow-medium);
        border-color: var(--light-red);
    }

.product-img {
    height: 200px;
    background: linear-gradient(135deg, var(--light-red-bg) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 4rem;
}

.product-body {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

/* Applicant Journey - UPDATED with step numbers and dashed lines */
.journey-widget {
    background-color: var(--light-gray);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-icon-container {
    position: relative;
    margin-bottom: 15px;
    z-index: 2;
}

.journey-widget .step-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-red);
    border: 3px solid var(--primary-red);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.journey-widget .step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid white;
}

.journey-widget .step-content {
    text-align: center;
    z-index: 2;
}

.journey-widget .step-line {
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 3px;
    z-index: 1;
    background: none;
    border-top: 3px dashed var(--border-color);
}

.journey-widget .step-line::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    border-top: 3px dashed var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.journey-step.active .step-line::after {
    transform: scaleX(1);
}

.journey-step.active .step-icon {
    background-color: var(--primary-red);
    color: white;
}

.journey-step.active .step-number {
    background-color: white;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: white;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.video-thumbnail {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--light-red-bg) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: var(--dark-red);
}

/* Full Page YouTube Video Section - NEW DESIGN */
.full-video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .full-video-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23ffebee" fill-opacity="0.3" d="M30,0 L100,0 L100,100 L0,100 L0,30 C15,15 30,0 30,0 Z"/></svg>');
        background-size: cover;
        opacity: 0.5;
    }

.full-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.youtube-video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
}

    .youtube-video-placeholder i {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .youtube-video-placeholder h3 {
        color: white;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .youtube-video-placeholder p {
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin-bottom: 30px;
    }

.youtube-link-btn {
    background-color: white;
    color: #d32f2f;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .youtube-link-btn:hover {
        background-color: #f5f5f5;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        color: #b71c1c;
    }

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

    .accordion-button:not(.collapsed) {
        background-color: var(--light-red-bg);
        color: var(--primary-red);
        border-color: var(--light-red);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem var(--state-focus-ring);
    }


.accordion-body {
    background-color: white;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    border-top: none;
}

/* Contact Widget - UPDATED with white background and red/black buttons */
.contact-widget {
    background-color: white;
    color: var(--text-dark);
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: -12%;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px var(--shadow-medium);
    border: 1px solid var(--border-color);
}

    .contact-widget h2 {
        color: var(--text-dark);
    }

    .contact-widget p {
        color: var(--text-medium);
    }

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: end;
}

/************** Card Info ************************/

.welcome-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

    .welcome-container .card-header {
        background: transparent;
        border: none;
        padding: 2rem 2rem 1rem;
        text-align: center;
    }

.welcome-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(195, 35, 51, 0.15);
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.welcome-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    z-index: -1;
}

.card-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

.card-icon i {
    font-size: 3.5rem;
}

h2.welcome-title {
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 0;
    font-size: 2.2rem;
}

.user-name {
    /* color: #ffd700; */
    font-weight: 700;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.card-header-custom {
    background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
    color: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    background-color: var(--primary-red);
    color: white;
    font-weight: 600;
}

.welcome-container .card-header-custom {
    background: transparent;
    border: none;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.card-header-custom .welcome-title{
    color: white !important
}
/********** Card Info End */
/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 30px 0 30px;
    /*padding-top: 180px;  */
    margin-top: 50px
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #fff;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
}

    .social-icon:hover {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border-color: transparent;
    }

.footer .row:first-child {
    align-items: flex-start;
}

.assets-style {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.copyright {
    /*border-top: 1px solid rgba(255, 255, 255, 0.2);*/
   /* padding-top: 20px;
    margin-top: 30px;*/
    color: #ddd;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .copyright p {
        margin-bottom: 0;
    }

.footer-payment-logos img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    margin-inline: 4px;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

    .footer-contact i {
        color: var(--secondary);
        margin-right: 10px;
        margin-top: 3px;
        font-size: 1.1rem;
    }

    .footer-contact p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .scroll-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background-color: var(--dark-red);
        transform: translateY(-5px);
    }

/* Animation for scroll effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Mobile Top Nav Toggle */
.mobile-top-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 1.2rem;
    padding: 5px;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-widget {
        margin-top: -10%;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .step-line {
        display: none;
    }

    .journey-step {
        margin-bottom: 40px;
    }

    .contact-widget {
        margin-top: -8%;
    }

    .footer {
        /*padding-top: 150px;
        margin-top: -80px;*/
    }

    .youtube-video-placeholder {
        height: 400px;
        padding: 30px;
    }

        .youtube-video-placeholder i {
            font-size: 4rem;
        }

        .youtube-video-placeholder h3 {
            font-size: 1.8rem;
        }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .auth-form {
        padding: 30px 20px;
    }

    /* Show top nav toggle on mobile */
    .mobile-top-nav-toggle {
        display: block;
    }

    /* Initially hide top nav on mobile */
    .top-nav.show {
        display: block;
    }

    .top-nav-content {
        flex-direction: column;
        gap: 10px;
    }

    .top-nav .nav-link {
        display: block;
        padding: 8px 0;
    }

    /* Adjust user dropdown for mobile */
    .user-dropdown .dropdown-toggle {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    /* Adjust hero padding for mobile */
    .hero-section {
        padding: 60px 0;
    }

    /* Adjust video thumbnail height */
    .video-thumbnail {
        height: 250px;
    }

    /* Adjust OTP inputs for mobile */
    .otp-input {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-widget {
        margin-top: -5%;
        padding: 40px 20px;
    }

    .footer {
        /*padding-top: 120px;
        margin-top: -60px;*/
    }

    .full-video-section {
        padding: 60px 0;
    }

    .youtube-video-placeholder {
        height: 300px;
        padding: 20px;
    }

        .youtube-video-placeholder i {
            font-size: 3rem;
        }

        .youtube-video-placeholder h3 {
            font-size: 1.5rem;
        }

    .contact-buttons {
        flex-direction: column;
    }

        .contact-buttons .btn {
            width: 100%;
            justify-content: end;
        }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .client-logos {
        gap: 10px;
    }

    .client-logo {
        width: 80px;
        height: 50px;
        font-size: 0.8rem;
    }

    .btn-primary, .btn-outline-red, .btn-black, .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .product-img {
        height: 150px;
        font-size: 3rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
        top: -5px;
        right: -5px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-widget {
        margin-top: -3%;
    }

    .full-video-section {
        padding: 40px 0;
    }

    .youtube-video-placeholder {
        height: 250px;
    }
}

/* Custom navbar-toggler icon */
.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon-custom {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    color: var(--primary-red);
}

/* Breadcrumb */
.breadcrumb-container {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb-container {
    margin-bottom: 2rem;
}

.breadcrumb-nav {
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--neutral-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
    background: var(--light-red-bg);
}

.breadcrumb-item.active {
    /*color: var(--primary-red);
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: var(--light-red-bg);
    border-radius: 0.375rem;*/
}

.breadcrumb-divider {
    color: var(--neutral-400);
    font-size: 0.75rem;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
}

.breadcrumb-item.active .breadcrumb-icon {
    color: var(--primary-600);
}

/* ==========================================================================

/* Page Header */
.page-header {
    background-color: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem
}

.page-header h1{
    color: var(--primary-red);
}

/************** Arabic Support **************/
.body-ar .validation-error {
    text-align: right;
    /*float: right;*/
}

.body-ar .sidebar-section h3 i {
    margin-left: 10px;
    margin-right: 0;
}

body.body-ar {
    text-align: right;
}

.body-ar .dropdown-menu {
    text-align: right !important;
}

.body-ar .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: .5rem;
    padding-right: .5rem;
    content: "\\";
}

body-ar .form-section-title i {
    margin-left: 12px !important;
}

.body-ar .bs-stepper-label {
    margin-right: 1rem !important;
}

.body-ar .btn-close {
    margin-left: auto;
    margin-right: 0;
}

[dir="rtl"] .modal-header .btn-close {
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) auto calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x));
}

[dir="rtl"] .modal-body {
    text-align: right;
}

[dir="rtl"] .text-end {
    text-align: left !important;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.body-ar .tblAttachments th {
    text-align: right;
}

.body-ar .d-flex.justify-content-between.align-items-center.mb-4 {
    justify-content: flex-end !important; /* Align steps to right */
}

/* Stepper container flex direction RTL */
.body-ar .step-indicator {
    text-align: right; /* Align text right */
    direction: rtl; /* Ensure RTL layout */
    position: relative;
    flex: 1;
    padding: 10px 15px;
    font-weight: 500;
    color: #6c757d; /* Default grey */
    border-bottom: 3px solid #dee2e6; /* Light grey line */
    transition: all 0.3s ease;
}

    .body-ar .step-indicator.active span {
        border-color: #dc3545 !important;
        background-color: #fff5f5 !important;
    }

    .body-ar .step-indicator.active {
        color: #dc3545 !important;
        border-bottom-color: #dc3545 !important;
    }

.body-ar .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

.body-ar .profile-img {
    margin-left: 1.5rem;
}

.body-ar .input-group .form-control {
    text-align: right;
    border-radius: 0 0.375rem 0.375rem 0;
}

.body-ar .sidebar-section h3 i {
    margin-left: 10px;
    margin-right: 0;
}

.body-ar .accordion-button::after {
    margin-left: inherit;
    margin-right: auto !important;
}

.body-ar .text-start {
    text-align: right !important;
}

.body-ar .step-line {
    left: inherit;
    right: 50%;
}

.body-ar .scroll-to-top {
    right: inherit;
    left: 30px;
}

.body-ar .detail-icon {
    margin-right: inherit;
    margin-left: 15px;
}

p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.3rem;
    margin-top: 1rem
}

.headline-slide-container {
    height: 2.5rem;
    overflow: hidden;
    position: relative;
}

.headline-slide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: slideText 12s infinite;
}

.headline-slide-list li {
    height: 2.5rem;
    display: flex;
    align-items: center;
    font-size: 1.55rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--primary-red);
}

/* Animation */
@keyframes slideText {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2.5rem);
    }

    45% {
        transform: translateY(-2.5rem);
    }

    50% {
        transform: translateY(-5rem);
    }

    70% {
        transform: translateY(-5rem);
    }

    75% {
        transform: translateY(-7.5rem);
    }

    95% {
        transform: translateY(-7.5rem);
    }

    100% {
        transform: translateY(0);
    }
}


.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px; 
    margin: 0 8px 8px 0;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .social-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-radius: inherit;
        z-index: 1;
    }

    .social-icon i {
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .social-icon::after {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .social-icon:hover::after {
        opacity: 1;
    }

    .social-icon:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.25);
    }

        .social-icon:hover i {
            transform: scale(1.1);
        }

        .social-icon:hover::before {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
        }

    .social-icon[href*="facebook"]:hover {
        background: rgba(24, 119, 242, 0.2);
        box-shadow: 0 8px 25px rgba(24, 119, 242, 0.25), 0 0 0 2px rgba(24, 119, 242, 0.2);
    }

    .social-icon[href*="twitter"]:hover,
    .social-icon[href*="x.com"]:hover {
        background: rgba(29, 161, 242, 0.2);
        box-shadow: 0 8px 25px rgba(29, 161, 242, 0.25), 0 0 0 2px rgba(29, 161, 242, 0.2);
    }

    .social-icon[href*="instagram"]:hover {
        background: rgba(225, 48, 108, 0.2);
        box-shadow: 0 8px 25px rgba(225, 48, 108, 0.25), 0 0 0 2px rgba(225, 48, 108, 0.2);
    }

    .social-icon[href*="linkedin"]:hover {
        background: rgba(10, 102, 194, 0.2);
        box-shadow: 0 8px 25px rgba(10, 102, 194, 0.25), 0 0 0 2px rgba(10, 102, 194, 0.2);
    }

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.social-icon:hover {
    animation: subtlePulse 1.5s ease-in-out infinite;
}

.social-icons-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
        margin: 0 6px 6px 0;
    }

        .social-icon:hover {
            transform: translateY(-2px);
        }
}

.social-icon {
    position: relative;
}

    .social-icon::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10;
        pointer-events: none;
    }

    .social-icon:hover::before {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-8px);
    }

    .social-icon::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: white;
        transition: width 0.3s ease;
        border-radius: 1px;
    }

    .social-icon:hover::after {
        width: 20px;
    }

@keyframes gentleGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

.social-icon {
    animation: gentleGlow 3s ease-in-out infinite;
}

    .social-icon:nth-child(2) {
        animation-delay: 0.5s;
    }

    .social-icon:nth-child(3) {
        animation-delay: 1s;
    }

    .social-icon:nth-child(4) {
        animation-delay: 1.5s;
    }

    .social-icon:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 8px 25px rgba(0, 0, 0, 0.25);
    }



/* Footer Styles */
.footer {
    background: var(--accent-color-2);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 4px solid var(--primary-red);
}

.footer-main {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 30px;
}

/* Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
}

.footer-description p {
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Titles */
.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

.footer-subtitle {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-menu li {
        margin-bottom: 12px;
    }

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-link::before {
    content: '›';
    margin-left: 0;
    margin-right: 8px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.footer-link:hover::before {
    transform: translateX(3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-link:hover {
        background: var(--primary-red);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    }

/* Contact Info */
.footer-contact {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: white;
    font-size: 0.9rem;
}

.contact-icon {
    margin-right: 12px;
    color: var(--primary-red);
    width: 16px;
    text-align: center;
}

/* Copyright */
.copyright p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.payment-label {
    color: white;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 50px;
    height: 30px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

    .payment-icon:hover {
        transform: translateY(-2px);
    }

/* RTL Support */
[dir="rtl"] .footer-link::before {
    content: '‹';
    margin-right: 0;
    margin-left: 8px;
    direction: ltr;    
}

[dir="rtl"] .footer-link:hover::before {
    transform: translateX(-3px);
}

[dir="rtl"] .footer-link:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 12px;
}

[dir="rtl"] .payment-methods {
    justify-content: flex-end;
}

[dir="rtl"] .footer-brand {
    padding-right: 0;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 50px;
    }

    .footer-main {
        padding-bottom: 30px;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-title {
        font-size: 1rem;
        margin-top: 25px;
    }

    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 20px;
    }

    .footer-bottom .row > div {
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }

    [dir="rtl"] .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

.body-ar .user-dropdown .dropdown-toggle::after {
    margin-right: 10px;
}


/* ================================
   Bootstrap Danger → Theme Primary
================================ */

/* bg-danger */
.bg-danger {
    background-color: var(--primary-red) !important;
}

/* badge bg-danger */
.badge.bg-danger {
    background-color: var(--primary-red) !important;
}

/* btn-outline-danger */
.btn-outline-danger {
    --bs-btn-color: var(--primary-red);
    --bs-btn-border-color: var(--primary-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-red);
    --bs-btn-hover-border-color: var(--primary-red);
    --bs-btn-active-bg: var(--dark-red);
    --bs-btn-active-border-color: var(--dark-red);
}
.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
    --bs-btn-focus-shadow-rgb: 0,0,0;
}

.btn-outline-red {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
    --bs-btn-disabled-color: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
}


.verification-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF9E6D 0%, #E87A4D 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(255, 158, 109, 0.3);
    z-index: 1;
}
.video-frame {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
}
html[dir="rtl"] .verification-badge {
    left: 15px;
    right: auto;
}

html[dir="ltr"] .verification-badge {
    right: 15px;
    left: auto;
}

.small, small {
    font-size: .895em !important;
    font-weight: 500;
}