<style>
        /* Apply the Inter font family */
        body {
            font-family: 'Inter', sans-serif;
            margin-top: 100px;
            background-color: #f4f4f4;
            color: #374151;
        }
        body.no-scroll {
            overflow: hidden;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }
        .navbar.scrolled {
            padding: 10px 5%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem; /* The parent link size remains the same */
            color: #3b82f6;   /* This color is for icons if any were inside */
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo span {
            color: black; /* Changed color to black */
            font-size: 1.1rem; /* Made font a little smaller than the parent */
        }

        .logo img {
            height: 30px;
            margin-right: 60px;
        }
        .nav-center {
            flex-grow: 1;
            display: flex;
            justify-content: center;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        .nav-links a:hover {
            color: #3b82f6;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        #mobile-menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #374151;
            cursor: pointer;
            z-index: 1002;
        }
        #mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            box-shadow: 5px 0 15px rgba(0,0,0,0.1);
            z-index: 1001;
            transition: left 0.3s ease-in-out;
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        #mobile-menu.open {
            left: 0;
        }
        #mobile-menu a {
            text-decoration: none;
            color: #374151;
            font-size: 1.2rem;
            font-weight: 500;
            cursor: pointer;
        }

        #mobile-menu-close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #374151;
            cursor: pointer;
        }

        #mobile-menu .mobile-menu-extras {
            border-top: 1px solid #e5e7eb;
            margin-top: 20px;
            padding-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        #mobile-menu .mobile-menu-extras a {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        #mobile-menu .mobile-menu-extras i {
            font-size: 1.4rem;
            width: 25px;
            text-align: center;
            color: #6B7280;
        }


        #mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        #mobile-menu-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 992px) {
            body {
                overflow-x: hidden;
            }
            .nav-center, .nav-right {
                display: none;
            }
            #mobile-menu-button {
                display: block;
            }
            .navbar {
                justify-content: space-between;
            }
            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(calc(-50% + 20px));
            }
            .logo img {
                margin-right: 15px;
            }
        }

        .language-selector { position: relative; display: inline-block; }
        .language-btn { display: flex; align-items: center; padding: 8px 15px; background: rgba(59, 130, 246, 0.1); color: #3b82f6; border-radius: 20px; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
        .language-btn:hover { background: rgba(59, 130, 246, 0.2); }
        .language-btn i { margin-right: 5px; }
        .language-dropdown { position: absolute; top: 100%; right: 0; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); padding: 10px 0; min-width: 150px; display: none; z-index: 1001; }
        .language-dropdown a { display: block; padding: 10px 20px; text-decoration: none; color: #374151; transition: all 0.2s ease; }
        .language-dropdown a:hover { background: #f3f4f6; color: #3b82f6; }
        .language-selector:hover .language-dropdown { display: block; }
        .profile-dropdown { position: relative; display: inline-block; }
        .profile-btn { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: linear-gradient(135deg, #3b82f6, #10b981); color: white; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
        .profile-btn:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4); }
        .profile-dropdown-content { position: absolute; top: 100%; right: 0; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); padding: 10px 0; min-width: 200px; display: none; z-index: 1001; }
        .profile-dropdown-content a { display: flex; align-items: center; padding: 12px 20px; text-decoration: none; color: #374151; transition: all 0.2s ease; }
        .profile-dropdown-content a:hover { background: #f3f4f6; color: #3b82f6; }
        .profile-dropdown-content a i { margin-right: 10px; width: 20px; text-align: center; }
        .profile-dropdown:hover .profile-dropdown-content { display: block; }
        .btn-dotted { border-style: dotted; border-width: 2px; }
        .slider-container { position: relative; overflow: hidden; width: 100%; }
        .slider-wrapper { display: flex; transition: transform 0.5s ease-in-out; width: 100%; }
        .banner-slide { flex: 0 0 100%; min-width: 100%; }
        .slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 30; }
        .slider-dot { width: 10px; height: 10px; background: rgba(255, 255, 255, 0.5); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
        .slider-dot.active { background: white; transform: scale(1.2); }
        .slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: white; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); cursor: pointer; z-index: 30; transition: all 0.3s ease; }
        .slider-nav:hover { background: #f3f4f6; }
        .slider-nav.prev { left: 20px; }
        .slider-nav.next { right: 20px; }
        .hidden { display: none; }

        .slider-image-container {
            width: 100%;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .slider-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        .page-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 2rem;
        }
        .card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            align-items: flex-start;
        }
        .contact-info ul {
            list-style: none;
            padding: 0;
        }
        .contact-info li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .contact-info i {
            font-size: 1.2rem;
            color: #3b82f6;
        }
        .address-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .service-card {
            text-align: center;
        }
        .service-card i {
            font-size: 3rem;
            color: #10B981;
            margin-bottom: 1rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px 8px 0 0;
        }
        .news-card-content {
            padding: 1.5rem;
        }
        .news-card-content small {
            color: #6B7280;
        }
        .news-card-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0.5rem 0;
        }

        .app-store-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
        .app-store-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            background-color: #1F2937;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid #4B5563;
            transition: background-color 0.3s ease;
        }
        .app-store-btn:hover {
            background-color: #4B5563;
        }
        .app-store-btn i {
            font-size: 2rem;
        }
        .app-store-btn div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
        }
        .app-store-btn small {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #D1D5DB;
        }
        .app-store-btn span {
            font-size: 1rem;
            font-weight: 600;
        }

        /* ====== NEW CALCULATOR STYLES ====== */
        #calculator .container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: stretch;
            width: 95%;
            max-width: 960px;
            margin: 0 auto;
            gap: 20px;
        }
        #calculator .calculator,
        #calculator .extra-services,
        #calculator .price-list {
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            width: 32%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        #calculator h2 { font-weight: bold; text-align: center; margin-bottom: 1rem; }
        #calculator input { padding: 8px; margin-bottom: 10px; width: 100%; box-sizing: border-box; border: 1px solid #ddd; }
        #calculator .delivery-buttons button,
        #calculator .city-buttons button { padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; margin-top: 10px; width: 100%; }
        #calculator .delivery-buttons, #calculator .city-buttons { display: flex; width: 100%; margin-bottom: 20px; gap: 5px; }
        #calculator .delivery-buttons button { flex-grow: 1; padding: 10px; margin: 0; border: 2px solid #007bff; background-color: #e0e0e0; color: #333; }
        #calculator .delivery-buttons button.active { background-color: #007bff; color: white; border: 2px solid transparent; }
        #calculator .delivery-buttons button:hover { background-color: #007bff; }
        #calculator .city-buttons button { background-color: #e0e0e0; color: #333; }
        #calculator .city-buttons button:hover { background-color: #2be689; }
        #calculator .city-buttons button.active { background-color: #24cf7a; color: white; }
        #calculator #calculateBtn { padding: 10px 20px; background-color: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; margin-top: 10px; width: 100%; }
        #calculator #calculateBtn:hover { background-color: #0056b3; }
        #calculator .price-table,
        #calculator .extra-services-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
        #calculator .price-table th,
        #calculator .price-table td,
        #calculator .extra-services-table th,
        #calculator .extra-services-table td { border: 1px solid #ddd; padding: 8px; text-align: center; }
        #calculator .price-table th { background-color: #007bff; color: white; }
        #calculator .extra-services-table th { background-color: #f0f0f0; font-weight: bold; text-align: left; }
        #calculator .extra-services-table td:first-child,
        #calculator .extra-services-table th:first-child { text-align: left; width: 60%; }
        #calculator .extra-services-table td:nth-child(2),
        #calculator .extra-services-table th:nth-child(2) { text-align: center; width: 20%; }
        #calculator .extra-services-table td:last-child,
        #calculator .extra-services-table th:last-child { text-align: center; width: 20%; }
        #calculator #cubicMetersResult,
        #calculator #totalCostResult { margin-top: 10px; font-weight: bold; }
        #calculator .language-switch { position: absolute; top: 10px; right: 10px; background-color: #007bffc7; padding: 5px 10px; border-radius: 5px; cursor: pointer; z-index: 10; }

        /* MOBILE RESPONSIVE STYLES */
        @media (max-width: 768px) {
            .slider-image-container { height: 200px; }
            .banner-slide .max-w-7xl { flex-direction: column-reverse; }
            .app-store-links { align-items: center; }
            .services-grid, .news-grid { grid-template-columns: 1fr; }
            .page-title { font-size: 2rem; margin-bottom: 1.5rem; }
            .about-grid, .address-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .card { padding: 1.5rem; }
            .page-container { padding: 1.5rem 1rem; }

            #calculator .container { flex-direction: column; align-items: center; gap: 20px; }
            #calculator .calculator, #calculator .extra-services, #calculator .price-list { width: 100%; }
            #calculator .extra-services-table td:nth-child(2), #calculator .extra-services-table th:nth-child(2) { display: none; }
            #calculator .extra-services-table td:first-child, #calculator .extra-services-table th:first-child { width: 80%; }
            #calculator .extra-services-table td:last-child, #calculator .extra-services-table th:last-child { width: 20%; }
        }
/* ====== NEW SERVICES SLIDER STYLES ====== */
.services-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* This hides the services that are off-screen */
}

.services-slider-wrapper {
    display: flex; /* This lines up the services side-by-side */
    gap: 2rem;
    transition: transform 0.5s ease-in-out; /* This creates the smooth sliding animation */
}

/* Make sure service cards don't shrink and have a specific width */
#services .service-card {
    flex: 0 0 calc((100% / 3) - (4rem / 3));
    min-width: calc((100% / 3) - (4rem / 3));
}

/* Responsive adjustments for the slider on smaller screens */
@media (max-width: 768px) {
    #services .service-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}
    </style>