/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* الألوان الأساسية الخاصة بالهيدر الهيكلي */
/* الألوان الأساسية المشتقة من اللوكو */
:root {
    --primary-bg: #000040;     /* الأزرق الداكن الملكي من خلفية اللوكو */
    --accent-color: #00dfff;  /* الأزرق السماوي الساطع من أيقونة اللوكو */
    --white-text: #ffffff;    /* للأبيض الملكي */
    --text-muted: #cbd5e1;    /* رمادي فاتح جداً للنصوص الثانوية */
    --light-bg: #ffffff;       /* للأبيض الملكي */
    --dark-text: #000040;     /* للأزرق الداكن الملكي */
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* تعديل شريط الملاحة Navbar */
.navbar {
    background: rgba(0, 0, 64, 0.9); /* أزرق داكن ملكي شفاف (var(--primary-bg)) */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

/* تنسيق اللوجو */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 45px;          /* يمكن تعديل الارتفاع حسب حجم اللوجو المطلوب */
    width: auto;           /* يضمن الحفاظ على أبعاد اللوجو دون تشويه */
    object-fit: contain;
    display: block;
}
.logo-icon {
    color: var(--accent-color); /* الأزرق السماوي الساطع */
    font-size: 26px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* روابط القائمة */
.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted); /* رمادي فاتح جداً */
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--accent-color); /* الأزرق السماوي الساطع عند التمرير */
}

.nav-links a.active::after {
    background-color: var(--accent-color); /* الأزرق السماوي الساطع للخط السفلي */
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}
.arabic-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--white-text); /* الأبيض */
}

.english-title {
    font-size: 8px;
    letter-spacing: 1px;
    color: var(--text-muted);
}
/* معلومات التواصل بالهيدر */
.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #e2e8f0;
}

.phone-number i {
    color: var(--accent-color); /* الأزرق السماوي الساطع للأيقونة */
    transform: scaleX(-1);
}

.phone-number i {
    color: var(--accent-color);
    transform: scaleX(-1);
}

.engineer-name {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 12px;
    color: #cbd5e1;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color); /* الأزرق السماوي الساطع */
    color: #000040; /* أزرق داكن ملكي للنص ليتضح */
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    padding: 10px 24px;
}

