/* ============================================================
   PC Rental Services — site.css
   Sections:
   1. Base & Reset
   2. Topbar
   3. Navbar
   4. Hero / Slider
   5. Quote Form
   6. Products
   7. About
   8. Features
   9. Services
   10. Packages
   11. Why Choose Us
   12. Gallery
   13. Contact
   14. Footer
   15. WhatsApp Button
   16. Utilities
   17. Mobile Responsive
============================================================ */


/* ============================================================
   1. BASE & RESET
============================================================ */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding-top: 5px;
    font-family: Arial, sans-serif;
}

.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;
}

.section-tag {
    background: #ff6600;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: #041e42;
}


/* ============================================================
   2. TOPBAR
============================================================ */

.topbar {
    background: #041e42;
    color: white;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
}


/* ============================================================
   3. NAVBAR
============================================================ */

.navbar {
    background-color: #041e42 !important;
    padding: 10px 0;
}

.logo {
    height: 80px;
    background-color: #041e42;
}

.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #00d4ff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* ============================================================
   4. HERO / SLIDER
============================================================ */

#home {
    scroll-margin-top: 120px;
}

.hero-section {
    margin-top: 90px;
    overflow: visible;
}

.hero-section .row {
    align-items: stretch;
}

.slider-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}


/* ============================================================
   5. QUOTE FORM
============================================================ */

.quote-form {
    background: #041e42;
    color: #fff;
    padding: 30px;
    min-height: 600px;
    height: auto;
    overflow: visible;
}

.quote-form h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote-form .form-control {
    padding: 12px;
}

.quote-form button {
    padding: 14px;
    font-weight: 600;
}

.form-control {
    padding: 14px;
    border-radius: 10px;
}


/* ============================================================
   6. PRODUCTS
============================================================ */

.product-img {
    height: 280px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

.card {
    border-radius: 15px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}


/* ============================================================
   7. ABOUT
============================================================ */

.about-section {
    padding: 110px 0;
    background: #fff;
}

.about-section .row {
    display: flex;
    align-items: center;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #041e42;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 8px;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: 600;
}

.about-btn:hover {
    background: #041e42;
    color: white;
}


/* ============================================================
   8. FEATURES
============================================================ */

.feature-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.feature-box {
    background: white;
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-box h3 {
    color: #ff6600;
    font-size: 42px;
    font-weight: 700;
}

.feature-box h5 {
    color: #041e42;
    margin: 15px 0;
}


/* ============================================================
   9. SERVICES
============================================================ */

.services-section {
    padding: 10px 0;
    background: white;
}

.services-section .text-center {
    margin-bottom: 10px !important;
}

.service-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 55px;
    margin-bottom: 15px;
}

.service-box h4 {
    color: #041e42;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
    line-height: 1.8;
}


/* ============================================================
   10. PACKAGES
============================================================ */

.packages-section {
    padding: 110px 0;
    background: #f7f9fc;
}

.packages-section .text-center {
    margin-bottom: 10px !important;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border: 3px solid #ff6600;
}

.package-title {
    background: #041e42;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.popular .package-title {
    background: #ff6600;
}

.package-card ul {
    padding-left: 20px;
}

.package-card li {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}


/* ============================================================
   11. WHY CHOOSE US
============================================================ */

.why-section {
    padding: 15px 0;
    background: white;
}

.why-section .text-center {
    margin-bottom: 10px !important;
}

.why-box {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-8px);
}

.why-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.why-box h4 {
    color: #041e42;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-box p {
    color: #666;
    line-height: 1.8;
}


/* ============================================================
   12. GALLERY
============================================================ */

.gallery-section {
    padding: 110px 0;
    background: #f7f9fc;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(4, 30, 66, 0.85);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}


/* ============================================================
   13. CONTACT
============================================================ */

.contact-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-info {
    background: #041e42;
    color: white;
    padding: 10px 0;
    border-radius: 15px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 20px;
}


/* ============================================================
   14. FOOTER
============================================================ */

.footer {
    background: #041e42;
    color: #fff;
    padding: 60px 0 20px;
}

.footer h4 {
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #ff6600;
}

.footer hr {
    margin: 30px 0;
    border-color: rgba(255, 255, 255, 0.2);
}


/* ============================================================
   15. WHATSAPP BUTTON
============================================================ */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}


/* ============================================================
   16. UTILITIES
============================================================ */

.btn-call {
    background: #ff6600;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

.btn-call:hover {
    background: #e85d00;
    color: white;
}

.btn-quote {
    background: white;
    color: #041e42;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

.btn-quote:hover {
    color: #041e42;
}


/* ============================================================
   17. MOBILE RESPONSIVE
============================================================ */

@media (max-width: 768px) {

    .logo {
        height: 70px;
    }

    .topbar {
        text-align: center;
    }

    .slider-img {
        height: auto;
    }

    .quote-form {
        min-height: auto;
    }

    .about-section h2,
    .section-heading {
        font-size: 30px;
    }

    .about-section {
        padding: 40px 0;
    }

    .packages-section {
        padding: 40px 0;
    }

    .package-card {
        margin-bottom: 20px;
    }

    .gallery-section {
        padding: 40px 0;
    }

    .gallery-img {
        height: 220px;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .footer {
        text-align: center;
    }
}
.reviews-area {
    background: #ffffff;
}


.review-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #041e42;
}


.rating-box {
    margin-top: 15px;
}


.big-rating {
    font-size: 45px;
    font-weight: 700;
}


.out-of {
    font-size: 25px;
    color: #777;
}


.stars,
.review-stars {
    color: #fbbd23;
    letter-spacing: 3px;
    font-size: 22px;
}


.review-header p {
    color: #666;
    font-size: 17px;
}



/* Slider */

.review-wrapper {
    overflow: hidden;
}


.review-slider {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: moveReviews 22s linear infinite;
}



.review-card {
    width: 340px;
    min-height: 230px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    flex-shrink: 0;
}



.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
}



.user-icon {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a73e8;
}



.review-card h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}



.review-card p {
    margin-top: 20px;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}



.review-card small {
    color: #777;
}



/* Smooth infinite */

@keyframes moveReviews {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



.review-slider:hover {
    animation-play-state: paused;
}



@media(max-width:768px) {

    .review-card {
        width: 280px;
    }
}