:root {
    --p-blue: #3A9BDC;
    --d-grey: #4A4E51;
    --l-grey: #6E7275;
    --bg: #0a0e14;
    --font-cairo: 'Cairo', sans-serif;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg);
    color: #fff;
    overflow-x: hidden;
    font-family: var(--font-cairo);
}
#loader-screen {
    position: fixed; inset: 0; background: #000; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
}
.loader-logo { font-family: var(--font-amiri); font-size: 3rem; letter-spacing: 5px; }
.loader-logo span { color: var(--p-blue); }
.progress-container { width: 150px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 15px; position: relative; overflow: hidden; }
.progress-bar { width: 100%; height: 100%; background: var(--p-blue); position: absolute; left: -100%; animation: load 2s infinite; }
@keyframes load { to { left: 100%; } }
.geo-background { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.mesh-shape { position: absolute; border: 1px solid rgba(58, 155, 220, 0.15); animation: meshMove 20s infinite alternate linear; }
.s1 { width: 400px; height: 400px; top: -10%; left: -10%; border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
.s2 { width: 300px; height: 300px; bottom: 10%; right: 5%; border-radius: 50%; border-color: rgba(110, 114, 117, 0.2); }
.s3 { width: 250px; height: 250px; top: 40%; left: 50%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
@keyframes meshMove { 0% { transform: rotate(0deg) translate(0,0); } 100% { transform: rotate(360deg) translate(50px, 50px); } }
header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 5%; display: flex; justify-content: center; }
.slim-nav {
    width: 100%; max-width: 1300px; height: 75px; background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px); border-radius: 20px; border: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; padding: 0 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.brand-box { display: flex; align-items: center; gap: 15px; }
.site-logo { height: 50px; filter: drop-shadow(0 0 10px var(--p-blue)); }
.main-name { font-family: var(--font-amiri); font-size: 1.5rem; color: #fff; line-height: 1; font-weight: 700; }
.sub-tagline { font-size: 0.7rem; color: var(--p-blue); font-weight: bold; margin-top: 5px; }

.desktop-links { display: flex; list-style: none; gap: 30px; }
.desktop-links a { 
    text-decoration: none; color: #ccc; font-family: var(--font-amiri); 
    font-size: 1.2rem; font-weight: 700; transition: 0.3s;
}
.desktop-links li.active a, .desktop-links a:hover { color: var(--p-blue); }

.quick-call-btn { 
    width: 45px; height: 45px; background: var(--p-blue); color: #fff; 
    border-radius: 50%; display: flex; justify-content: center; align-items: center; 
    text-decoration: none; box-shadow: 0 0 15px rgba(58, 155, 220, 0.5);
}
.top-side-menu {
    position: fixed; top: -100%; left: 0; width: 100%; height: 100vh;
    z-index: 2000; transition: 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}
.top-side-menu.active { top: 0; }
.menu-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); }
.menu-card {
    position: relative; width: 90%; max-width: 450px; margin: 20px auto;
    background: rgba(15, 23, 42, 0.95); border: 1px solid var(--p-blue);
    border-radius: 30px; padding: 40px; text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.menu-close { font-size: 3rem; color: var(--p-blue); cursor: pointer; position: absolute; top: 10px; right: 25px; }
.mobile-links { list-style: none; margin: 40px 0; }
.mobile-links li { margin: 25px 0; }
.m-link { font-family: var(--font-amiri); font-size: 2rem; color: #fff; text-decoration: none; font-weight: 700; }
.m-link:hover { color: var(--p-blue); }
.hero-wrapper { 
    min-height: 100vh; display: flex; align-items: center; justify-content: center; 
    padding: 100px 5% 60px 5%; position: relative;
}
.glass-geometric-frame {
    position: relative; background: var(--glass); backdrop-filter: blur(40px);
    border: 1px solid var(--border); border-radius: 40px; padding: 60px;
    max-width: 1000px; width: 100%; text-align: center; z-index: 10;
}

.status-pills { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.pill-item { 
    padding: 8px 25px; border-radius: 50px; background: rgba(58, 155, 220, 0.1); 
    border: 1.5px solid var(--p-blue); color: var(--p-blue); font-weight: 800;
    animation: glowPill 2s infinite alternate; font-size: 1rem;
}
@keyframes glowPill { from { box-shadow: 0 0 5px var(--p-blue); } to { box-shadow: 0 0 20px var(--p-blue); } }

.hero-title { font-family: var(--font-amiri); font-size: 5rem; line-height: 1; margin-bottom: 10px; }
.hero-subtitle { font-family: var(--font-amiri); font-size: 1.8rem; color: var(--p-blue); margin-bottom: 25px; }
.hero-paragraph { font-size: 1.2rem; color: #ccc; line-height: 1.8; margin-bottom: 40px; }

.hero-actions { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--p-blue); color: #fff; padding: 15px 40px; border-radius: 15px; border: none; font-weight: 900; font-size: 1.1rem; cursor: pointer; transition: 0.3s; }
.btn-outline { background: transparent; color: #fff; padding: 15px 40px; border-radius: 15px; border: 2px solid var(--border); font-weight: 900; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { transform: translateY(-5px); filter: brightness(1.2); }
.iphone-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.stick-line { 
    width: 2px; height: 50px; background: linear-gradient(to bottom, var(--p-blue), transparent); 
    position: relative; animation: arrowAnim 2s infinite; 
}
.stick-line::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 10px; height: 10px;
    border-right: 2px solid var(--p-blue); border-bottom: 2px solid var(--p-blue);
    transform: translateX(-50%) rotate(45deg);
}
@keyframes arrowAnim { 0%, 100% { height: 40px; transform: translateY(0); } 50% { height: 60px; transform: translateY(10px); } }
.mobile-toggle { display: none; background: transparent; border: none; flex-direction: column; gap: 6px; cursor: pointer; }
.t-line { width: 25px; height: 2px; background: var(--p-blue); box-shadow: 0 0 5px var(--p-blue); }

@media (max-width: 992px) {
    .desktop-links, .quick-call-btn { display: none; }
    .mobile-toggle { display: flex; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.3rem; }
    .hero-paragraph { font-size: 1rem; }
    .glass-geometric-frame { padding: 40px 20px; border-radius: 25px; width: 95%; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .main-name { font-size: 1.2rem; }
    .sub-tagline { font-size: 0.6rem; }
    .pill-item { font-size: 0.85rem; padding: 6px 15px; }
}

@media (min-width: 993px) {
    .top-side-menu { display: none; } 
}
:root {
    --p-blue: #3A9BDC;
    --p-blue-light: #5DBCF9; 
    --bg-dark-blue: #0d1b2a; 
    --font-amiri: 'Amiri', serif;
}

body {
    background-color: var(--bg-dark-blue);
}
.geo-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #162a41 0%, #0d1b2a 100%);
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(93, 188, 249, 0.3);
    background: rgba(93, 188, 249, 0.03);
    animation: geoRotate 20s infinite linear;
}

.g-cube {
    width: 120px; height: 120px;
    top: 15%; left: 10%;
    transform: rotate(45deg);
}

.g-triangle {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(93, 188, 249, 0.1);
    top: 60%; right: 15%;
    animation-duration: 25s;
    background: transparent;
}

.g-hexagon {
    width: 100px; height: 57px;
    background: rgba(93, 188, 249, 0.05);
    position: absolute;
    top: 40%; left: 45%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.g-line {
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--p-blue-light), transparent);
    top: 25%; right: 30%;
    transform: rotate(-45deg);
}

@keyframes geoRotate {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
    100% { transform: translate(0,0) rotate(360deg); }
}
@media (max-width: 992px) {
    .menu-card {
        margin-top: 150px !important; 
        width: 92% !important;
        padding: 30px 20px !important;
    }
    
    .top-side-menu.active {
        top: 0;
    }
}
.hero-paragraph {
    color: rgba(255, 255, 255, 0.85);
}
.geo-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #162a41 0%, #0d1b2a 100%);
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(93, 188, 249, 0.2);
    background: rgba(93, 188, 249, 0.02);
    animation: floatGeo 15s infinite alternate ease-in-out;
}
.g-cube {
    width: 100px; height: 100px;
    top: 15%; 
    left: 8%;
    transform: rotate(15deg);
    animation-duration: 18s;
}
.g-triangle {
    width: 0; height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 95px solid rgba(93, 188, 249, 0.1);
    bottom: 15%; 
    right: 8%;
    background: transparent;
    animation-duration: 22s;
    animation-delay: -2s;
}
.g-hexagon {
    width: 90px; height: 52px;
    top: 25%; 
    right: 12%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-duration: 20s;
    animation-delay: -5s;
}
.g-line {
    width: 180px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--p-blue-light), transparent);
    bottom: 25%; 
    left: 10%;
    transform: rotate(-30deg);
    animation: lineFade 6s infinite alternate;
}
@keyframes floatGeo {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 40px) rotate(45deg); }
}

