/* ===========================
   GENERAL PAGE STYLING
=========================== */
body {
    margin: 0;
    background: #f8f9fc;
    font-family: Arial, sans-serif;
}

main {
    margin-left: 20px;
    margin-right: 20px;
}

h1 {
    font-size: 60px;
    text-align: center;
}

p {
    font-size: 20px;
    text-align: left;
}

/* ===========================
   NAVBAR
=========================== */
.navbar ul {
    list-style-type: none;
    background-color: black;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

.navbar a:hover {
    background-color: grey;
}

.navbar li {
    float: left;
}

/* ===========================
   HEADER LOGO + TITLE
=========================== */
.div1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.div1 img {
    width: 160px;
    height: auto;
}

/* ===========================
   CONTENT BOXES
=========================== */
.text-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 700px;
    margin: 10px 0 10px 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #111;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 6px solid;
}

/* Unique border colors */
.text-box.red {
    border-left-color: red; /* red */
}

.text-box.blue {
    border-left-color: #007bff; /* bright blue */
}

.text-box.orange {
    border-left-color: #ff7b00; /* orange */
}

.text-box.black {
    border-left-color: #000000; /* black */
}
/* Grey background only for this section */
.info-section {
    background: #7e99b6;
    padding: 40px 20px;
    border-radius: 10px;
}

/* Row/column layout for each item */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

/* Right-side images */
.info-img {
    width: 280px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 10px;
    margin-top: 50px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.footer-section {
    width: 250px;
    margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 10px;
    color: #3b82f6;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #bbb;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-container iframe {
    border-radius: 10px;
}
/* ===========================
   REVIEW SLIDER
=========================== */
.review-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

/* ======= Slider Buttons ======= */
.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.slider-btn {
    background: black;
    color: white;
    border: none;
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.slider-btn:hover {
    background: #333;
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Keep your slider layout the same */
.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.slider-container::-webkit-scrollbar {
    height: 6px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}


.review-card {
    min-width: 280px;
    max-width: 280px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    font-size: 16px;
    color: #111;
}

.review-card p {
    margin-top: 10px;
    font-size: 14px;
    color: #222;
}

/* ========= COLORS ========= */
.review-card.blue   { border-left: 6px solid #3b82f6; }
.review-card.orange { border-left: 6px solid #f97316; }
.review-card.green  { border-left: 6px solid #10b981; }
.review-card.purple { border-left: 6px solid #8b5cf6; }
.review-card.red    { border-left: 6px solid #ef4444; }
.review-card.gold   { border-left: 6px solid #eab308; }

/* ===========================
   MOBILE RESPONSIVE FIXES
=========================== */
@media (max-width: 768px) {

    h1 {
        font-size: 38px;
    }

    p {
        font-size: 16px;
    }

    .navbar li {
        float: none;
        width: 100%;
    }

    .div1 {
        flex-direction: column;
        gap: 10px;
    }

    .div1 img {
        width: 130px;
    }

    .text-box {
        max-width: 90%;
        margin: 10px auto;
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-section {
        width: 100%;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 20px auto;
    }

    .video-container iframe {
        width: 100%;
        height: 450px;
        border-radius: 10px;
    }

    .info-row {
    flex-direction: column;
    text-align: left;
}

.info-img {
    width: 100%;
    max-width: 300px;
}


}