.btn-primary:hover {
    background-color: #00c7e0; /* لون سماوي أغمق قليلاً عند التمرير */
    border-color: #00c7e0;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white-text); /* الأبيض */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    padding: 10px 24px;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white-text);
    color: var(--white-text);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* تعديل قسم الـ Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    background: url('image/hero.png') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: right;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* تدرج شفاف يعكس الأزرق الداكن الملكي (rgba(0, 0, 64, X)) */
    background: linear-gradient(180deg, rgba(0, 0, 64, 0.8) 0%, rgba(0, 0, 64, 0.6) 50%, rgba(0, 0, 64, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    margin-right: 6.5%;
    margin-left: auto;
    text-align: right;
}

.hero-content h1,
.hero-title {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
}
.hero-content h1 span,
.hero-title .highlight {
    color: #e8a72c;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 25px;
}
.hero-overlay {
    display: none;
}
/* الأزرار */
.hero-btns {
    display: flex;
    justify-content: flex-start; /* محاذاة الأزرار مع بداية النص (جهة اليمين) */
    gap: 15px;
}

.hero-title .highlight {
    color: var(--accent-color); /* الأزرق السماوي الساطع */
}
.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.hero-services {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 400;
}
/* Trust Bar Section Styles */
.trust-bar {
    background: #000028; /* لون أزرق أغمق قليلاً من خلفية الهيدر لإبراز التباين */
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 223, 255, 0.15); /* خط سفلي مضيء بلون اللوكو */
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* تأثير التمرير Hover */
.trust-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 223, 255, 0.5);
    box-shadow: 0 10px 30px -10px rgba(0, 223, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

/* دائرة الأيقونة المميزة */
.trust-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(0, 223, 255, 0.1);
    border: 1px solid rgba(0, 223, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
}

.trust-item:hover .trust-icon-wrapper {
    background: #00dfff; /* لون أيقونة اللوكو */
    box-shadow: 0 0 20px rgba(0, 223, 255, 0.6);
}

.trust-item i {
    font-size: 26px;
    color: #00dfff; /* لون الأيقونة */
    transition: color 0.4s ease;
}

.trust-item:hover i {
    color: #000040; /* يتغير الداخلي إلى الأزرق الداكن عند التمرير */
}

.trust-item h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-item p {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Section Titles (العناوين الرئيسية للمقاطع) */
.section-title {
    text-align: center;
    margin: 60px 0 35px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #00dfff, transparent);
    border-radius: 2px;
    margin: 12px auto 0;
}


/* About / Problem & Solution Section */
.about-section {
    background: #000040; /* أزرق داكن من اللوكو */
    padding: 80px 0;
    position: relative;
}

.section-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 8px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Base Card Style */
.about-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

/* Badge Header inside Cards */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Problem Card Customization */
.problem-card {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.03);
    transform: translateY(-5px);
}

.problem-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.problem-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* Solution Card Customization */
.solution-card {
    border: 1px solid rgba(0, 223, 255, 0.3);
    background: rgba(0, 223, 255, 0.04);
    box-shadow: 0 10px 30px -10px rgba(0, 223, 255, 0.15);
}

.solution-card:hover {
    border-color: #00dfff;
    background: rgba(0, 223, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0, 223, 255, 0.3);
}

.solution-badge {
    background: rgba(0, 223, 255, 0.15);
    color: #00dfff;
    border: 1px solid rgba(0, 223, 255, 0.4);
}

.solution-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.card-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Lists formatting */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.comparison-list li i {
    font-size: 16px;
    margin-top: 3px;
}

/* Icons Colors for List */
.problem-list li i {
    color: #f87171;
}

.solution-list li i {
    color: #00dfff; /* أزرق سماوي ساطع */
}

/* Projects Section General */
.projects-section {
    background: #000028;
    padding: 80px 0;
    overflow: hidden; /* لمنع ظهور شريط التمرير الأفقي */
}

/* Swiper Outer Layout */
.projects-slider {
    width: 100%;
    padding: 20px 5px 60px 5px !important;
}

.swiper-wrapper {
    align-items: stretch; /* توحيد ارتفاع جميع البطاقات */
}

/* Slide & Card Formatting */
.projects-slider .swiper-slide {
    height: auto !important;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(0, 223, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 223, 255, 0.15);
}

/* Fixed Image Area */
.project-img {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-img .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 64, 0.85);
    color: #00dfff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 223, 255, 0.3);
}

/* Card Content Area */
.project-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.role-box {
    background: rgba(0, 223, 255, 0.07);
    border-right: 3px solid #00dfff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.project-info .role {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.5;
    margin: 0;
}

.project-info .role strong {
    color: #00dfff;
}

.project-desc {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: auto;
}

/* Controls & Buttons Styling */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    margin: 0 !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(0, 223, 255, 0.1);
    border: 1px solid rgba(0, 223, 255, 0.4);
    border-radius: 50%;
    color: #00dfff !important;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #00dfff;
    color: #000040 !important;
}

.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #00dfff !important;
    width: 20px !important;
    border-radius: 10px !important;
}


