@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

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

:root {
    --primary-orange: #FF6B3D;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #2d2d2d;
    --text-gray: #666666;
}

.bred {
    border: 2px solid red;
}

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

.navbar {
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.get-quote-btn {
    border: 2px solid var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.get-quote-btn:hover {
    background-color: var(--text-dark);
    color: white !important;
}

.hero-section {
    padding: 150px 0 300px;
    background-image: url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform: scaleX(-1);
}

.hero-section .contentx {
    margin-top: 170px;
}

.hero-content {
    transform: scaleX(-1) !important;
}

.hero-decoration-left {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: repeating-radial-gradient(circle at center, transparent 0, transparent 10px, rgba(255,107,61,0.05) 10px, rgba(255,107,61,0.05) 20px);
    border-radius: 50%;
}

.hero-subtitle {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.btn-get-started {
    background-color: var(--primary-orange);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-get-started:hover {
    background-color: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,61,0.3);
}

.hero-images {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 500px;
    margin-left: auto;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
}

.grid-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.grid-item-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.grid-item-2 {
    grid-column: 3;
    grid-row: 1;
}

.grid-item-3 {
    grid-column: 3;
    grid-row: 2;
}

.grid-item-4 {
    grid-column: 1;
    grid-row: 3;
}

.grid-item-5 {
    grid-column: 2 / 4;
    grid-row: 3;
}

.icon-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}

.orange-box {
    background-color: var(--primary-orange);
}

.black-box {
    background-color: var(--dark-bg);
}

.icon-box i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.partners-section {
    padding: 60px 0;
    background-color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo i {
    font-size: 1.5rem;
    margin-right: 5px;
}

.features-section {
    padding: 100px 0;
    background-color: white;
}

.features-box {
    background-color: var(--dark-bg);
    padding: 60px;
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.innovative-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-decoration-right {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: repeating-radial-gradient(circle at center, transparent 0, transparent 10px, rgba(255,107,61,0.05) 10px, rgba(255,107,61,0.05) 20px);
    border-radius: 50%;
}

.section-decoration-left {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: repeating-radial-gradient(circle at center, transparent 0, transparent 10px, rgba(255,107,61,0.05) 10px, rgba(255,107,61,0.05) 20px);
    border-radius: 50%;
}

.innovative-image-wrapper {
    position: relative;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

.innovative-content {
    padding-left: 40px;
}

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

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.check-list i {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 1.1rem;
}

.metrics-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.metrics-content {
    padding-right: 40px;
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

.metrics-list {
    list-style: none;
    padding: 0;
}

.metrics-list li {
    padding: 1rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.metrics-list i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.metrics-image-wrapper {
    position: relative;
}

.creators-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 15px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.creators-avatars {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.creators-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.image-decoration-orange {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

.engagement-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.engagement-image-wrapper {
    position: relative;
}

.design-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--dark-bg);
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.design-badge i {
    font-size: 2rem;
}

.image-decoration-orange-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

.engagement-content {
    padding-left: 40px;
}

.services-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

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

.service-card-orange {
    background-color: var(--primary-orange);
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-orange .service-title,
.service-card-orange .service-description {
    color: white;
}

.service-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--dark-bg);
}

.video-wrapper img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-left: 5px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.blog-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.blog-filter {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin-bottom: 3rem;
}

.blog-filter li {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s;
}

.blog-filter li.active,
.blog-filter li:hover {
    color: var(--primary-orange);
}

.blog-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.blog-meta {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #e55a2e;
}

.btn-load-more {
    background-color: var(--primary-orange);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background-color: #e55a2e;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.testimonial-image-wrapper {
    position: relative;
}

.image-decoration-orange-testimonial {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255,107,61,0.3);
    transition: all 0.3s;
}

.floating-btn:hover {
    background-color: #e55a2e;
    transform: translateY(-3px);
    color: white;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #e55a2e;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .innovative-content,
    .engagement-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .metrics-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-grid {
        max-width: 100%;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-box {
        padding: 40px 20px;
    }
    
    .blog-filter {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Portfolio */
.card {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.elevator-photo {
    position: relative;
    width: 100%;
    height: 460px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.elevator-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/Lifts/1.jpg') center/cover;
    z-index: 999;
}

.circle-avatar-img {
    width: 50px;
    height: 50px;
    background-color: #F96739;
    border-radius: 50px;
}

.testimonials-slider-section {
    padding: 100px 0 300px 0;
    background-color: white;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 0 15px;
}

.stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: right;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--text-gray);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-orange);
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev {
    right: -50px;
    left: auto;
}

.slick-next {
    left: -50px;
    right: auto;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
    color: var(--text-dark);
}

.newsletter-section {
    background-color: transparent;
    position: absolute;
    top: -240px;
    left: 0;
    width: 100%;
}

.cta-text {
    text-align: start;
    padding: 0 40px;
}

.cta {
    height:240px;
}


.cta-btns img {
    width: 200px;
}

.newsletter-box img.mockx {
    position: absolute;
    top: -120px;
    right: 50px;
    width: 300px;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55a2e 100%);
    padding: 60px;
    height: 330px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255,107,61,0.3);
    position: relative;
}

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    padding: 15px 40px;
    background-color: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.footer-section {
    background-color: var(--dark-bg);
    padding: 120px 0 30px;
    color: white;
    position:relative;
}

.footer-widget {
    margin-bottom: 30px;
}

.logo-footer {
    height: 40px;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

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

.social-link:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

@media (max-width: 768px) {
    .newsletter-box {
        padding: 40px 30px;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-btn {
        border-radius: 8px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .slick-prev {
        right: auto;
        left: 10px;
    }
    
    .slick-next {
        left: auto;
        right: 10px;
    }
}

