  :root {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --accent-color: #457b9d;
            --light-color: #f1faee;
            --dark-color: #1a1a1a;
            --text-color: #333;
            --text-light: #777;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: var(--text-color);
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.5s ease;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        header.hide {
            transform: translateY(-100%);
        }

        header.show {
            transform: translateY(0);
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary-color);
        }

        .navbar {
            display: flex;
            gap: 40px;
        }

        .navbar a {
            position: relative;
            font-size: 18px;
            color: var(--dark-color);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .navbar a:hover {
            color: var(--primary-color);
        }

        .navbar a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .navbar a:hover::before {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-color);
        }

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .swiper {
            width: 100%;
            height: 100vh;
            position: absolute;
            top: 0;
            left: 0;
        }

        .swiper-slide {
            position: relative;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 0 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            animation: fadeInUp 1.4s ease;
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(196, 112, 56, 0.2);
        }

        /* About Section */
        .section {
            padding: 100px 0;
            background-color: rgb(237, 230, 226);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .about-text ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .about-text ul li {
            margin-bottom: 10px;
            position: relative;
        }

        .about-text ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
            margin-right: 10px;
        }

        /* Services Section */
        .services {
            background-color: #f5f7fa;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            color: var(--secondary-color);
        }

        .read-more i {
            margin-left: 5px;
            transition: all 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Works Section */
        .works-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .work-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
        }

        .work-img {
            width: 100%;
            height: 100%;
        }

        .work-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(230, 57, 70, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .work-item:hover .work-overlay {
            opacity: 1;
        }

        .work-item:hover .work-img img {
            transform: scale(1.1);
        }

        .work-overlay h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .work-overlay p {
            color: white;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .work-item:hover .work-overlay h3,
        .work-item:hover .work-overlay p {
            transform: translateY(0);
        }

        /* elevators -----------------------------------------------------------------------------*/

         .slider-container {
            width: 100%;
            max-width: 1200px;
            padding: 40px 20px;
            position: relative;
            margin: auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #777;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
            align-items: center;
        }

        .slide {
            min-width: 300px;
            height: 200px;
            margin: 0 15px;
            transition: all 0.5s ease;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
            /* gap: 20px; */
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slide.active {
            transform: scale(1.2);
            z-index: 2;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-content h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .slide-content p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .slider-nav {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: #e63946;
            transform: scale(1.2);
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.7);
            color: #333;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .slider-btn:hover {
            background: #e63946;
            color: white;
            transform: scale(1.1);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .slider-wrapper {
                height: 250px;
            }
            
            .slide {
                min-width: 250px;
                height: 180px;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .slider-wrapper {
                height: 200px;
            }
            
            .slide {
                min-width: 200px;
                height: 150px;
                margin: 0 10px;
            }
            
            .slide-content {
                padding: 15px;
            }
            
            .slide-content h3 {
                font-size: 1rem;
            }
            
            .slide-content p {
                font-size: 0.8rem;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }


       
      
        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 70px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: white;
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            header {
                padding: 20px 50px;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .about-content {
                flex-direction: column;
            }

            .about-img {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 30px;
            }

            .menu-toggle {
                display: block;
            }

            .navbar {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: all 0.5s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .navbar.active {
                left: 0;
            }

            .navbar a {
                font-size: 1.2rem;
                padding: 10px 0;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .section {
                padding: 70px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            header {
                padding: 15px 20px;
            }

            .logo {
                font-size: 24px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 25px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .testimonial-card {
                padding: 20px;
                margin: 10px;
            }

            .map-container {
                height: 300px;
            }
        }


        /* whatsapp --------------------------------------------------------------------------*/

         /* WhatsApp Button Styles */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #049c3c;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* Popup Form Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
            justify-content: center;
            align-items: center;
        }
        
        .popup-form {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.3s;
        }
        
        .form-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .form-header h3 {
            margin: 0;
            color: #060b08;
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #777;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input, 
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .submit-btn {
            background-color: #d37325;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #128C7E;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 480px) {
            .whatsapp-button {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
            
            .popup-form {
                width: 95%;
                padding: 15px;
            }
        }

        /* contact ----------------------------------------------------*/

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Header Section */
        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-header h1 {
            color: rgb(13, 65, 30);
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .contact-header h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-header p {
            color: var(--text-color);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .contact-info {
            flex: 1 1 300px;
            padding: 40px;
            background-color: rgb(246, 235, 235);
            color: var(--white);
        }

        .contact-form {
            flex: 2 1 500px;
            padding: 40px;
        }

        /* Info Items with Icons */
        .info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-icon {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-top: 3px;
            min-width: 20px;
        }

        .info-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .info-content p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: rgb(176, 85, 15);
        }

        .form-group label.required::after {
            content: " *";
            color: #e74c3c;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            background-color: grey;
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
            width: 100%;
            justify-content: center;
        }

        .whatsapp-btn:hover {
            background-color: #0b524a;
        }

        .whatsapp-icon {
            width: 20px;
            height: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            
            .contact-info, .contact-form {
                flex: 1 1 100%;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .contact-info, .contact-form {
                padding: 25px;
            }
            
            .contact-header h1 {
                font-size: 1.8rem;
            }
            
            .info-item {
                flex-direction: column;
                gap: 8px;
            }
        }
        