﻿:root {
    /* Primary Ocean Blue Colors */
    --color-primary-dark: #0a3a52;
    --color-primary: #0d5a8a;
    --color-primary-light: #1e7db8;
    --color-primary-lighter: #2b9fd9;
    --color-accent-blue: #00a8e8;
    --color-sky-blue: #00d4ff;
    /* Secondary Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-light-gray: #f8fafc;
    --color-gray: #e2e8f0;
    --color-dark-gray: #64748b;
    --color-text-dark: #1e293b;
    --color-text-light: #475569;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a3a52 0%, #0d5a8a 50%, #1e7db8 100%);
    --gradient-accent: linear-gradient(135deg, #1e7db8 0%, #2b9fd9 50%, #00a8e8 100%);
    --gradient-light: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ============================================
   2. GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition-base);
}

    a:hover {
        color: var(--color-accent-blue);
    }

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */

.header {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDownHeader 0.5s ease-out;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.topbar {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    font-size: 0.875rem;
}

    .topbar a {
        color: var(--color-white);
    }

        .topbar a:hover {
            color: var(--color-sky-blue);
        }

.branding {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-base);
    display: flex;
  align-items: center;
}

    .logo:hover {
        transform: scale(1.05);
    }

.navmenu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    flex-direction : row;
}

    .navmenu a {
        font-weight: 500;
        position: relative;
        color: var(--color-text-dark);
        transition: color var(--transition-base);
    }

        .navmenu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-accent);
            transition: width var(--transition-base);
        }

        .navmenu a:hover::after,
        .navmenu a.active::after {
            width: 100%;
        }

        .navmenu a:hover {
            color: var(--color-primary-light);
        }

    /* NAV MENU FIX */
    .navmenu ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-xl);
        list-style: none;
        margin: 0;
        padding: 0;
    }
/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* ============================================
   5. HERO SECTION
   ============================================ */

.hero {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ============================================
   6. BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:active::before {
        width: 300px;
        height: 300px;
    }

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
    }

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

    .btn-secondary:hover {
        background: var(--color-light-gray);
        transform: translateY(-3px);
    }

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

/* ============================================
   7. CARDS & CONTAINERS
   ============================================ */

.card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray);
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

.card-header {
    background: var(--gradient-light);
    padding: var(--spacing-xl);
    border-bottom: 2px solid var(--color-gray);
}

.card-body {
    padding: var(--spacing-xl);
}

.card-footer {
    background: var(--color-light-gray);
    padding: var(--spacing-lg);
    border-top: 1px solid var(--color-gray);
}

/* ============================================
   8. SERVICE CARD
   ============================================ */

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray);
    position: relative;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-base);
        z-index: 1;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
    }

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--color-light-gray);
    position: relative;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-slow);
    }

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(1deg);
}

.service-body {
    padding: var(--spacing-xl);
}

    .service-body h3 {
        color: var(--color-primary);
        margin-bottom: var(--spacing-md);
        font-size: 1.5rem;
    }

    .service-body p {
        color: var(--color-text-light);
        line-height: 1.8;
    }

/* ============================================
   9. FEATURE LIST
   ============================================ */

