/* 
    REFINED: Elite Corporate Typography & Visual System
    Headings: Poppins SemiBold (Letter-spacing: 0.5px)
    Body: Inter (Regular, 1.8 Line-height)
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

:root {
    --primary-blue: #004080;
    --secondary-orange: #F97316;
    --text-dark: #0F172A;
    --text-light: #475569;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --container-width: 1200px;
    --transition-premium: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    /* Layered Elite Shadow */
    --shadow-executive: 0 4px 6px -1px rgba(0, 64, 128, 0.05), 0 2px 4px -1px rgba(0, 64, 128, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.25;
    letter-spacing: 0.5px;
}

h1 { font-size: 52px; }
h2 { font-size: 38px; }
h3 { font-size: 24px; }

@media (max-width: 768px) {
    h1 { font-size: 34px; }
    h2 { font-size: 30px; }
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.max-width-750 {
    max-width: 750px;
}

/* --- Page Hero (Standardized Top Banner) --- */
.page-hero {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 120px 0 100px 0; /* Increased padding for professional look */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.95) 0%, rgba(0, 31, 63, 0.98) 100%);
    z-index: 0;
}

.page-hero .section-container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white) !important;
    font-size: clamp(42px, 5vw, 64px); /* Bigger, professional title */
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-hero .section-intro {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 20px; /* Larger subtitle */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Hero Section - FIXED --- */
.hero {
    background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-content h1 {
    color: #ffffff !important;
    font-size: 52px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 auto 3rem auto;
    max-width: 750px;
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 34px; }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* REFINED: Enterprise Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-premium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--secondary-orange);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    background-color: #EA580C;
}

/* PROJECT SIMPLIFIED */
.project-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.project-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.project-item:last-child {
    border-bottom: none;
}

.project-item h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-blue);
}

.project-item p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--text-light);
}

/* CENTER FIX */
/* Global Content Alignment */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.why-item i {
    color: var(--secondary-orange);
}

section h2 {
    text-align: center !important;
    margin-bottom: 15px;
    width: 100%;
}

.section-intro {
    max-width: 750px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: var(--text-light);
}

/* Global Centering for All Headings & Paragraphs */
h2, h3, h4, p {
    text-align: center !important;
}

.footer-col h4, .footer-col p, .footer-col ul, .footer-col li {
    text-align: center !important;
    justify-content: center !important;
}

.contact-info li {
    justify-content: center !important;
}

/* CENTER FIX: Grid Alignment */
.services-grid, 
.board-grid, 
.process-grid, 
.executive-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    justify-items: center !important;
    align-items: start !important;
    text-align: center !important;
    width: 100%;
    margin-top: 3rem;
}

/* Ensure individual cards are centered */
.service-card, 
.board-card, 
.executive-card, 
.process-step, 
.stat-item {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.executive-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
}

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

/* CENTER FIX: Footer Centering */
footer {
    text-align: center !important;
    padding: 60px 0 20px 0;
    background-color: var(--primary-blue);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col .logo {
    margin: 0 auto 1.5rem auto !important;
    justify-content: center;
    color: var(--white) !important;
}

.footer-col .logo span {
    color: var(--secondary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center !important;
    width: 100%;
}

.footer-bottom p {
    margin: 0 auto !important;
    text-align: center !important;
    width: 100%;
}

/* REFINED: Executive Cards */
.service-card, .board-card, .executive-card {
    border-radius: 10px;
    box-shadow: var(--shadow-executive);
    transition: var(--transition-premium);
}

.service-card:hover, .board-card:hover, .executive-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

p {
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Global Section Layout */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    h1 { font-size: 32px; }
}

/* UPDATED: Premium Text Value Section */
.value-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-section h2 {
    margin-bottom: 2rem;
}

.value-section p {
    margin: 0 auto 1.5rem auto;
}

/* UPDATED: Trust Strip (Stats) */
.trust-strip {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: #E2E8F0;
}

@media (max-width: 768px) {
    .stat-item::after { display: none; }
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-orange);
    font-weight: 600;
}

/* UPDATED: Conversion CTA */
.conversion-cta {
    background: linear-gradient(135deg, #001F3F 0%, #004080 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.conversion-cta h2 { color: var(--white); margin-bottom: 2rem; }

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .cta-btns { flex-direction: column; }
}

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

/* --- Navigation - FIXED --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 64, 128, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-full-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4rem; /* Full width feel with comfortable padding */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-right: auto;
    /* Brand Protection: Force LTR for name */
    direction: ltr !important;
    unicode-bidi: embed !important;
}

.mobile-menu-btn {
    display: none; /* Hidden on desktop */
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    margin-left: 2rem;
    order: 2;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem; /* Increased space between logo/nav and other elements */
}

.nav-links {
    display: flex;
    gap: 2rem; /* Professional spacing for nav links */
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--white);
}

.logo span {
    color: var(--secondary-orange);
}

.lang-selector select {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #D1D5DB;
    background: var(--bg-light);
    font-family: inherit;
    cursor: pointer;
}