@keyframes lineFade {
    0% { opacity: 0.2; transform: translateX(0) rotate(-30deg); }
    100% { opacity: 0.6; transform: translateX(30px) rotate(-30deg); }
}
.glass-geometric-frame {
    position: relative;
    z-index: 10;
    margin: 0 auto;
}
.about-section {
    padding: 100px 5%;
    background: #ffffff; 
    position: relative;
    overflow: hidden;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-family: var(--font-amiri);
    font-size: 3.5rem;
    color: var(--d-grey);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    background: var(--p-blue);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--l-grey);
    line-height: 1.8;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: #f8fafc;
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(58, 155, 220, 0.1);
    border-color: var(--p-blue);
}

.stat-number, .stat-number-text {
    font-family: var(--font-amiri);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--d-grey);
    margin-bottom: 10px;
}
.stat-card:hover .stat-number { color: var(--p-blue); }

.stat-label {
    font-size: 1rem;
    color: var(--l-grey);
    font-weight: 700;
}
.performance-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #f1f5f9;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.05);
}

.perf-title {
    font-family: var(--font-amiri);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--d-grey);
}

.bar-group { margin-bottom: 25px; }

.bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--d-grey);
}

.bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--p-blue), #5DBCF9);
    border-radius: 10px;
    transition: 1.5s cubic-bezier(0.17, 0.85, 0.43, 1);
    position: relative;
}
.bar-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: barShine 3s infinite;
}