.feature-list {
    list-style: none;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: var(--spacing-lg);
        animation: slideInLeft 0.6s ease-out;
    }

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.feature-list i {
    color: var(--color-success);
    font-size: 1.5rem;
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.feature-list span {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   10. SECTIONS
   ============================================ */

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.section-title span {
    display: block;
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--color-light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

    .about-image img {
        width: 100%;
        height: auto;
        transition: transform var(--transition-slow);
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

/* Services Section */
.services {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Call to Action Section */
.call-to-action {
    background: var(--gradient-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

    .call-to-action::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .call-to-action img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

.call-to-action-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.call-to-action h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
}

.call-to-action p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: var(--color-sky-blue);
    color: var(--color-primary-dark);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
        background: var(--color-white);
    }

/* Contact Section */
.contact {
    background: var(--color-light-gray);
}

.info-item {
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
}

    .info-item:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-top: 3px solid var(--color-accent-blue);
    }

    .info-item i {
        font-size: 2.5rem;
        color: var(--color-accent-blue);
        margin-bottom: var(--spacing-lg);
    }

    .info-item h3 {
        color: var(--color-primary);
        margin-bottom: var(--spacing-md);
    }

    .info-item p {
        color: var(--color-text-light);
    }

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--color-gray);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: inherit;
}

    .form-control:focus {
        outline: none;
        border-color: var(--color-accent-blue);
        box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
    }

    .form-control::placeholder {
        color: var(--color-dark-gray);
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   11. FOOTER
   ============================================ */

footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h4 {
    color: var(--color-sky-blue);
    margin-bottom: var(--spacing-lg);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.footer-links h4 {
    color: var(--color-sky-blue);
    margin-bottom: var(--spacing-lg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

    .footer-links a:hover {
        color: var(--color-sky-blue);
        padding-right: var(--spacing-sm);
    }

.social-links {
    display: flex;
    gap: var(--spacing-lg);
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--color-white);
        transition: all var(--transition-base);
    }

        .social-links a:hover {
            background: var(--color-accent-blue);
            transform: translateY(-3px);
        }

.footer-copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   12. SCROLL TOP BUTTON
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

/* ============================================
   13. ANIMATIONS & EFFECTS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   14. UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 {
    margin-top: var(--spacing-md);
}

.mt-2 {
    margin-top: var(--spacing-lg);
}

.mt-3 {
    margin-top: var(--spacing-xl);
}

.mt-4 {
    margin-top: var(--spacing-2xl);
}

.mb-1 {
    margin-bottom: var(--spacing-md);
}

.mb-2 {
    margin-bottom: var(--spacing-lg);
}

.mb-3 {
    margin-bottom: var(--spacing-xl);
}

.mb-4 {
    margin-bottom: var(--spacing-2xl);
}

.pt-1 {
    padding-top: var(--spacing-md);
}

.pt-2 {
    padding-top: var(--spacing-lg);
}

.pt-3 {
    padding-top: var(--spacing-xl);
}

.pb-1 {
    padding-bottom: var(--spacing-md);
}

.pb-2 {
    padding-bottom: var(--spacing-lg);
}

.pb-3 {
    padding-bottom: var(--spacing-xl);
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: var(--spacing-md);
}

.gap-2 {
    gap: var(--spacing-lg);
}

.gap-3 {
    gap: var(--spacing-xl);
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.rounded {
    border-radius: var(--radius-lg);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ============================================
   15. RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 4rem 0;
        min-height: 400px;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }


    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

}

/* Mobile Phones */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero {
        padding: 3rem 0;
        min-height: 300px;
    }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 0.95rem;
        }

    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.875rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    section {
        padding: 2rem 0;
    }

    .call-to-action h3 {
        font-size: 1.75rem;
    }

    .call-to-action p {
        font-size: 0.95rem;
    }

    .info-item {
        padding: var(--spacing-lg);
    }

    .footer-top {
        gap: 1.5rem;
    }
}

/* ============================================
   16. DARK MODE SUPPORT (Optional)
   ============================================ */

@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f172a;
        color: #e2e8f0;
    }

    .card,
    .service-card,
    .info-item,
    .contact-form {
        background-color: #1e293b;
        border-color: #334155;
    }

    .form-control {
        background-color: #1e293b;
        border-color: #334155;
        color: #e2e8f0;
    }

        .form-control:focus {
            border-color: var(--color-accent-blue);
        }

    .section-title p {
        color: #cbd5e1;
    }

    p {
        color: #cbd5e1;
    }
}

/* ============================================
   17. PRINT STYLES
   ============================================ */

@media print {
    .header,
    .footer,
    .scroll-top {
        display: none;
    }

    body {
        background: white;
    }

    .card,
    .service-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}






/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About Index  */
/*   About Index  */
/**/





* {
    font-family: 'Cairo', 'Poppins', sans-serif;
}

.page-header {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 100px;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

    .breadcrumb a {
        color: var(--color-sky-blue);
    }

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision-box, .mission-box {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--color-accent-blue);
    transition: all var(--transition-base);
}

    .vision-box:hover, .mission-box:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

    .vision-box h3, .mission-box h3 {
        color: var(--color-primary);
        margin-bottom: 1.5rem;
        font-size: 1.75rem;
    }

    .vision-box i, .mission-box i {
        font-size: 3rem;
        color: var(--color-accent-blue);
        margin-bottom: 1rem;
        display: block;
    }

    .vision-box p, .mission-box p {
        line-height: 1.9;
        color: var(--color-text-light);
    }

.timeline {
    position: relative;
    padding: 2rem 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: var(--gradient-accent);
    }

.timeline-item {
    margin-bottom: 3rem;
    width: 45%;
}

    .timeline-item:nth-child(odd) {
        margin-left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        margin-left: 55%;
    }

.timeline-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid var(--color-white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-right: 15px solid var(--color-white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-accent-blue);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
}

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.team-member-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
}

