    :root {
        --primary-color: #16afd2;
        --secondary-color: #ffa500;
        --foreground: #1a1a1a;
        --background: #ffffff;
        --muted: #f5f5f5;
        --muted-foreground: #666666;
        --border: #e5e7eb;
        --text-dark: #1a1a1a;
        --text-light: #6b7280;
    }

    * {
        font-family: 'Inter', sans-serif;
    }

    body {
        background-color: var(--background);
        color: var(--text-dark);
        overflow-x: hidden;
    }

    
    .header-top-bar {
        background-color: var(--muted);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 0;
        font-size: 0.875rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .header-top-bar .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-top-bar .contact-info {
        display: flex;
        gap: 2rem;
    }

    .header-top-bar .contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s;
    }

    .header-top-bar .contact-item:hover {
        color: var(--primary-color);
    }

    .header-top-bar .contact-item i {
        color: var(--primary-color);
    }

    .header-top-bar .certified-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .header-top-bar .certified-badge i {
        color: var(--primary-color);
    }

   
    header {
        position: fixed;
        top: 45px;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: var(--background);
        border-bottom: 1px solid var(--border);
        transition: all 0.3s;
    }

    header.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand img {
        height: 50px;
        width: auto;
    }

    .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark) !important;
        margin: 0 0.5rem;
        transition: color 0.3s;
    }

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

    .btn-quote {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 0.375rem;
        transition: all 0.3s;
    }

    .btn-quote:hover {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        transform: translateY(-2px);
    }

    
    .hero-slider {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        margin-top: 70px;
    }

    .hero-slider-track {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        color: white;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        z-index: 1;
    }

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

    
    .hero-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #ffffffb3;
        backdrop-filter: blur(1px);
        z-index: 1;
    }

    .hero-slide-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 900px;
        /* margin: 0 auto; */
        padding: 0 2rem;
    }

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

    .hero-slide h1 .accent {
        color: var(--primary-color);
    }

    .hero-slide p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 600px;
        color: var(--text-light);
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 0.375rem;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
    }

    .btn-hero-primary:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 175, 210, 0.4);
    }

    .btn-hero-outline {
        background-color: white;
        color: var(--text-dark);
        border: 2px solid white;
        padding: 0.75rem 2rem;
        border-radius: 0.375rem;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
    }

    .btn-hero-outline:hover {
        background-color: white;
        color: var(--text-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

   
    .slider-controls {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .slider-dot.active {
        background-color: white;
        transform: scale(1.2);
    }

    .slider-dot:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }

    
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background-color: #16afd257;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        z-index: 10;
        border-radius: 0.375rem;
    }

    .slider-arrow:hover {
        background-color: rgba(255, 255, 255, 0.6);
    }

    .slider-arrow.prev {
        left: 1rem;
    }

    .slider-arrow.next {
        right: 1rem;
    }

    
    @media (max-width: 768px) {
        .hero-slider {
            height: 400px;
            margin-top: 80px;
        }

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

        .hero-slide p {
            font-size: 1rem;
        }

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

        .btn-hero-primary,
        .btn-hero-outline {
            width: 100%;
            text-align: center;
        }

        .slider-arrow {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .slider-arrow.prev {
            left: 0.5rem;
        }

        .slider-arrow.next {
            right: 0.5rem;
        }
    }

    @media (max-width: 480px) {
        .hero-slider {
            height: 500px;
            margin-top: 20px;
        }

	.btn-hero-primary{
	  padding: 10px 12px;
	  font-size: 14px;
	}
.btn-hero-outline{
	  padding: 10px 12px;
	  font-size: 14px;
	}

        .hero-slide h1 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .hero-slide p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .hero-slide-content {
            padding: 0 1rem;
        }
    }

    
    .trust-badges {
        background-color: var(--background);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 2rem 0;
    }

    .trust-badges .container-fluid {
        max-width: 100%;
    }

    .badge-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 5px;
        border-radius: 0.5rem;
        border: 1px solid var(--border);
        transition: all 0.3s;
        text-align: center;
        /* min-height: 80px; */
    }

    .badge-item:hover {
        border-color: var(--primary-color);
        background-color: rgba(22, 175, 210, 0.05);
    }

    .badge-item.highlight {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .badge-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .badge-item.highlight i {
        color: white;
    }

    .badge-item span {
        font-weight: 500;
        font-size: .875rem;
    }

    
    section {
        padding: 4rem 0;
    }

    section.bg-light {
        background-color: var(--muted);
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    section > .container-fluid > p {
        text-align: center;
        color: var(--text-light);
        font-size: 1.125rem;
        max-width: 600px;
        margin: 0 auto 3rem;
    }

   
    .ser-card {
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s;
        height: 100%;
        background:#fff;
    }

    .ser-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
        width: 64px;
        height: 64px;
        background-color: rgba(22, 175, 210, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        transition: all 0.3s;
    }

    .ser-card:hover .service-icon {
        background-color: rgba(22, 175, 210, 0.2);
    }

    .service-icon i {
        font-size: 2rem;
        color: var(--primary-color);
    }

    .ser-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

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

    
    .product-card {
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        overflow: hidden;
        transition: all 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .product-image {
        width: 100%;
        height: 250px;
        background-color: var(--muted);
        overflow: hidden;
    }

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

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

    .product-content {
        padding: 1.5rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-category {
        font-size: 0.75rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        background-color: var(--primary-color);
        width: fit-content;
        padding: 5px 10px;
        border-radius: 11px;
    }

    .product-category1 {
        font-size: 0.75rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        background-color: #fea706;
        width: fit-content;
        padding: 5px 10px;
        border-radius: 11px;
    }

    .product-card h3 {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .product-specs {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .btn-outline-primary {
        background-color: #fff;
        color: #000;
        border: 1px solid #aaaaaa59;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        display: block;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
    }

    .btn-outline-white {
        background-color: white;
        color: var(--text-dark);
        border: 1px solid white;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        display: block;
        text-align: center;
        transition: all 0.3s;
        cursor: pointer;
    }

    .btn-outline-primary:hover {
        background-color: #fea706;
        color: white;
    }

    
    .industry-card {
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        padding: 1.5rem;
        transition: all 0.3s;
        height: 100%;
        background: #fff;
    }

    .industry-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: rgba(22, 175, 210, 0.5);
    }

    .industry-card-content {
        display: flex;
        gap: 1rem;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
        background-color: rgba(22, 175, 210, 0.1);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s;
    }

    .industry-card:hover .industry-icon {
        background-color: var(--primary-color);
        color: white;
    }

    .industry-icon i {
        font-size: 1.5rem;
        color: #000;
        transition: color 0.3s;
    }

    .industry-card:hover .industry-icon i {
        color: white;
    }

    .industry-text h3 {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .industry-text p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0;
    }

    
    .cities-grid {
        display: grid;
        justify-content: center;
        gap: 1rem;
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .location-badge{
        height: 3rem;
        width: 3rem;
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        justify-content: center;
        display: flex;
        align-items: center;
        border-radius: 50%;
    }

    .city-badge {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        border: 2px solid #e5e7eb;
        border-radius: .75rem;
        transition: all 0.3s;
        cursor: pointer;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 0.95rem;
    }

    .city-badge:hover {
        border-color: var(--primary-color);
        /* background-color: rgba(22, 175, 210, 0.05); */
    }

    .city-badge:hover .location-badge {
        transform: scale(1.1);
    }

    .city-badge i {
        color: #fff;
        font-size: 20px;
    }

    /* ========== ABOUT SECTION ========== */
    .about-image {
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .about-content h2 {
        text-align: left;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

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

    .about-list li {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: flex-start;
    }

    .about-list-icon {
        width: 24px;
        height: 24px;
        background-color: rgba(22, 175, 210, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .about-list-icon::after {
        content: '';
        width: 6px;
        height: 6px;
        background-color: var(--primary-color);
        border-radius: 50%;
    }

    .about-list span {
        color: var(--text-light);
        line-height: 1.6;
    }

    
    .comparison-wrapper {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        overflow: hidden;
        background: #ffffff;
    }

    .compare-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
    }

    .compare-table thead {
        background: #f7f7f7;
    }

    .compare-table thead th {
        padding: 18px;
        text-align: center;
        font-size: 22px;
        color: #009ec5;
        font-weight: 700;
    }

    .compare-table thead th:first-child {
        color: #000;
        text-align: left;
    }

    .compare-table td {
        padding: 20px;
        font-size: 14px;
        border-bottom: 1px solid #e5e7eb;
        font-weight: 400;
    }

    .compare-table tbody tr:nth-child(even) {
        background: #fafafa;
    }

    .compare-table tbody td:first-child {
        font-weight: 500;
        font-size: 17px;
    }

    .compare-table i.bi-check-circle-fill {
        color: #05b66a;
        margin-right: 8px;
        font-size: 18px;
    }

    .compare-table i.bi-x-circle-fill {
        color: #dc3545;
        margin-right: 8px;
        font-size: 18px;
    }

    
    .pricing-card {
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        padding: 2rem;
        transition: all 0.3s;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        background:#fff;
    }

    .pricing-card.highlight {
        border-color: var(--primary-color);
        border-width: 2px;
        box-shadow: 0 4px 12px rgba(22, 175, 210, 0.15);
    }

    .pricing-badge {
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .pricing-period {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .pricing-description {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
        flex-grow: 1;
    }

    .pricing-features li {
        padding: 0.75rem 0;
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
        font-size: 0.95rem;
    }

    .pricing-features i {
        color: var(--primary-color);
        margin-top: 0.25rem;
    }

    .btn-pricing {
        width: 100%;
        padding: 0.5rem 1rem;
        border: 1px solid var(--border);
        background-color: transparent;
        color: var(--text-dark);
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .pricing-card.highlight .btn-pricing {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        /* border-color: var(--primary-color); */
    }

    .btn-pricing:hover {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

   
    .cta-section {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        text-align: center;
        padding: 4rem 0;
    }

    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        font-size: 1.15rem;
        opacity: 0.9;
        color: #fff !important;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-cta {
        background-color: #fff;
        color: var(--primary-color);
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 0.375rem;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
    }

    .btn-cta:hover {
        background-color: #ffffffe6;
        transform: scale(1.05);
    }

    
    .contact-info-card {
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        background: #fff;
        padding: 1.5rem;
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-card h3 {
        font-size: inherit;
        font-weight: 600;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        background-color: rgba(22, 175, 210, 0.1);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-info-icon i {
        color: var(--primary-color);
        font-size: 1.5rem;
    }

    .contact-form {
        background-color: #fff;
        padding: 2rem;
        border-radius: 0.5rem;
    }

    .contact-form .row {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .contact-form .col {
        flex: 1;
        min-width: 250px;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form label {
        font-weight: 600;
        margin-bottom: 0.4rem;
        display: block;
    }

    .contact-form input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: 0.375rem;
        transition: border-color 0.3s;
    }

    .contact-form input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(22, 175, 210, 0.1);
    }

    .btn-submit {
        width: 100%;
        padding: 0.75rem;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 0.375rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .btn-submit:hover {
        background-color: #0d95b8;
        transform: translateY(-2px);
    }

   
    footer {
        background-color: #1d2025;
        color: white;
        padding-top: 3rem;
        padding-bottom: 1rem;
    }

    footer .container-fluid {
        max-width: 100%;
    }

    footer h3 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    footer a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
    }

    footer a:hover {
        color: white;
    }

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

    /* footer .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s;
    } */

    footer .social-links a:hover {
        /* background-color: var(--primary-color); */
    }

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

  
    .floating-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        font-size: 14px;
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: white;
        padding: 7px 1.5rem;
        border-radius: 9999px;
        box-shadow: 0 4px 12px rgba(22, 175, 210, 0.3);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        z-index: 999;
    }

    .floating-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(22, 175, 210, 0.4);
    }

    .floating-cta i {
        font-size: 1.25rem;
    }

    
    @media (max-width: 768px) {
        .header-top-bar .contact-info {
            gap: 1rem;
        }

        .header-top-bar .certified-badge {
            display: none;
        }

        header {
            top: 35px;
        }

        .hero {
            margin-top: 130px;
        }

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

        .hero p {
            font-size: 1rem;
        }

        section h2 {
            font-size: 1.75rem;
        }

        .floating-cta {
            bottom: 20px;
            right: 20px;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        header {
            top: 0;
        }

        .header-top-bar {
            display: none;
        }

        .hero {
            margin-top: 70px;
        }

        .hero h1 {
            font-size: 1.75rem;
        }

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

        .btn-hero-primary,
        .btn-hero-outline {
            width: 100%;
            text-align: center;
        }

        section h2 {
            font-size: 1.5rem;
        }
    }

    .max-w-6xl {
        max-width: 72rem;
    }

    .footer-title{
        font-size: inherit;
    }

   
    .rental-card {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .rental-card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        border-color: #0cb7ca;
    }

    
    .rental-img {
        background: #f6f6f6;
        aspect-ratio: 1/1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rental-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 25px;
        transition: transform .3s ease;
    }

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


    
    .card-title-clamp {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    
    .btn-gradient {
        background: linear-gradient(135deg, #16afd2 0%, #ffa500 100%);
        color: #fff;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: 600;
        transition: opacity .3s ease;
    }

    .btn-gradient:hover {
        opacity: .85;
        color: #fff;
    }