@keyframes barShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2.5rem; }
    .performance-wrapper { padding: 30px 20px; }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: 1fr; }
}
.vision-mission-section {
    padding: 100px 8%;
    background: #f8fafc; 
    overflow: hidden;
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.vision-text-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.v-card {
    padding: 45px;
    border-radius: 35px;
    display: flex;
    gap: 25px;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.v-card:hover {
    transform: translateX(-15px) scale(1.02);
}
.light-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
}
.dark-navy {
    background: #0d1b2a;
    border: 1px solid rgba(58, 155, 220, 0.2);
    box-shadow: 0 25px 60px rgba(13, 27, 42, 0.3);
}

.v-card-icon {
    font-size: 2.2rem;
    color: var(--p-blue);
}

.v-title {
    font-family: var(--font-amiri);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--d-grey);
}

.white-text { color: #fff !important; }

.v-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--l-grey);
    font-weight: 500;
}
.vision-image-side {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.strat-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: 1s;
}

.image-frame:hover .strat-img {
    transform: scale(1.1);
}
.img-overlay-box {
    position: absolute;
    top: 20px; left: 20px;
    width: 100px; height: 100px;
    border-top: 5px solid var(--p-blue);
    border-left: 5px solid var(--p-blue);
}

.floating-badge {
    position: absolute;
    bottom: 40px; right: -20px;
    background: var(--p-blue);
    color: #fff;
    padding: 25px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(58, 155, 220, 0.4);
    animation: floatBadge 3s infinite alternate;
}

.b-number { font-size: 2rem; font-weight: 900; }
.b-text { font-size: 0.8rem; font-weight: bold; }

@keyframes floatBadge {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}
@media (max-width: 992px) {
    .vision-wrapper { grid-template-columns: 1fr; }
    .vision-image-side { order: -1; } 
    .strat-img { height: 350px; }
    .v-title { font-size: 2rem; }
    .v-card { padding: 30px; flex-direction: column; }
    .floating-badge { right: 20px; }
}
.ultra-luxury-services {
    padding: 150px 5%;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}