.team-member-info {
    padding: 2rem;
}

    .team-member-info h4 {
        color: var(--color-primary);
        margin-bottom: 0.5rem;
    }

    .team-member-info p {
        color: var(--color-text-light);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

.team-member-role {
    display: inline-block;
    background: var(--gradient-light);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border-left: 4px solid var(--color-accent-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
        margin-top: 80px;
    }

        .page-header h1 {
            font-size: 1.75rem;
        }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 60px;
        text-align: right;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





















/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About Index  */
/*   About Index  */
/**/



















* {
    font-family: 'Cairo', 'Poppins', sans-serif;
}

.page-header {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 0px;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

    .breadcrumb a {
        color: var(--color-sky-blue);
    }

.service-detail-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

    .service-detail-card:hover {
        box-shadow: var(--shadow-xl);
    }

    .service-detail-card:nth-child(even) {
        direction: rtl;
    }

        .service-detail-card:nth-child(even) .service-detail-image {
            order: 2;
        }

        .service-detail-card:nth-child(even) .service-detail-content {
            order: 1;
        }

.service-detail-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.service-detail-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-detail-content h3 {
        color: var(--color-primary);
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .service-detail-content p {
        color: var(--color-text-light);
        line-height: 1.9;
        margin-bottom: 1.5rem;
    }

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .service-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .service-features i {
        color: var(--color-success);
        font-size: 1.25rem;
        margin-left: 1rem;
        flex-shrink: 0;
    }

    .service-features span {
        color: var(--color-text-light);
    }

.service-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

    .service-cta:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--color-gray);
    transition: all var(--transition-base);
    position: relative;
}

    .pricing-card:hover {
        border-color: var(--color-accent-blue);
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

    .pricing-card.featured {
        border-color: var(--color-accent-blue);
        background: var(--gradient-light);
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            content: 'الأكثر شهرة';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-accent);
            color: var(--color-white);
            padding: 0.5rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
        }

.pricing-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: right;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: var(--color-text-light);
    }

    .pricing-features i {
        color: var(--color-success);
        margin-left: 1rem;
        font-size: 1.25rem;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border-top: 4px solid var(--color-accent-blue);
}

    .process-step:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--gradient-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

    .faq-question:hover {
        background: var(--color-light-gray);
    }

    .faq-question h4 {
        color: var(--color-primary);
        margin: 0;
        flex: 1;
    }

.faq-icon {
    color: var(--color-accent-blue);
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
        margin-top: 80px;
    }

        .page-header h1 {
            font-size: 1.75rem;
        }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        min-height: 250px;
        font-size: 4rem;
    }

    .service-detail-content {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }



}
















/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About Index  */
/*   About Index  */
/**/

























* {
    font-family: 'Cairo', 'Poppins', sans-serif;
}

.page-header {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 0px;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

    .breadcrumb a {
        color: var(--color-sky-blue);
    }

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-left: 5px solid var(--color-accent-blue);
    position: relative;
    overflow: hidden;
}

    .advantage-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: var(--gradient-light);
        border-radius: 50%;
        opacity: 0.3;
        transform: translate(30%, -30%);
    }

    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.advantage-icon {
    font-size: 3rem;
    color: var(--color-accent-blue);
    margin-bottom: 1rem;
    display: inline-block;
}

.advantage-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.advantage-card p {
    color: var(--color-text-light);
    line-height: 1.8;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .comparison-table thead {
        background: var(--gradient-primary);
        color: var(--color-white);
    }

    .comparison-table th {
        padding: 1.5rem;
        text-align: right;
        font-weight: 600;
    }

    .comparison-table td {
        padding: 1.5rem;
        border-bottom: 1px solid var(--color-gray);
    }

    .comparison-table tbody tr:hover {
        background: var(--color-light-gray);
    }

    .comparison-table tbody tr:last-child td {
        border-bottom: none;
    }

.check-icon {
    color: var(--color-success);
    font-size: 1.5rem;
    font-weight: bold;
}

.cross-icon {
    color: var(--color-danger);
    font-size: 1.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-top: 4px solid var(--color-accent-blue);
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-left: 1rem;
}

.testimonial-name {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--color-text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: var(--color-warning);
    font-size: 1.25rem;
}

.highlight-box {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 5px solid var(--color-accent-blue);
    margin: 2rem 0;
}

    .highlight-box h4 {
        color: var(--color-primary);
        margin-bottom: 1rem;
    }

    .highlight-box p {
        color: var(--color-text-light);
        line-height: 1.8;
    }

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

    .certificate-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.certificate-icon {
    font-size: 3rem;
    color: var(--color-accent-blue);
    margin-bottom: 1rem;
}

.certificate-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.certificate-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
        margin-top: 0px;
    }

        .page-header h1 {
            font-size: 1.75rem;
        }

    .comparison-table {
        font-size: 0.9rem;
    }

        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
        }

    .advantage-grid,
    .testimonial-grid,
    .certificate-grid {
        grid-template-columns: 1fr;
    }
}

/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About      ===================================================================================================================================== Index  */
/*   About Index  */
/*   About Index  */
/**/




@media (max-width: 768px) {

    .navmenu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        display:flex;
        justify-content:center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

        .navmenu ul {
            flex-direction: column;
            align-items: center; /* 👈 هذا المهم */
            gap: 0;
        }

        .navmenu a {
            display: block;
            padding: 1rem;
            text-align: center; /* 👈 مهم */
            border-radius: 8px;
            border-bottom: 1px solid var(--color-gray);
        }

        /* الحالة المفتوحة */
        .navmenu.active {
            max-height: 400px;
            opacity: 1;
            transform: translateY(0);
        }

    .mobile-nav-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
    }
}