/* Why Steel Structure Banner Section */
.steel-promo {
    background: linear-gradient(135deg, #000033 0%, #00001a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 223, 255, 0.15);
    border-bottom: 1px solid rgba(0, 223, 255, 0.15);
}

/* خلفية شبكية هندسية ناعمة */
.steel-promo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 223, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 223, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Grid Layout */
.promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Promo Text Box */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 223, 255, 0.1);
    color: #00dfff;
    border: 1px solid rgba(0, 223, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-text h2 {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.promo-text h2 .glow-span {
    color: #00dfff;
    display: block;
    text-shadow: 0 0 15px rgba(0, 223, 255, 0.4);
}

.promo-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* List Formatting */
.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 500;
}

.promo-list .icon-box {
    width: 38px;
    height: 38px;
    background: rgba(0, 223, 255, 0.12);
    border: 1px solid rgba(0, 223, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00dfff;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Stat Cards Box (الجانب الأيسر) */
.promo-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(-8px);
    border-color: rgba(0, 223, 255, 0.4);
    background: rgba(0, 223, 255, 0.05);
}

.stat-card.highlight-card {
    background: rgba(0, 223, 255, 0.08);
    border-color: rgba(0, 223, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 223, 255, 0.15);
    color: #00dfff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.stat-info p {
    color: #94a3b8;
    font-size: 0.88rem;
    margin: 0;
}

/* Responsive for Mobile & Tablets */
@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-text h2 {
        font-size: 1.6rem;
    }
}

/* General Helpers */
.text-center { text-align: center; }
.badge-tag {
    display: inline-block;
    background: rgba(0, 223, 255, 0.1);
    color: #00dfff;
    border: 1px solid rgba(0, 223, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}
.section-title p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* 1. Services Section */
.services-section {
    background: #000022;
    padding: 80px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: rgba(0, 223, 255, 0.4);
    transform: translateY(-5px);
    background: rgba(0, 223, 255, 0.04);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 223, 255, 0.1);
    color: #00dfff;
    font-size: 1.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: #94a3b8; font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* 2. Process Section */
.process-section {
    background: #000018;
    padding: 80px 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.step-card {
    background: rgba(0, 223, 255, 0.02);
    border: 1px solid rgba(0, 223, 255, 0.15);
    padding: 25px 20px;
    border-radius: 14px;
    position: relative;
}
.step-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(0, 223, 255, 0.25);
    margin-bottom: 10px;
}
.step-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: #94a3b8; font-size: 0.88rem; line-height: 1.5; margin: 0; }

/* 3. Why Choose Us Section */
.why-us-section {
    background: #000028;
    padding: 80px 0;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.why-us-content h2 { color: #fff; font-size: 2rem; margin-bottom: 15px; }
.why-us-content p { color: #cbd5e1; margin-bottom: 30px; }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 15px; align-items: flex-start; }
.feature-item i {
    width: 45px; height: 45px;
    background: rgba(0, 223, 255, 0.1);
    color: #00dfff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.feature-item h4 { color: #fff; margin-bottom: 4px; font-size: 1.05rem; }
.feature-item p { color: #94a3b8; font-size: 0.88rem; margin: 0; }

.glass-banner {
    background: linear-gradient(135deg, rgba(0, 223, 255, 0.1), rgba(0, 0, 40, 0.6));
    border: 1px solid rgba(0, 223, 255, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}
.glass-banner i { font-size: 3rem; color: #00dfff; margin-bottom: 15px; }
.glass-banner h3 { color: #fff; margin-bottom: 10px; }
.glass-banner p { color: #cbd5e1; font-style: italic; margin: 0; }

/* 4. FAQ Section */
.faq-section { background: #000015; padding: 80px 0; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.faq-question i { color: #00dfff; transition: transform 0.3s ease; }
.faq-answer {
    padding: 0 20px 20px 20px;
    display: none;
    color: #94a3b8;
    font-size: 0.93rem;
    line-height: 1.6;
}
.faq-item.active { border-color: rgba(0, 223, 255, 0.4); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

@media (max-width: 992px) {
    .why-us-grid { grid-template-columns: 1fr; }
}
/* Modern Footer Section */
.footer {
    background: linear-gradient(180deg, #00001a 0%, #000010 100%);
    color: #cbd5e1;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(0, 223, 255, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* Column 1: Info */
.footer-logo {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #00dfff;
    text-shadow: 0 0 12px rgba(0, 223, 255, 0.4);
}

.consultant-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 223, 255, 0.08);
    border: 1px solid rgba(0, 223, 255, 0.25);
    padding: 8px 14px;
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.88rem;
    margin-bottom: 15px;
}

.consultant-badge i {
    color: #00dfff;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
}

/* Column 2: Quick Links */
.footer-links h3, 
.footer-contact h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after, 
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: #00dfff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: #00dfff;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #00dfff;
    transform: translateX(-5px);
}

/* Column 3: Contact Details */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 223, 255, 0.1);
    border: 1px solid rgba(0, 223, 255, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00dfff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-text strong {
    color: #ffffff;
    margin-bottom: 2px;
}

.contact-text span {
    color: #94a3b8;
}

/* Highlighted Phone Box */
.phone-highlight {
    background: rgba(0, 223, 255, 0.05);
    border: 1px solid rgba(0, 223, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
}

.phone-link {
    color: #00dfff !important;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    text-shadow: 0 0 10px rgba(0, 223, 255, 0.6);
}

/* Copyright Strip */
.copyright {
    background: #00000a;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; right: 0;
        background: var(--primary-color);
        width: 100%;
        padding: 20px;
    }
    .nav-links.active { display: flex; }
    .nav-btn { display: none; }
    .hero-content h1 { font-size: 1.8rem; }
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.gradient-border-btn {
  position: relative;
  background: #0f172a;
  border-radius: 12px;
  color: #fff;
  z-index: 1;
}

.gradient-border-btn::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #6366f1, #a855f7, #ec4899);
  border-radius: 14px;
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.gradient-border-btn:hover::before {
  opacity: 1;
}
.card-hover {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.3);
}
.hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
#scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, #6366f1, #ec4899);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease-out;
}