.work-steps-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap; /* Ensures everything stays in one row */
    overflow-x: auto; /* Enables scroll if screen is too small */
    padding: 0 1rem;
}

.slides img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.work-step {
    flex: 0 0 calc(20% - 20px); /* 5 items per row with gap accounted */
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 180px; /* Prevents shrinkage on very small screens */
}

.step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 15px;
}

.step-icon img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .work-step {
        flex: 0 0 300px; /* Show 1 or 2 cards in smaller screens with scroll */
    }
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.custom-navbar {
    background: linear-gradient(90deg, #fff 80%, #b0c4de 100%);
    box-shadow: 0 2px 14px rgba(45,89,134,0.08);
}

.brand-title {
    font-weight: 700;
    color: #1d3557;
    letter-spacing: 0.03em;
    font-size: 1.25rem;
}

.nav-link {
    font-weight: 600 !important;
    color: #8c8c8c !important;
    margin-left: 1rem;
    transition: color 0.2s;
}

    .nav-link:hover, .nav-link.active {
        color: #e54b4b !important;
        text-decoration: underline;
    }

/* Slider container */
.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slides {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: none; /* Hide all slides by default */
}
    .slide.active {
        display: block;
    }

/* Slider controls unchanged */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

    .slider-controls button:hover {
        background-color: rgba(0, 0, 0, 0.6);
    }

/* Responsive adjustments */
@media (max-width: 900px) {
    .slider, .slide {
        height: 250px;
    }
}

.hero {
    position: relative;
    height: 100vh; /* Full screen height */
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0 0 45px 45px;
    box-shadow: 0 0px 0px rgba(45, 89, 134, .13);
}

    .hero h1 {
        font-size: 2.9rem;
        font-weight: 900;
        margin-bottom: 0.5rem;
        letter-spacing: 0.01em;
        color: #fff;
        text-shadow: 1px 1px 8px #2d5986;
    }

    .hero p {
        font-size: 1.2rem;
    }

.cta-btn {
    background: linear-gradient(90deg,#1d3557,#5d84b3 80%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    font-size: 1.15rem;
    transition: box-shadow .2s, transform .2s;
    box-shadow: 0 4px 18px rgba(93,132,179,0.14);
}

    .cta-btn:hover {
        background: #e54b4b;
        color: #fff;
        transform: scale(1.06);
    }

/* Custom navbar link styling */
.custom-nav-link {
    color: #8c8c8c !important; /* Base color */
    transition: color 0.3s ease;
    font-weight: 500;
}

    .custom-nav-link:hover,
    .custom-nav-link:focus {
        color: #2c2c2c !important; /* Darker shade for hover */
        text-decoration: none;
    }

.custom-navbar {
    background-color: #ffffff; /* Keep background white or set your own */
    border-bottom: 1px solid #e0e0e0;
}

.navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
}

.footer-heading {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-link {
    color: #64baff;
    text-decoration: none;
}

    .footer-link:hover {
        text-decoration: underline;
        color: #007bff;
    }

.footer-list li {
    margin-bottom: 8px;
}

.footer-nav-link {
    color: #ffc107;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

    .footer-nav-link:hover {
        color: #333;
        text-decoration: underline;
    }

.footer-bottom {
    font-size: 0.96rem;
}




body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

/* Navbar base */
.navbar {
    background: white;
    box-shadow: 0 4px 24px rgba(45, 89, 134, 0.15);
}

    /* Navigation links and brand color on page load */
    .navbar .nav-link,
    .navbar .navbar-brand {
        color: #595959 !important;
        font-weight: 600;
        transition: color 0.3s ease; /* Smooth color transition */
    }

        /* Hover state for nav links and brand */
        .navbar .nav-link:hover,
        .navbar .navbar-brand:hover {
            color: #2d5986 !important;
            font-weight: 600;
            text-decoration: underline;
        }

    /* Dropdown menu styling */
    .navbar .dropdown-menu {
        background: #fff;
        box-shadow: 0 2px 18px rgba(45, 89, 134, 0.15);
        border-radius: 12px;
        color: #2d5986;
    }

    /* Dropdown item hover effect */
    .navbar .dropdown-item:hover {
        background: #eef3fa;
        color: #2d5986;
        font-weight: 600;
        text-decoration: underline;
    }


/* Content Area grows with screen */
.content-area {
    flex: 1;
}




/* Gradient Button */
.btn-primary {
    background: linear-gradient(90deg, #008080, #5d84b3);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s;
}

    .btn-primary:hover {
        background: linear-gradient(90deg, #5d84b3, #008080);
        transform: scale(1.05);
    }

/* Why Choose Section */
.why-choose {
    background: #fff;
    border-radius: 24px;
    margin-top: -40px;
    box-shadow: 0 8px 32px rgba(45, 89, 134, 0.1);
    padding: 48px 28px 32px 28px;
}

    .why-choose h2 {
        color: #2d5986;
        font-weight: 700;
    }

    .why-choose .icon {
        font-size: 2.5rem;
        color: #5d84b3;
    }

/* Services Section */
.services-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(45, 89, 134, 0.1);
    margin: 48px 0;
    padding: 40px 20px;
}

.service-card {
    border: 1.5px solid #d3deea;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(45,89,134,0.12);
    background: #f7fafd;
    text-align: center;
    padding: 32px 14px 24px 14px;
    margin-bottom: 28px;
    transition: box-shadow 0.24s, transform 0.24s;
}

    .service-card:hover {
        box-shadow: 0 6px 36px rgba(45, 89, 134, 0.2);
        transform: translateY(-8px) scale(1.03);
        background: #eef3fa;
    }

    .service-card h5 {
        color: #2d5986;
        font-weight: 600;
        margin-top: 18px;
    }

.price {
    color: #5d84b3;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 8px;
}

/* Footer */
footer {
    color: #2d5986 !important;
    font-weight: 400;
    border-radius: 18px 18px 0 0 / 9px 9px 0 0;
    margin-top: 32px;
    padding: 32px 0 12px 0;
    text-align: center;
}

    footer a {
        color: black;
        text-decoration: none;
        margin: 0 10px;
        font-weight: 600;
    }

        footer a:hover {
            color: #2d5986 !important;
            text-decoration: underline;
        }

.glass-theme {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Optional for Glass Buttons */
.glass-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(6px);
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .glass-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }



.enquiry-container {
    max-width: 900px;
    margin: 40px auto;
    background: #f4faff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 88, 134, 0.07);
    padding: 32px 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

.enquiry-form {
    flex: 1 1 394px;
}

    .enquiry-form h2 {
        margin-bottom: 10px;
        color: #2d5986;
        font-size: 2em;
        font-weight: 600;
    }

    .enquiry-form p {
        color: #666;
        margin-bottom: 28px;
    }

.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 500;
        margin-bottom: 5px;
        color: #2d5986;
        font-size: 1em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 11px 13px;
        border: 1px solid #b7d8f6;
        border-radius: 6px;
        font-size: 1em;
        margin-bottom: 2px;
        background: #fff;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: 1.5px solid #ffe66e;
            background: #f4fcff;
        }

        .form-group input[type="submit"],
        .form-group button {
            background: #ffe66e;
            color: #222;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            margin-right: 12px;
            font-size: 1.09em;
            padding: 11px 30px;
            transition: background 0.2s;
        }

            .form-group input[type="submit"]:hover,
            .form-group button:hover {
                background: #ffcf51;
            }

.required {
    color: #e63946;
    margin-left: 2px;
}

@media (max-width:900px) {
    .enquiry-container {
        flex-direction: column;
        padding: 18px 6px;
    }
}


.catalog-container {
    max-width: 1120px;
    margin: 38px auto;
    padding: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.catalog-title {
    color: #2d5986;
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 2px 16px rgba(44,89,134,0.07);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.14s;
}

    .product-card:hover {
        transform: translateY(-4px) scale(1.025);
    }

.product-image {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: opacity 0.23s;
}

.product-card:hover .product-image {
    opacity: 0.7;
}

.card-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(45,89,134,0.60);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.27s;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.overlay-btn {
    background: #ffe66e;
    color: #222;
    border: none;
    padding: 11px 34px;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    box-shadow: 0 1px 6px rgba(44,89,134,0.08);
    transition: background 0.16s;
}

    .overlay-btn:hover {
        background: #ffcf51;
    }

.product-name {
    font-size: 1.09em;
    font-weight: 500;
    color: #2d5986;
    padding: 15px 15px 7px 15px;
    text-align: center;
    min-height: 40px;
}

@media (max-width:700px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-container {
        padding: 2px;
    }

    .product-image {
        height: 145px;
    }
}



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fdfdfd;
    color: #243e72;
}

#parking-catalog {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1d3557;
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.catalog-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .catalog-card:hover {
        transform: translateY(-5px);
    }

    .catalog-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .catalog-card h4 {
        padding: 15px;
        font-size: 16px;
        color: #1d3557;
        font-weight: 600;
    }

.spec-box {
    margin-top: 40px;
    background-color: #fff;
    border-left: 5px solid #1976d2;
    padding: 25px;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    animation: fadeIn 0.3s ease-in-out;
    display: none;
}

    .spec-box ul {
        padding-left: 20px;
    }

    .spec-box li {
        margin-bottom: 8px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        flex-direction: column;
        align-items: center;
    }

    .catalog-card {
        max-width: 90%;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

    .modal-content img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
    }

.close-btn {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #444;
}

.spec-text ul {
    padding-left: 20px;
}

.spec-text li {
    margin-bottom: 10px;
    font-size: 15px;
}