.nav-links a {
    position: relative;
    padding-bottom: 5px;
    color: var(--text-dark) !important;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: var(--transition-premium);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Global Content Visibility Fix */
section, .section-padding {
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

.board-section {
    background-color: var(--bg-light);
}

/* Ensure all headings and paragraphs are visible by default */
h1, h2, h3, h4, p, span, li, i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Only apply animation opacity if triggered */
.js-enabled .fade-up, 
.js-enabled .slide-left, 
.js-enabled .slide-right, 
.js-enabled .zoom-in {
    opacity: 0 !important; /* Reset to 0 initially if JS is working */
}

.js-enabled .animate-in {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
    visibility: visible !important;
}

/* --- Floating WhatsApp --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Impact Stats --- */
.impact-stats {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-content: center; /* Center the grid items */
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.03);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 64, 128, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Contact Action Buttons --- */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.action-btn i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.btn-call { background-color: var(--secondary-orange); color: white; }
.btn-wa { background-color: #25D366; color: white; }
.btn-email { border: 2px solid var(--primary-blue); color: var(--primary-blue); }

.action-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- RTL Support --- */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .logo {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .logo img {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .mobile-menu-btn {
    margin-left: 0;
    margin-right: 2rem;
    order: -1;
}

[dir="rtl"] .floating-wa {
    right: auto;
    left: 30px;
}

[dir="rtl"] .nav-links.active {
    text-align: right;
}

[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .stat-item:not(:last-child)::after {
    right: auto;
    left: -1rem;
}

/* --- LTR Overrides for Numbers, Emails, URLs --- */
.phone-number,
.email,
.url,
.number,
.stat-number {
    direction: ltr !important;
    unicode-bidi: embed !important;
    display: inline-block;
}

/* Animations Fallback - FIXED */
.fade-up, .slide-left, .slide-right, .zoom-in, .power-section {
    opacity: 1; /* Default to visible */
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only hide if JS is active and observer is working */
.js-enabled .fade-up { opacity: 0; transform: translateY(40px); }
.js-enabled .slide-left { opacity: 0; transform: translateX(-40px); }
.js-enabled .slide-right { opacity: 0; transform: translateX(40px); }
.js-enabled .zoom-in { opacity: 0; transform: scale(0.95); }

.animate-in {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* --- Design Polish --- */
.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), #EA580C);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #EA580C, var(--secondary-orange));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(0, 64, 128, 0.02);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 64, 128, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-orange);
    color: var(--secondary-orange);
}

.btn-outline:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
}

/* --- Executive & Board Leadership --- */
.executive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.executive-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 64, 128, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid transparent;
}

.chairman-card {
    border-top-color: var(--primary-blue);
}

.ceo-card.highlighted-card {
    background: #f0f7ff;
    transform: scale(1.05);
    border-top-color: var(--secondary-orange);
    box-shadow: 0 20px 50px rgba(0, 64, 128, 0.1);
}

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

.executive-img-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.executive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.executive-card:hover .executive-img {
    transform: scale(1.1);
}

.executive-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.role-text {
    color: var(--secondary-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.description-text, .message-text {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

.ceo-message-box {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--secondary-orange);
    opacity: 0.3;
    margin-bottom: 10px;
}

/* Board Section */
.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.board-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 64, 128, 0.04);
    text-align: center;
    transition: all 0.4s ease;
}

.board-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 64, 128, 0.08);
}

.board-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #f8faff;
    box-shadow: var(--shadow);
}

.board-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .executive-grid { grid-template-columns: 1fr; gap: 2rem; }
    .ceo-card.highlighted-card { transform: scale(1); }
    .board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .board-grid { grid-template-columns: 1fr; }
}

/* 
    Premium Section Styling
*/
.board-section {
    background-color: var(--bg-light);
}

.learn-more-link {
    color: var(--secondary-orange);
    font-weight: 600;
    margin-top: 1.5rem;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.learn-more-link:hover {
    letter-spacing: 1px;
    color: var(--primary-blue);
}

/* Animations */
.animate-in {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* SAFE ANIMATION SYSTEM */

.fade-up,
.slide-left,
.slide-right,
.zoom-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.js-enabled .slide-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-enabled .slide-right {
    opacity: 0;
    transform: translateX(40px);
}

.js-enabled .zoom-in {
    opacity: 0;
    transform: scale(0.95);
}

.animate-in {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Stagger Children Base State */
/* FIX: Only hide if JS animation system is active */
.js-enabled .board-card,
.js-enabled .service-card,
.js-enabled .stat-item {
    opacity: 1;
    transform: translateY(20px);
}

.board-card,
.service-card,
.stat-item {
    opacity: 5;
    transform: none;
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* --- Why Choose Us --- */
.why-choose {
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.why-item i {
    color: var(--secondary-orange);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* --- Work Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-orange);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    margin-bottom: 1rem;
    justify-content: center;
    gap: 1rem;
}

.contact-info i {
    color: var(--secondary-orange);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .header-full-width {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none; /* Hide for mobile toggle JS */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation for mobile when active */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-img {
    height: 200px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-info {
    padding: 1.5rem;
}

/* Timeline (About Page) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--white);
    border: 4px solid var(--secondary-orange);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }

.right::after { left: -16px; }

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 18px; }
    .right { left: 0%; }
}
