/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');
:root {
    --primary-color: #0056b3;
    --secondary-color: #004085;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
}

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

        :root {
            --primary-red: #da2026;
            --primary-blue: #234195;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f7fafc;
            --white: #ffffff;
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.12);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 60px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-red);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary-red), #ff3b41);
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(218, 32, 38, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(218, 32, 38, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            margin-top: 92px;
            height: calc(100vh - 92px);
            position: relative;
            overflow: hidden;
        }

        .hero-swiper {
            width: 100%;
            height: 100%;
        }

        .hero .swiper-slide {
            position: relative;
        }

        .hero .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
            z-index: 2;
            max-width: 600px;
            color: white;
            text-align: right;
            padding: 2rem;
        }

        .hero-text {
            flex: 1;
            color: white;
            animation: fadeInRight 1s ease;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-text .highlight {
            color: var(--primary-red);
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-red);
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .btn-primary {
            background: var(--primary-red);
            color: white;
            padding: 1rem 2.5rem;
            outline: none;
            border:none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(218, 32, 38, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(218, 32, 38, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border: 2px solid white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

        .hero-swiper {
            width: 100%;
            height: 100%;
        }

        .hero-swiper .swiper-slide {
            position: relative;
        }

        .hero-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-swiper .swiper-button-next,
        .hero-swiper .swiper-button-prev {
            color: white;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .hero-swiper .swiper-button-next:hover,
        .hero-swiper .swiper-button-prev:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }

        .hero-swiper .swiper-button-next:after,
        .hero-swiper .swiper-button-prev:after {
            font-size: 20px;
        }

        .hero-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .hero-swiper .swiper-pagination-bullet-active {
            background: var(--primary-red);
            opacity: 1;
            width: 30px;
            border-radius: 6px;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            right: 15%;
            transform: translate(50px, -50%);
            z-index: 2;
            max-width: 600px;
            color: white;
            text-align: right;
            opacity: 0;
            transition: all 0.8s ease;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .slide-content .highlight {
            color: var(--primary-red);
        }

        .slide-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        @media (max-width: 968px) {
            .slide-content {
                right: 10%;
                transform: translate(50%, -50%);
                text-align: center;
                padding: 0 2rem;
            }
            
            .slide-content h1 {
                font-size: 2.5rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .slide-content {
                width: 90%;
            }
        }

        /* Why Us Section */
        .why-us {
            padding: 5rem 2rem;
            background: var(--bg-light);
        }

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

        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), #ff3b41);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 5px 15px rgba(218, 32, 38, 0.3);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--primary-blue), #1a3275);
            padding: 3rem 2rem;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: all 0.5s ease;
        }

        .service-card:hover::before {
            top: -30%;
            right: -30%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(35, 65, 149, 0.4);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-red);
        }

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

        .service-card p {
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Elevator Types */
        .elevator-types {
            padding: 5rem 2rem;
            background: var(--bg-light);
        }

       .types-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    /* gap: 2rem; */
    max-width: 1200px; 
}


        .type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            max-width: 350px;
        }

        .type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

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

        .type-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        .type-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
            z-index: 1;
        }

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

        .type-content {
            padding: 1.5rem;
            position: relative;
            background: white;
            z-index: 2;
        }

        .type-content h3 {
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .type-content p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Projects Section */
        .projects {
            padding: 5rem 2rem;
            background: white;
        }

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

        .project-card {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .project-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), #ff3b41);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .project-card h3 {
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: var(--primary-blue);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-top: 0.2rem;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-family: 'Cairo', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-red), #ff3b41);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(218, 32, 38, 0.4);
        }

        /* Footer */
        .footer {
            background: #1a202c;
            color: white;
            padding: 4rem 2rem 2rem;
        }

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

        .footer-section h3 {
            color: var(--primary-red);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-logo {
            width: 150px;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

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

        .spec-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-right: 5px solid transparent;
        }
        
        .spec-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-right-color: var(--primary-red);
        }

        .spec-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(218, 32, 38, 0.05), rgba(35, 65, 149, 0.05));
            z-index: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .spec-card:hover::before {
            opacity: 1;
        }

        .spec-card-content {
            position: relative;
            z-index: 1;
        }

        .spec-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            transform: rotate(-10deg);
            transition: transform 0.3s ease;
        }

        .spec-card:hover .spec-icon {
            transform: rotate(0deg);
        }

        .image-gallery {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-top: 4rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .section-divider {
            position: relative;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary-red), transparent);
            margin: 4rem 0;
        }

        .section-divider::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--primary-red);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
        }
        .slider-section {
            padding: 80px 0;
            background: white;
        }

        .slider-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            position: relative;
        }

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

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 2rem;
            color: white;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary-blue);
            transition: all 0.3s;
            z-index: 10;
        }

        .slider-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-btn.prev {
            right: 20px;
        }

        .slider-btn.next {
            left: 20px;
        }

        .slider-dots {
            text-align: center;
            margin-top: 1.5rem;
        }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 6px;
        }

        /* Specifications Cards */
        .specs-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 1.5rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .spec-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            border-right: 4px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .spec-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, var(--primary-red), var(--primary-blue));
            transition: height 0.3s ease;
        }

        .spec-card:hover::before {
            height: 100%;
        }

        .spec-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .spec-number {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(220, 38, 38, 0.05);
        }

        .spec-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            position: relative;
        }

        .spec-card p {
            line-height: 1.9;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
            color: white;
            padding: 3rem 0 1rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

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

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .slide img {
                height: 300px;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Partners Section */
        .partners-section {
            padding: 4rem 0;
            background: var(--bg-light);
            overflow: hidden;
        }

        .partners-slider {
            padding: 2rem 0;
            position: relative;
            max-width: 100%;
        }

        .partners-slider .swiper-button-next,
        .partners-slider .swiper-button-prev {
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }

        .partners-slider .swiper-button-next:hover,
        .partners-slider .swiper-button-prev:hover {
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .partners-slider .swiper-pagination-bullet {
            background: var(--primary-blue);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .partners-slider .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--primary-red);
            transform: scale(1.2);
        }

        .partner-item {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            transition: transform 0.3s ease;
        }

        .partner-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .partner-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* About Page Styles */
        .about-hero {
            margin-top: 92px;
            /* padding: 100px 0; */
        }

        .about-section {
            padding: 80px 0;
            position: relative;
            background: #ffffff;
        }

        .about-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .about-section .section-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .about-section .section-subtitle {
            margin-top: 1.5rem;
            color: var(--text-light);
            font-size: 1.2rem;
        }

        .about-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image-container {
            position: relative;
        }

        .about-image-bg {
            position: absolute;
            top: 20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: var(--primary-red);
            border-radius: 25px;
            z-index: 1;
        }

        .about-image-wrapper {
            position: relative;
            z-index: 2;
        }

        .about-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .about-stats {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 1.5rem 2.5rem;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            display: flex;
            gap: 2rem;
            width: 90%;
        }

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

        .stat-item:first-child {
            border-left: 2px solid var(--primary-red);
            padding: 0 1rem;
        }

        .stat-item:last-child {
            padding: 0 1rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-red);
        }

        .stat-number.blue {
            color: var(--primary-blue);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .content-cards {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding-top: 1rem;
        }

        .content-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(35, 65, 149, 0.05));
            padding: 2rem;
            border-radius: 20px;
            border-right: 5px solid var(--primary-red);
            position: relative;
        }

        .content-card.white {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-right: 5px solid var(--primary-blue);
        }

        .content-card-circle {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            border-radius: 50%;
            opacity: 0.1;
        }

        .content-card-text {
            font-size: 1.15rem;
            color: var(--text-dark);
            line-height: 2;
            margin: 0;
        }

        .feature-icons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 5rem;
            padding-top: 3rem;
            border-top: 2px solid rgba(220, 38, 38, 0.1);
        }

        .feature-icon-item {
            text-align: center;
        }

        .feature-icon-circle {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(35, 65, 149, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--primary-red);
            font-size: 1.8rem;
        }

        .feature-icon-title {
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .feature-icon-text {
            color: var(--text-light);
            font-size: 0.95rem;
        }

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

        .quality-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .quality-icon {
            color: var(--primary-red);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

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

        .value-card {
            text-align: center;
            padding: 2rem;
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .about-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .stat-item:first-child {
                border-left: none;
                border-bottom: 2px solid var(--primary-red);
                padding-bottom: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* FAQ Section Styles */
.faq-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white !important;
    color: var(--primary-blue) !important;
    font-size: 1.1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-red) !important;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    background-color: white;
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.accordion-body ul {
    list-style-type: none;
    padding-left: 0;
}

.accordion-body ul li {
    padding-right: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.accordion-body ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    position: absolute;
    right: 0;
    color: var(--primary-red);
}

/* Certificates Section Styles */
.certificates-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.certificates-swiper {
    padding: 2rem 0;
    position: relative;
}

.certificate-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 400px;
}

.certificate-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.certificates-swiper .swiper-button-next,
.certificates-swiper .swiper-button-prev {
    color: var(--primary-red);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.certificates-swiper .swiper-button-next:after,
.certificates-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.certificates-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    opacity: 0.5;
}

.certificates-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-red);
    transform: scale(1.2);
}