.services-bg-decor .decor-circle {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; z-index: 0;
}
.d1 { width: 500px; height: 500px; background: var(--p-blue); top: -10%; left: -10%; }
.d2 { width: 600px; height: 600px; background: var(--l-grey); bottom: -10%; right: -10%; }

.mega-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px auto;
    position: relative;
    z-index: 2;
}

.amiri-title {
    font-family: 'Amiri', serif;
    font-size: 4.5rem;
    color: var(--d-grey);
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.title-underline {
    width: 150px; height: 4px; background: #eee; margin: 20px auto; position: relative;
}
.title-underline span {
    position: absolute; left: 0; top: 0; height: 100%; width: 40px; 
    background: var(--p-blue); animation: slideLine 3s infinite alternate;
}
@keyframes slideLine { to { left: 110px; } }

.mega-desc {
    font-size: 1.4rem; color: var(--l-grey); line-height: 2; font-weight: 500;
}
.services-3d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}
.mega-card {
    perspective: 1500px;
}

.card-inner {
    background: #fff;
    padding: 60px 40px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}
.mega-card:hover .card-inner {
    transform: translateY(-20px) rotateX(5deg);
    border-color: var(--p-blue);
    box-shadow: 0 40px 80px rgba(58, 155, 220, 0.2);
}

.card-inner::before {
    content: ''; position: absolute; top: -100%; left: -100%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(58, 155, 220, 0.05), transparent);
    transition: 0.8s;
}
.mega-card:hover .card-inner::before { top: 0; left: 0; }
.s-icon-box {
    width: 90px; height: 90px; background: #f8fafc; border-radius: 25px;
    display: flex; justify-content: center; align-items: center;
    font-size: 2.5rem; color: var(--p-blue); margin-bottom: 35px;
    transition: 0.5s; box-shadow: inset 0 0 0 1px rgba(58, 155, 220, 0.1);
}
.mega-card:hover .s-icon-box {
    background: var(--p-blue); color: #fff; transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 30px rgba(58, 155, 220, 0.3);
}

.s-title-amiri {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: var(--d-grey);
    margin-bottom: 25px;
    line-height: 1.2;
}

.s-detailed-text {
    font-size: 1.1rem;
    color: var(--l-grey);
    line-height: 1.9;
    margin-bottom: 40px;
    min-height: 140px;
}

