:root {
    --navy: #1a1a5e;
    --purple: #802b7d;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
}
html, body {
    width: 100%;
    margin: 0; padding: 0;
    overflow-x: hidden; 
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
html {
    scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: inherit; }
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    z-index: 1000;
    padding: 10px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

.brand { display: flex; align-items: center; gap: 10px; }
.logo { height: 40px; }
.brand-name { font-weight: 900; color: var(--navy); font-size: 1.2rem; }

.nav-links { display: flex; list-style: none; gap: 15px; }
.nav-links a {
    text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.9rem;
    padding: 8px 15px; border-radius: 20px; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active { background: var(--purple); color: white; }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.lang-switch { 
    background: var(--navy); color: white; border: none; padding: 5px 15px; 
    border-radius: 20px; cursor: pointer; font-weight: bold;
}

.menu-icon { font-size: 1.5rem; color: var(--navy); cursor: pointer; display: none; }
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}
.mobile-menu a { text-decoration: none; color: var(--navy); font-weight: 700; text-align: center; }
.side-contacts {
    position: fixed; right: 0; top: 40%; z-index: 999;
    display: flex; flex-direction: column;
}
.s-link {
    background: var(--purple); color: white; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero {
    min-height: 100vh;
    background: url('images/bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 120px 5% 50px;
    display: flex; align-items: center; justify-content: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,94,0.5), rgba(128,43,125,0.5)); }

.hero-container {
    position: relative; z-index: 10;
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; width: 100%; max-width: 1200px;
}

.hero-text h1 { color: white; font-size: 3rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.slogan { color: #3b82f6; font-size: 1.5rem; font-weight: bold; }
.glass-form-v4 {
    background: rgba(26, 26, 94, 0.2); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px; 
    margin: 0 auto;
}

.glass-form-v4 h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.input-box {
    margin-bottom: 18px;
    text-align: start;
}

.input-box label {
    display: block;
    color: white; 
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}
[dir="rtl"] .input-box {
    text-align: right;
}
[dir="ltr"] .input-box {
    text-align: left;
}

.input-box input, 
.input-box textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    outline: none;
    font-size: 1rem;
}
.wa-submit-btn {
    width: 100%;
    padding: 18px;
    background: #802b7d; 
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-submit-btn:hover {
    background: #1a1a5e; 
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 26, 94, 0.4);
}
@media (max-width: 992px) {
    .nav-links { 
        display: none; 
    }
    .menu-icon { 
        display: block; 
    }
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px; 
    }
    .hero-text h1 { 
        font-size: 2.2rem; 
    }
    .floating-nav { 
        width: 95%; 
    }
}

@media (max-width: 768px) {
    .glass-form-v4 {
        padding: 25px;
        max-width: 95%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .side-contacts {
        top: auto;
        bottom: 20px;
        flex-direction: row;
        right: 20px;
    }
    .s-link {
        border-radius: 50%;
        margin: 5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
}
.about-v5 {
    padding: 120px 50px;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.floating-shape {
    position: absolute; border-radius: 50%; z-index: -1;
    filter: blur(40px); opacity: 0.3;
}
.shape-1 { width: 300px; height: 300px; background: var(--navy); top: -50px; left: -50px; }
.shape-2 { width: 250px; height: 250px; background: var(--purple); bottom: -50px; right: -50px; }

.exp-card-float {
    position: absolute; bottom: 40px; right: -30px;
    background: linear-gradient(135deg, var(--navy), var(--purple));
    color: white; padding: 25px; border-radius: 25px;
    box-shadow: 0 15px 35px rgba(128, 43, 125, 0.3);
    text-align: center; animation: float 3s ease-in-out infinite;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.section-tag { display: flex; align-items: center; gap: 10px; color: var(--purple); font-weight: 800; margin-bottom: 20px; }
.section-tag .line { width: 40px; height: 3px; background: var(--purple); display: inline-block; }
.about-title { font-size: 2.8rem; font-weight: 900; line-height: 1.2; margin-bottom: 25px; }
.navy-txt { color: var(--navy); }
.purple-txt { color: var(--purple); }
.about-p { font-size: 1.15rem; color: #555; line-height: 1.8; margin-bottom: 40px; }
.power-points { display: grid; gap: 20px; margin-bottom: 40px; }
.point { display: flex; align-items: center; gap: 20px; }
.icon-box {
    width: 60px; height: 60px; background: rgba(128, 43, 125, 0.1);
    color: var(--purple); border-radius: 15px; display: flex; 
    align-items: center; justify-content: center; font-size: 1.5rem;
}
.point-txt h4 { color: var(--navy); font-weight: 800; }

.about-footer { display: flex; align-items: center; gap: 50px; border-top: 1px solid #eee; padding-top: 30px; }
.client-stat { display: flex; align-items: baseline; gap: 5px; }
.client-stat .count { font-size: 2.5rem; font-weight: 900; color: var(--navy); }
.client-stat .plus { font-size: 1.5rem; color: var(--purple); font-weight: bold; }

.learn-more-btn {
    padding: 15px 35px; background: transparent; border: 2px solid var(--navy);
    color: var(--navy); border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.learn-more-btn:hover { background: var(--navy); color: white; }
@media (max-width: 992px) {
    .about-flex { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-title { font-size: 2rem; }
    .section-tag { justify-content: center; }
    .point { flex-direction: column; }
    .about-footer { flex-direction: column; gap: 30px; }
    .exp-card-float { position: static; margin-top: 20px; transform: none; animation: none; }
}
.visual-side { 
    position: relative; 
    z-index: 1; 
}
.main-img-wrapper { 
    position: relative; 
    z-index: 2; 
}

.about-main-img {
    width: 100%; 
    border-radius: 40px; 
    box-shadow: 0 30px 60px rgba(26, 26, 94, 0.15);
    border: 1px solid rgba(128, 43, 125, 0.2);
    display: block; 
}
.exp-card-float {
    position: absolute; 
    bottom: -30px; 
    right: -30px;  
    background: linear-gradient(135deg, var(--navy), var(--purple)); 
    color: white; 
    padding: 25px 35px; 
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(128, 43, 125, 0.4);
    text-align: center;
    z-index: 100; 
    animation: float 3s ease-in-out infinite;
}
@media (max-width: 992px) {
    .exp-card-float {
        position: absolute;
        bottom: 20px;
        right: 20px; 
        padding: 15px 25px;
        z-index: 100;
        animation: none; 
    }
}
.services-v7 {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a5e 0%, #4a148c 50%, #802b7d 100%);
    min-height: 100vh;
    width: 100%;
    display: block !important;
}

.container-v7 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; 
}
.services-intro {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}
.services-intro h2 { font-size: 3rem; font-weight: 900; }
.services-grid-v7 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    width: 100%;
}

.service-item-v7 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 30px;
    color: white;
    text-align: right; 
    transition: 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-item-v7:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: #3b82f6;
}

.icon-box-v7 {
    width: 60px; height: 60px;
    background: #802b7d;
    color: white;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-item-v7 h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 15px; color: #fff; }
.service-item-v7 p { 
    font-size: 1.05rem; 
    line-height: 1.8; 
    color: #ffffff !important; 
    margin-bottom: 25px;
    display: block !important; 
}

.card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}
@media (max-width: 900px) {
    .services-grid-v7 { grid-template-columns: 1fr; }
    .services-intro h2 { font-size: 2.2rem; }
}
.consultancy-heavy-v9 {
    padding: 120px 0;
    background: #fdfdfd;
    width: 100% !important;
    display: block !important;
    opacity: 1 !important;
    position: relative;
    z-index: 5;
}

.heading-v9 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.heading-v9 h2 {
    color: var(--navy);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.heading-v9 p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.consult-grid-v9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.c-box-v9 {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.c-box-v9:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 40px rgba(26, 26, 94, 0.08);
}

.c-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--purple);
    opacity: 0.2;
    margin-bottom: 15px;
}

.c-box-v9 h4 {
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-right: 4px solid var(--purple);
    padding-right: 15px;
}

.c-box-v9 p {
    color: #555 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    display: block !important;
}

.highlight-v9 {
    background: linear-gradient(to bottom, #fff, #fdf8ff);
    border-top: 5px solid var(--purple);
}
@media (max-width: 1100px) {
    .consult-grid-v9 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .consult-grid-v9 { grid-template-columns: 1fr; }
    .heading-v9 h2 { font-size: 2rem; }
    .c-box-v9 { text-align: center; }
    .c-box-v9 h4 { border-right: none; border-bottom: 3px solid var(--purple); padding: 0 0 10px; }
}
.consultancy-heavy-v9 {
    padding: 100px 0;
    background: #fdfdfd;
    width: 100% !important;
    display: block !important;
    opacity: 1 !important;
    position: relative;
}

.consult-grid-v9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 5%;
}

.c-box-v9 {
    background: #ffffff;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid #eee;
    text-align: right;
    height: auto !important; 
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.c-box-v9:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 15px 35px rgba(26, 26, 94, 0.08);
}

.c-box-v9 h4 {
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-right: 4px solid var(--purple);
    padding-right: 15px;
}
.c-box-v9 p {
    color: #555 !important;
    font-size: 1rem !important; 
    line-height: 1.8 !important; 
    display: block !important; 
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0;
    text-align: justify; 
}
@media (max-width: 1024px) {
    .consult-grid-v9 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .consult-grid-v9 { grid-template-columns: 1fr; }
    .c-box-v9 { padding: 25px; }
    .c-box-v9 h4 { font-size: 1.2rem; }
}
.floating-nav.nav-scrolled {
    background: rgba(253, 253, 254, 0.95) !important; 
    width: 100%;
    max-width: 100%;
    top: 0;
    border-radius: 0;
    padding: 10px 50px;
}

.floating-nav.nav-scrolled .brand-name, 
.floating-nav.nav-scrolled .nav-links a {
    color: #1a1a5e !important;
}
.nav-links a.active {
    background: var(--purple) !important;
    color: #fff !important;
}
.training-v11 {
    padding: 100px 0;
    background: #faecf9;
    width: 100%;
}

.container-v11 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.t-header-v11 { text-align: center; margin-bottom: 60px; }
.t-header-v11 h2 { color: #1a1a5e; font-size: 2.5rem; font-weight: 900; }
.t-line-v11 { width: 70px; height: 4px; background: #802b7d; margin: 15px auto; border-radius: 5px; }
.t-header-v11 p { color: #666; max-width: 800px; margin: 0 auto; line-height: 1.8; }
.t-grid-v11 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.t-box-v11 {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    text-align: right;
    transition: 0.4s ease;
    height: auto !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.t-box-v11:hover {
    transform: translateY(-10px);
    border-color: #802b7d;
    box-shadow: 0 15px 35px rgba(128, 43, 125, 0.1);
}

.t-icon-v11 {
    width: 55px; height: 55px;
    background: rgba(128, 43, 125, 0.1);
    color: #802b7d;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.t-box-v11 h3 { color: #1a1a5e; font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; }
.t-box-v11 p {
    color: #555 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: justify;
}
@media (max-width: 900px) {
    .t-grid-v11 { grid-template-columns: 1fr; }
    .t-header-v11 h2 { font-size: 1.8rem; }
}
.why-us-v12 {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a5e 0%, #301b5e 40%, #802b7d 100%);
    color: white;
    overflow: hidden;
}

.container-v12 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}
.why-header { text-align: center; margin-bottom: 80px; }
.why-header h2 { font-size: 3rem; font-weight: 900; margin-bottom: 15px; }
.why-divider { width: 80px; height: 5px; background: #3b82f6; margin: 0 auto 25px; border-radius: 10px; }
.why-header p { max-width: 800px; margin: 0 auto; font-size: 1.15rem; opacity: 0.9; line-height: 1.8; }
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.f-icon {
    font-size: 2.5rem;
    color: #3b82f6; 
    margin-bottom: 25px;
    transition: 0.5s;
}

.feature-card:hover .f-icon {
    transform: rotateY(360deg); 
    color: white;
}

.feature-card h4 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; }
.feature-card p { font-size: 0.95rem; line-height: 1.7; opacity: 0.85; }

.why-stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(26, 26, 94, 0.4);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-circle {
    width: 100px; height: 100px;
    border: 4px solid #802b7d; 
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    animation: pulseGlow 2s infinite; 
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(128, 43, 125, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(128, 43, 125, 0); }
    100% { box-shadow: 0 0 0 0 rgba(128, 43, 125, 0); }
}

.stat-num { font-size: 1.8rem; font-weight: 900; color: white; }
.stat-item p { font-weight: 700; font-size: 1rem; color: #3b82f6; }
@media (max-width: 992px) {
    .why-header h2 { font-size: 2.2rem; }
    .why-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .why-features-grid { grid-template-columns: 1fr; }
    .why-stats-bar { flex-direction: column; }
    .why-us-v12 { padding: 80px 0; }
}
.ceo-circle-v23 {
    padding: 100px 50px;
    background: #fdfdfd;
    overflow: hidden;
}

.ceo-grid-v23 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.circle-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}
.image-inner {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.rotating-border {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed #802b7d; 
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.circle-wrapper:hover .image-inner img { transform: scale(1.1); }

.exp-badge-v23 {
    background: #1a1a5e;
    color: white;
    padding: 20px;
    border-radius: 20px;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 5;
    text-align: center;
    box-shadow: 0 10px 20px rgba(26,26,94,0.3);
}

.exp-badge-v23 .num { display: block; font-size: 2rem; font-weight: 900; color: #3b82f6; }
.title-area h2 { color: #802b7d; font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.title-area h3 { color: #1a1a5e; font-size: 2.8rem; font-weight: 900; margin-bottom: 5px; }
.role-p { color: #3b82f6; font-weight: 700; margin-bottom: 30px; font-size: 1.2rem; }

.cards-stack-v23 { display: grid; gap: 20px; margin-bottom: 30px; }

.bio-card-v23 {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    transition: 0.3s;
}

.bio-card-v23:hover { transform: translateX(-10px); border-color: #802b7d; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

.bio-card-v23 i { color: #802b7d; font-size: 1.5rem; margin-bottom: 15px; display: block; }
.bio-card-v23 p { color: #555; line-height: 1.7; font-size: 0.95rem; }
.bio-card-v23 h5 { color: #1a1a5e; font-weight: 800; margin-bottom: 10px; }

.ach-list { list-style: none; padding: 0; }
.ach-list li { font-size: 0.9rem; color: #666; margin-bottom: 8px; position: relative; padding-right: 20px; }
.ach-list li::before { content: "✔"; position: absolute; right: 0; color: #3b82f6; font-weight: 900; }

.badges-row-v23 { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-v23 { background: #f0f2f5; padding: 8px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; color: #1a1a5e; border: 1px solid #ddd; }
@media (max-width: 992px) {
    .ceo-grid-v23 { grid-template-columns: 1fr; text-align: center; }
    .circle-wrapper { width: 300px; height: 300px; }
    .ach-list li { text-align: right; }
    .badges-row-v23 { justify-content: center; }
    .bio-card-v23:hover { transform: translateY(-10px); }
}
.contact-dark-v19 {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d2b 0%, #1a1a5e 50%, #4a148c 100%);
    position: relative;
    color: white;
}

.container-v19 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-upper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.numbers-col h3, .info-col h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    position: relative;
    padding-right: 20px;
}

.numbers-col h3::after, .info-col h3::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    width: 5px; height: 100%;
    background: #802b7d; 
}

.glass-num-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.4s;
}

.glass-num-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-10px);
    border-color: #3b82f6;
}

.num-txt {
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
    direction: ltr;
}

.num-actions { display: flex; gap: 12px; }

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    color: white;
}

.icon-btn.call { background: rgba(59, 130, 246, 0.8); } 
.icon-btn.whatsapp { background: rgba(37, 211, 102, 0.8); } 

.icon-btn:hover { transform: scale(1.1); filter: brightness(1.2); }

.info-item-v19 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.i-circle {
    width: 55px; height: 55px;
    background: rgba(128, 43, 125, 0.2);
    border: 1px solid rgba(128, 43, 125, 0.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #3b82f6;
}

.info-item-v19 h5 { color: #fff; font-weight: 800; margin-bottom: 5px; font-size: 1.1rem; }
.info-item-v19 p, .info-item-v19 a { color: #ccc; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.info-item-v19 a:hover { color: #802b7d; }

.map-container-v19 {
    width: 100%;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

@media (max-width: 992px) {
    .contact-upper-grid { grid-template-columns: 1fr; gap: 50px; }
    .glass-num-card { padding: 15px 20px; }
    .contact-dark-v19 { padding: 60px 0; }
}
.footer-final-v21 {
    padding: 80px  50px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a5e 100%);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo-area { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo-area img { height: 50px; }
.footer-logo-area span { font-size: 1.5rem; font-weight: 900; }
.footer-about-text { color: #aaa; line-height: 1.8; font-size: 0.9rem; margin-bottom: 25px; text-align: justify; }

.footer-social-icons { display: flex; gap: 12px; }
.footer-social-icons a {
    width: 38px; height: 38px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: white; text-decoration: none; transition: 0.3s;
}
.footer-social-icons a:hover { background: #802b7d; transform: translateY(-3px); }
.footer-col h4 {
    font-size: 1.2rem; font-weight: 800; margin-bottom: 30px;
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; right: 0; bottom: 0;
    width: 40px; height: 3px; background: #802b7d;
}
[dir="ltr"] .footer-col h4::after { right: auto; left: 0; }

.fast-links ul { list-style: none; }
.fast-links ul li { margin-bottom: 12px; }
.fast-links ul li a { color: #ccc; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.fast-links ul li a:hover { color: #3b82f6; padding-right: 10px; }
.f-contact-block { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.f-contact-block i { color: #802b7d; font-size: 1.2rem; margin-top: 5px; }
.f-details { display: flex; flex-direction: column; gap: 5px; }
.f-details a, .f-details span { color: #ccc; text-decoration: none; font-size: 0.9rem; font-weight: 600; }

.footer-credits-bar {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 10px;
}

.copy-text p { color: #666; font-size: 0.85rem; }
.gmt-credit { color: #888; font-size: 0.95rem; font-weight: 600; }
.gmt-credit a { 
    color: #3b82f6; 
    text-decoration: none; 
    font-weight: 800; 
    transition: 0.3s; 
}
.gmt-credit a:hover { color: #802b7d; }

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

@media (max-width: 700px) {
    .footer-main-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo-area, .footer-social-icons, .footer-col h4::after { justify-content: center; margin-left: auto; margin-right: auto; }
    .f-contact-block { flex-direction: column; align-items: center; }
}
.training-v24-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a5e 0%, #0d0d2b 100%);
    color: white;
}

.t-header-v24 { text-align: center; margin-bottom: 60px; }
.t-header-v24 h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 15px; }
.t-header-v24 p { opacity: 0.7; }

.training-accordion-v24 { max-width: 900px; margin: 0 auto; }

.acc-item-v24 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.acc-header-v24 {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.acc-title-v24 { display: flex; align-items: center; gap: 15px; }
.acc-title-v24 i { color: #802b7d; font-size: 1.5rem; }
.acc-title-v24 span { font-weight: 800; font-size: 1.1rem; }

.icon-state { transition: 0.4s; opacity: 0.5; }

.acc-item-v24.active { border-color: #3b82f6; background: rgba(255, 255, 255, 0.08); }
.acc-item-v24.active .icon-state { transform: rotate(45deg); color: #3b82f6; opacity: 1; }

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

.acc-content-v24 ul { padding: 0 75px 30px; list-style: none; }
.acc-content-v24 ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-weight: 600;
}
.partners-v25 {
    padding: 100px 50px;
    background: #f8f9ff;
}

.p-header-v25 { text-align: center; margin-bottom: 60px; }
.p-header-v25 h2 { color: #1a1a5e; font-size: 2.2rem; font-weight: 900; }
.p-line { width: 60px; height: 4px; background: #802b7d; margin: 15px auto; border-radius: 10px; }

.p-grid-v25 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.p-group-v25 h4 {
    color: #802b7d;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 1px;
}

.logo-stack-v25 { display: flex; flex-direction: column; gap: 12px; }

.logo-item-v25 {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}
.logo-item-v25 img{
    width: 120px;
}
.logo-item-v25 span { font-weight: 800; color: #1a1a5e; font-size: 0.95rem; }

.logo-item-v25:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}
.p-group-v25 { animation: fadeInUp 1s ease both; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .p-grid-v25 { grid-template-columns: 1fr; }
    .acc-content-v24 ul { padding: 0 40px 25px; }
}
.service-item-v7 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 35px;
    color: white;
    text-align: start !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
[dir="rtl"] .service-item-v7 {
    text-align: right !important;
}
[dir="ltr"] .service-item-v7 {
    text-align: left !important;
}
.icon-box-v7 {
    width: 60px;
    height: 60px;
    background: #802b7d;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-left: auto; 
    margin-right: 0;
}
[dir="ltr"] .icon-box-v7 {
    margin-right: auto; 
    margin-left: 0;
}
.service-item-v7 p {
    text-align: inherit !important; 
    color: #ffffff !important;
    font-size: 1.05rem;
    line-height: 1.8;
}
.f-details a, 
.num-txt, 
.wa-btn span,
.phone-list a {
    direction: ltr !important;
    display: inline-block; 
    unicode-bidi: isolate; 
}
[dir="rtl"] .f-details {
    text-align: right;
}
.achievements-v29 {
    padding: 120px 0;
    background: linear-gradient(135deg, #0d0d2b 0%, #1a1a5e 50%, #4a148c 100%);
    position: relative;
    overflow: hidden;
    color: white;
}
.achievements-v29::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(128, 43, 125, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.achievements-v29 .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

.v29-header {
    text-align: center;
    margin-bottom: 70px;
}

.v29-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.v29-line {
    width: 80px;
    height: 5px;
    background: #802b7d; 
    margin: 0 auto;
    border-radius: 10px;
}
.ach-grid-v29 {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 100px;
}

.ach-card {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto; 
}
.ach-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #802b7d;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.innerSwiper {
    width: 100%;
    height: 320px; 
    position: relative;
}

.innerSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: #3b82f6 !important; 
    width: 20px !important;
    border-radius: 5px !important;
}
.ach-text {
    padding: 35px;
    text-align: start; 
}

[dir="rtl"] .ach-text { text-align: right; }
[dir="ltr"] .ach-text { text-align: left; }

.ach-text h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px; 
}

.ach-text p {
    color: #ccc !important; 
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
@media (max-width: 992px) {
    .ach-grid-v29 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .v29-header h2 {
        font-size: 2.2rem;
    }

    .innerSwiper {
        height: 250px;
    }
}
.acc-content-v24 ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reg-btn {
    background: var(--purple);
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.reg-btn:hover {
    background: var(--navy);
    transform: scale(1.05);
}

.t-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.t-modal-content {
    background: #0d0d2b;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 20px; right: 25px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

#regForm input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    outline: none;
}

.heavy-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heavy-submit-btn:hover {
    background: #25d366; 
}
.logo-item-v25 {
    display: flex;
    align-items: center; 
    gap: 15px; 
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[dir="rtl"] .logo-item-v25 {
    flex-direction: row; 
    text-align: right;
}

[dir="ltr"] .logo-item-v25 {
    flex-direction: row; 
    text-align: left;
}
.center-logo-img {
    width: 55px; 
    height: 55px;
    object-fit: contain; 
    filter: grayscale(20%); 
    transition: 0.3s;
}

.logo-item-v25:hover {
    transform: translateX(10px); 
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
}

.logo-item-v25:hover .center-logo-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.logo-item-v25 span {
    font-weight: 800;
    color: #1a1a5e;
    font-size: 0.95rem;
    line-height: 1.3;
}
@media (max-width: 600px) {
    .logo-item-v25 {
        padding: 10px 15px;
    }
    .center-logo-img {
        width: 35px;
        height: 35px;
    }
}
.hiring-premium-v32 {
    padding: 100px 50px;
    background: linear-gradient(135deg, #0d0d2b 0%, #1a1a5e 50%, #301b5e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.h-glow-bg {
    position: absolute; top: -10%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(128, 43, 125, 0.4) 0%, transparent 70%);
}

.h-grid-v32 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}
.h-content-v32 h6 { color: #3b82f6; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 2px; }
.h-content-v32 h2 { font-size: 3rem; font-weight: 900; margin-bottom: 25px; line-height: 1.2; }
.h-content-v32 p { font-size: 1.1rem; line-height: 1.8; opacity: 0.8; margin-bottom: 35px; text-align: justify; }

.h-features-v32 { display: flex; flex-direction: column; gap: 15px; }
.h-feat { display: flex; align-items: center; gap: 15px; font-weight: 700; font-size: 1rem; color: #fff; }
.h-feat i { color: #802b7d; font-size: 1.2rem; }
.h-form-wrapper-v32 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 45px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.h-field { margin-bottom: 20px; text-align: right; }
[dir="ltr"] .h-field { text-align: left; }

.h-field label { display: block; margin-bottom: 10px; font-weight: 700; font-size: 0.9rem; color: #ccc; }

.h-field input {
    width: 100%; padding: 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05); color: white; outline: none; transition: 0.3s;
}

.h-field input:focus { border-color: #3b82f6; background: rgba(255,255,255,0.1); }

.h-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.custom-file-upload { position: relative; width: 100%; height: 80px; }
.custom-file-upload input {
    position: absolute; inset: 0; opacity: 0; z-index: 10; cursor: pointer;
}

.file-dummy {
    position: absolute; inset: 0; background: rgba(128, 43, 125, 0.1);
    border: 2px dashed rgba(128, 43, 125, 0.4); border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: 0.3s;
}

.file-dummy i { font-size: 1.5rem; color: #802b7d; margin-bottom: 5px; }
.file-dummy .file-msg { font-size: 0.8rem; font-weight: 700; }

.custom-file-upload:hover .file-dummy { background: rgba(128, 43, 125, 0.2); border-color: #802b7d; }
.h-btn-v32 {
    width: 100%; padding: 18px; border-radius: 15px; border: none;
    background: linear-gradient(135deg, #802b7d, #4a148c);
    color: white; font-weight: 900; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    transition: 0.4s; margin-top: 10px;
}

.h-btn-v32:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(128, 43, 125, 0.4); filter: brightness(1.2); }
@media (max-width: 992px) {
    .h-grid-v32 { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .h-content-v32 h2 { font-size: 2.2rem; }
    .h-field-row { grid-template-columns: 1fr; }
    .h-features-v32 { align-items: center; }
}
.map-container-v19 {
    width: 100%;
    margin-top: 30px;
    border-radius: 30px; 
    overflow: hidden;
    border: 4px solid #fff; 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.map-container-v19 iframe {
    display: block;
    width: 100%;
}