/* Elevator Types Page Styles */
.types-hero {
    margin-top: 92px;
    /* padding: 100px 0; */
    text-align: center;
    color: white;
}

.elevator-types-showcase {
    background: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.type-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.type-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.type-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.type-content {
    padding: 1.5rem;
}

.type-content h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.type-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.details-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.details-link:hover {
    color: var(--primary-blue);
    gap: 0.8rem;
}

.type-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.type-category:hover .category-icon {
    transform: rotate(0deg);
}

.category-header h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.category-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.type-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.type-content {
    padding: 2rem;
    position: relative;
}

.type-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.features-list li {
    padding-right: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.features-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    position: absolute;
    right: 0;
    color: var(--primary-red);
}

.details-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.details-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.details-link:hover::after {
    width: 100%;
}

.contact-cta {
    color: white;
    padding: 5rem 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-cta .btn-primary {
    background: var(--primary-red);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 32, 38, 0.3);
}

@media (max-width: 768px) {
    .category-header h2 {
        font-size: 1.8rem;
    }
    
    .type-image {
        height: 200px;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
}

/* Projects Showcase Styles */
.projects-showcase {
    background: var(--bg-light);
}

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

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.project-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(218, 32, 38, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-category i {
    font-size: 1rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-features span {
    background: var(--bg-light);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-features i {
    color: var(--primary-red);
    font-size: 0.9rem;
}


/* 🔹 قسم أنواع التثبيت */
.installation-types {
  background-color: #f8f9fa;
}

/* نص المقدمة */
.installation-types .intro-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.installation-types .intro-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}

/* ✅ تصميم الجريد */
.installation-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* كل عنصر */
.installation-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.installation-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* الصورة */
.installation-image {
  position: relative;
}

.installation-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.installation-item:hover img {
  transform: scale(1.1);
}

/* الـ Overlay (التأثير عند المرور على الصورة) */
.installation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

.installation-item:hover .installation-overlay {
  opacity: 1;
}

.installation-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.installation-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ✅ المميزات أسفل القسم */
.installation-features {
  margin-top: 60px;
}

.feature-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-item p {
  color: #555;
  line-height: 1.7;
}


@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 200px;
    }
}

/* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
        }


        /* Float Navigation Buttons */
        
.float-nav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 10px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.float-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  color: white;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(26, 115, 232, 0.3);
}

.float-nav-btn:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.5);
}

.float-nav-btn.active {
  background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
  border-color: #fff;
  transform: scale(1.2);
  box-shadow: 0 5px 20px rgba(245, 124, 0, 0.6);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(26, 115, 232, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.6);
  background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
}

.scroll-top-btn.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .float-nav {
    left: 10px;
    padding: 10px 8px;
    gap: 10px;
  }
  
  .float-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .scroll-top-btn {
    left: 10px;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .float-nav {
    left: 5px;
    padding: 8px 6px;
    gap: 8px;
  }
  
  .float-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}