.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 25px; border-top: 1px solid #f1f5f9;
}
.card-footer span { font-weight: 900; color: var(--p-blue); text-transform: uppercase; letter-spacing: 1px; }
.card-footer i { color: var(--l-grey); transition: 0.3s; }
.mega-card:hover .card-footer i { transform: translateX(-10px); color: var(--p-blue); }
@media (max-width: 1200px) { .services-3d-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) {
    .services-3d-grid { grid-template-columns: 1fr; }
    .amiri-title { font-size: 2.8rem; }
    .mega-desc { font-size: 1.1rem; }
    .card-inner { padding: 40px 25px; }
}
.luxury-magazine { padding: 120px 5%; background: #fdfdfd; }
.magazine-intro { text-align: center; margin-bottom: 80px; }
.amiri-section-title { font-family: 'Amiri', serif; font-size: 3.5rem; color: #0d1b2a; margin-bottom: 15px; }

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

.mag-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mag-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(58, 155, 220, 0.15); }

.mag-img-wrapper { position: relative; height: 260px; overflow: hidden; }
.mag-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.mag-card:hover img { transform: scale(1.1); }

.mag-tag {
    position: absolute; top: 20px; right: 20px;
    background: #0d1b2a; color: #fff; padding: 6px 15px;
    border-radius: 10px; font-weight: bold; font-size: 0.8rem;
}

.mag-content { padding: 35px; }
.mag-date { color: #3A9BDC; font-weight: 800; font-size: 0.9rem; display: block; margin-bottom: 10px; }

.amiri-mag-title {
    font-family: 'Amiri', serif; font-size: 1.8rem; color: #0d1b2a;
    line-height: 1.3; margin-bottom: 20px; min-height: 70px;
}

.mag-excerpt { font-size: 1rem; color: #6E7275; line-height: 1.8; margin-bottom: 30px; }

.mag-btn {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: #3A9BDC; font-weight: 900;
    font-size: 1.1rem; transition: 0.3s;
}
.mag-btn:hover { color: #0d1b2a; gap: 15px; }
@media (max-width: 992px) { .magazine-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .magazine-grid { grid-template-columns: 1fr; } }
.why-us-tech-section {
    padding: 150px 5%;
    background: radial-gradient(circle at center, #162a41 0%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}
.why-decor-bg .g-line-v {
    position: absolute; top: 20%; left: -5%; width: 300px; height: 1px;
    background: var(--p-blue); transform: rotate(45deg); opacity: 0.2;
}
.why-decor-bg .g-circle-v {
    position: absolute; bottom: 10%; right: 5%; width: 200px; height: 200px;
    border: 1px solid var(--p-blue); border-radius: 50%; opacity: 0.1;
}

.why-main-header { text-align: center; margin-bottom: 80px; }
.amiri-why-title { font-family: 'Amiri', serif; font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; }
.why-glow-line { width: 100px; height: 3px; background: var(--p-blue); margin: 0 auto; box-shadow: 0 0 15px var(--p-blue); }
.features-dynamic-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 60px;
}

.feature-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 60px;
    display: flex; gap: 30px;
    position: relative; overflow: hidden;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--p-blue);
    background: rgba(255, 255, 255, 0.05);
}

.f-icon-wrap {
    font-size: 3rem; color: var(--p-blue); 
    text-shadow: 0 0 20px rgba(58, 155, 220, 0.5);
}

.amiri-f-title { font-family: 'Amiri', serif; font-size: 2.2rem; margin-bottom: 15px; }
.f-text { font-size: 1.1rem; color: #ccc; line-height: 1.8; }
.team-power-banner {
    background: #0d1b2a; border: 1px solid var(--p-blue); border-radius: 25px;
    padding: 30px; margin-bottom: 80px; text-align: center;
    box-shadow: 0 0 30px rgba(58, 155, 220, 0.2);
}
.banner-inner p { font-size: 1.4rem; font-weight: 800; color: #fff; }
.achievements-showcase { text-align: center; margin-bottom: 100px; max-width: 900px; margin-left: auto; margin-right: auto; }
.achieve-desc { font-size: 1.3rem; color: #aaa; line-height: 1.9; }
.grand-philosophy { text-align: center; position: relative; }
.amiri-quote {
    font-family: 'Amiri', serif; font-size: 3rem; line-height: 1.4;
    color: #fff; margin-bottom: 30px; font-weight: 700;
}

.values-tags { display: flex; justify-content: center; gap: 15px; color: var(--p-blue); font-weight: 900; font-size: 1.2rem; }
.v-dot { color: #fff; opacity: 0.3; }
.animate-scroll { opacity: 0; transform: translateY(50px); transition: 1s all ease; }
.animate-scroll.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 992px) {
    .features-dynamic-grid { grid-template-columns: 1fr; }
    .amiri-why-title { font-size: 2.2rem; }
    .amiri-quote { font-size: 1.8rem; }
    .feature-glass-card { padding: 40px 25px; flex-direction: column; text-align: center; }
}
.the-final-contact {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
    background-color: #0d1b2a;
}
.contact-fixed-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px) brightness(0.4);
    z-index: -2;
    transform: scale(1.05);
}

.contact-dark-shield {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.8), rgba(58,155,220,0.4));
    z-index: -1;
}
.contact-inner-content {
    width: 100%;
    max-width: 1250px;
    z-index: 10;
}

.contact-main-header { text-align: center; margin-bottom: 70px; }
.contact-main-header h2 { font-family: 'Amiri', serif; font-size: 3.5rem; color: #fff; }
.luxury-separator { width: 100px; height: 3px; background: #3A9BDC; margin: 20px auto; box-shadow: 0 0 15px #3A9BDC; }
.luxury-contact-grid {
    display: flex;
    justify-content: center; 
    gap: 80px; 
    padding: 0 30px;
    flex-wrap: wrap;
}

.contact-glass-panel {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px 40px;
    transition: 0.4s ease;
}

.contact-glass-panel:hover { transform: translateY(-10px); border-color: #3A9BDC; }
.contact-glass-panel h3 { font-family: 'Amiri', serif; font-size: 2.2rem; color: #3A9BDC; margin-bottom: 35px; text-align: right; }
.contact-row-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.row-text { text-align: right; margin-bottom: 15px; display: flex; flex-direction: column; }
.row-label { font-size: 0.8rem; color: #3A9BDC; font-weight: 800; margin-bottom: 5px; }
.row-val { color: #fff; font-size: 1.2rem; font-weight: 900; }

.row-actions { display: flex; gap: 10px; }
.row-btn {
    flex: 1; text-decoration: none; padding: 10px; border-radius: 12px;
    font-size: 0.9rem; font-weight: 700; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s;
}
.call-btn { background: #fff; color: #0d1b2a; }
.wa-btn { background: #25D366; color: #fff; }
.email-only { display: flex; align-items: center; gap: 20px; }
.email-only i { font-size: 1.5rem; color: #3A9BDC; }
.email-stack a { display: block; color: #fff; text-decoration: none; font-size: 0.95rem; margin-bottom: 5px; }
.contact-form-luxury input, .contact-form-luxury select, .contact-form-luxury textarea {
    width: 100%; padding: 15px 20px; margin-bottom: 20px; border-radius: 15px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff;
    font-family: 'Cairo', sans-serif; text-align: right;
}
.fn-submit-btn {
    width: 100%; padding: 18px; background: #25D366; color: #fff; border: none; border-radius: 15px;
    font-size: 1.1rem; font-weight: 900; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px;
}
@media (max-width: 992px) {
    .luxury-contact-grid { gap: 30px; }
    .contact-glass-panel { max-width: 100%; }
}
.main-footer {
    background: #0a0e14; 
    padding: 100px 5% 40px;
    color: #fff;
    border-top: 2px solid rgba(58, 155, 220, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.footer-logo img { height: 60px; filter: drop-shadow(0 0 10px var(--p-blue)); }
.footer-logo h2 { font-size: 2.2rem; color: #fff; }

.footer-desc {
    font-size: 1rem; color: #aaa; line-height: 1.8; margin-bottom: 25px;
}

.social-icons { display: flex; gap: 15px; }
.social-icons a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; text-decoration: none; transition: 0.3s;
}
.social-icons a:hover { background: #3A9BDC; transform: translateY(-5px); }
.footer-col h3 {
    font-size: 1.8rem; color: #3A9BDC; margin-bottom: 30px; position: relative;
}
.footer-col h3::after {
    content: ''; position: absolute; bottom: -8px; right: 0;
    width: 40px; height: 2px; background: #3A9BDC;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    text-decoration: none; color: #ccc; transition: 0.3s; display: block;
}
.footer-links a:hover { color: #3A9BDC; transform: translateX(-10px); }
.footer-info { list-style: none; }
.footer-info li {
    display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
    color: #ccc; font-size: 0.95rem;
}
.footer-info i { color: #3A9BDC; font-size: 1.1rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
}

.copyright { margin-bottom: 15px; font-size: 1rem; color: #888; }
.blue-text { color: #3A9BDC; font-weight: 700; }

.developer-credit { font-size: 1.1rem; font-weight: 700; }
.developer-credit p { color: #555; }
.gmt-link {
    color: #3A9BDC; text-decoration: none; position: relative;
    padding-bottom: 2px; transition: 0.3s;
}
.gmt-link:hover { color: #fff; }
.gmt-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0%; height: 1px; background: #3A9BDC; transition: 0.3s;
}
.gmt-link:hover::after { width: 100%; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-footer { padding-top: 60px; }
}
#loader-screen {
    position: fixed;
    inset: 0;
    background: #0a0e14; 
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-logo-img {
    width: 120px; 
    margin-bottom: 25px;
    animation: splashPulse 2s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(58, 155, 220, 0.4));
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.progress-container {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: #3A9BDC;
    position: absolute;
    left: -100%;
    animation: loadMove 2s infinite linear;
}

@keyframes loadMove {
    to { left: 100%; }
}
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}

.float-action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}
.whatsapp-float {
    background: linear-gradient(45deg, #25d366, #128c7e);
    animation: waPulse 2s infinite;
}
.call-float {
    background: linear-gradient(45deg, #3A9BDC, #0d1b2a); 
    animation: callPulse 2s infinite;
    animation-delay: 1s; 
}
.btn-label {
    position: absolute;
    right: 75px;
    background: #0d1b2a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.float-action-btn:hover .btn-label {
    opacity: 1;
    right: 70px;
}

.float-action-btn:hover {
    transform: scale(1.1) rotate(10deg);
}
@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes callPulse {
    0% { box-shadow: 0 0 0 0 rgba(58, 155, 220, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(58, 155, 220, 0); }
    100% { box-shadow: 0 0 0 0 rgba(58, 155, 220, 0); }
}
@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 20px;
        left: 20px;
    }
    .float-action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .btn-label { display: none; } 
}
@media (max-width: 768px) {
    .main-name { 
        font-size: 1.1rem !important; 
    }
    .sub-tagline { 
        font-size: 0.55rem !important; 
        letter-spacing: 0 !important;
    }
    .site-logo { 
        height: 40px !important; 
    }
    .slim-nav { 
        height: 65px !important; 
        padding: 0 15px !important; 
    }
    .hero-wrapper {
        padding-top: 80px !important; 
    }
    .glass-geometric-frame {
        padding: 30px 15px !important;
        width: 95% !important;
    }
    .hero-title { 
        font-size: 1.8rem !important; 
        margin-bottom: 10px !important;
    }
    .hero-subtitle { 
        font-size: 1rem !important; 
        margin-bottom: 15px !important;
    }
    .hero-paragraph { 
        font-size: 0.85rem !important; 
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }
    .pill-item { 
        font-size: 0.75rem !important; 
        padding: 5px 12px !important; 
    }
    .hero-actions {
        flex-direction: column !important; 
        gap: 12px !important;
    }
    .btn-primary, .btn-outline {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.95rem !important;
    }
    .m-link {
        font-size: 1.5rem !important; 
    }
    .menu-card {
        padding: 30px 15px !important;
    }
}
.top-side-menu {
    top: -150% !important; 
    visibility: hidden !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1) !important;
}
.top-side-menu.active {
    top: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; 
    transition: 0.4s;
}
:root {
    --font-cairo: 'Cairo', sans-serif;
}

* {
    font-family: var(--font-cairo) !important;
}
h1, h2, h3, .amiri-font, .amiri-title, .hero-title {
    font-family: var(--font-cairo) !important;
    font-weight: 900; 
}
p, span, a, li, input, textarea, select {
    font-family: var(--font-cairo) !important;
    font-weight: 500; 
}
html, body, h1, h2, h3, h4, h5, h6, p, span, a, li, input, select, textarea, button, div:not(.fa):not(.fab):not(.fas) {
    font-family: 'Cairo', sans-serif !important;
}
i, .fas, .fab, .far, .fa-solid, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", sans-serif !important;
}
.site-logo, .main-logo {
    height: 70px !important; 
    transition: 0.3s ease-in-out;
}
header.scrolled .site-logo, header.scrolled .main-logo {
    height: 50px !important;
}
@media (max-width: 768px) {
    .site-logo, .main-logo {
        height: 48px !important; 
    }
}
.site-logo, .main-logo {
    height: 65px !important; 
    transition: 0.3s ease-in-out;
}
header.scrolled .site-logo, header.scrolled .main-logo {
    height: 50px !important;
}
@media (max-width: 768px) {
    .site-logo, .main-logo {
        height: 60px !important; 
    }
}
.splash-logo-img {
    width: 160px !important; 
    max-width: 70% !important; 
}
.brand-box, .brand-container {
    display: flex !important;
    align-items: center !important;
    gap: 150px !important;
}

.site-logo, .main-logo {
    height: 30px !important;
    width: auto !important;
    transform: scale(4.5) !important;
    transform-origin: right center !important;
    position: relative !important;
    z-index: 110 !important;
}

@media (max-width: 992px) {
    .brand-box, .brand-container {
        gap: 45px !important;
    }
    .site-logo, .main-logo {
        transform: scale(1.8) !important;
    }
}
.testimonials-modern {
    padding: 120px 5%;
    background: radial-gradient(circle at center, #162a41 0%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.testi-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.testi-top { text-align: center; margin-bottom: 70px; }
.section-title { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 15px; }
.title-glow-line { width: 80px; height: 4px; background: #3A9BDC; margin: 0 auto 25px; box-shadow: 0 0 15px #3A9BDC; border-radius: 10px; }
.section-subtitle { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.testi-flex-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.opinion-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpPure 1s forwards ease;
}
.opinion-card:nth-child(1) { animation-delay: 0.2s; }
.opinion-card:nth-child(2) { animation-delay: 0.4s; }
.opinion-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUpPure {
    to { opacity: 1; transform: translateY(0); }
}

.opinion-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: #3A9BDC;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.top-accent {
    position: absolute; top: 0; right: 0; width: 100px; height: 100px;
    background: radial-gradient(circle at top right, rgba(58, 155, 220, 0.2), transparent);
    border-radius: 0 40px 0 100%;
}

.stars-row { color: #f1c40f; margin-bottom: 25px; font-size: 1rem; }
.stars-row i { margin-left: 5px; filter: drop-shadow(0 0 5px rgba(241, 196, 15, 0.4)); }

.opinion-msg {
    font-size: 1.15rem; color: #eee; line-height: 1.9;
    font-style: italic; margin-bottom: 30px; position: relative;
}

.client-name {
    font-size: 1.3rem; color: #3A9BDC; font-weight: 900;
    padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .opinion-card { max-width: 100%; }
}
h1, .hero-title, .main-title {
    font-size: 2.8rem !important;
}

h2, .section-title, .amiri-title, .amiri-why-title, .amiri-contact-title, .amiri-section-title {
    font-size: 2.2rem !important;
}

h3, .s-title-amiri, .blog-title-amiri, .amiri-card-title, .amiri-mag-title {
    font-size: 1.6rem !important;
}

@media (max-width: 768px) {
    h1, .hero-title, .main-title {
        font-size: 1.8rem !important;
    }
    h2, .section-title, .amiri-title, .amiri-why-title, .amiri-contact-title {
        font-size: 1.5rem !important;
    }
    h3, .s-title-amiri, .blog-title-amiri {
        font-size: 1.3rem !important;
    }
}
.main-name, .brand-name {
    font-size: 1.2rem !important;
}

.sub-tagline, .brand-services, .brand-sub {
    font-size: 0.65rem !important;
}

@media (max-width: 768px) {
    .main-name, .brand-name {
        font-size: 1rem !important;
    }
    .sub-tagline, .brand-services, .brand-sub {
        font-size: 0.55rem !important;
    }
}
.s-image-box {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    position: relative;
    border-radius: 40px 40px 0 0;
}

.s-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.mega-card:hover .s-image-box img {
    transform: scale(1.15); 
}
.s-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
    z-index: 1;
}

.card-inner {
    padding: 0 !important;
    background: #fff;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.card-front {
    padding: 35px 40px 45px 40px; 
}

.s-title-amiri {
    font-size: 1.8rem !important; 
    margin-bottom: 20px !important;
}
@media (max-width: 768px) {
    .s-image-box { height: 180px; }
    .card-front { padding: 25px 20px 30px 20px; }
}
@media (max-width: 768px) {
    .ultra-luxury-services {
        padding: 60px 15px !important;
    }

    .services-3d-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .mega-card {
        width: 100% !important;
    }

    .card-inner {
        border-radius: 25px !important;
    }

    .s-image-box {
        height: 160px !important;
        border-radius: 25px 25px 0 0 !important;
    }

    .card-front {
        padding: 20px 15px 25px 15px !important;
    }

    .s-title-amiri {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }

    .s-detailed-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        min-height: auto !important;
        margin-bottom: 15px !important;
    }

    .testimonials-modern {
        padding: 60px 15px !important;
    }

    .testi-flex-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .opinion-card {
        padding: 30px 20px !important;
        border-radius: 25px !important;
        max-width: 100% !important;
    }

    .opinion-msg {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .client-name {
        font-size: 1.1rem !important;
        padding-top: 15px !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }
}