body {
    overflow-x: hidden;
}

/* Section 1 Start */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    /* Stronger shadow */
    background-color: #fff;
    /* Ensure shadow is visible */
    border: 2px solid #000;
    /* Dark black border */
    border-radius: 10px;
    margin: 0 auto;
}


.banner img {
    max-width: 100%;
    height: 280px;
    width: 1050px;
}

@media (max-width: 768px) {
    .banner {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border: 1px solid #000;
        border-radius: 5px;
        height: auto;
        width: 90%;
    }

    .banner img {
        height: 180px;
    }
}


/* section 1 End */

/* section 2 Start */
.tab-section {
    padding: 60px 0;
    background-color: #AAC0C7;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #fff;
}

.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #ddd;
}

.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #ddd #ddd #fff;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    background-color: #fff;
}

.tab-content img {
    max-width: 100%;
    height: 350px;
    width: 350px;
}


.image-container {
    position: relative;
    display: inline-block;
}

.info {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    z-index: 10;
}

.image-container:hover .info {
    display: block;
}

/* section 2 End */

/* section 3 Start */
.footer {
    background-color: #153056;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 10px;
    text-align: center;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: white;
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-media img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.copyright {
    text-align: center;
    background-color: white;
    color: black;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-media img {
    text-align: center;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* section 3 End */

/* review */
.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    width: 80%;
    margin: 20px auto;
}

.reviews {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.review {
    min-width: 200px;
    max-width: 200px;
    margin: 0 10px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.stars {
    font-size: 20px;
    color: gold;
    margin-bottom: 5px;
}

.arrows {
    display: flex;
    justify-content: space-between;
    width: 50px;
    margin-top: 10px;
}

.arrow {
    background-color: #153056;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.arrow:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.arrow:hover:not(:disabled) {
    background-color: #102a47;
}

@media (max-width: 1024px) {
    /* Styles for screens smaller than 1024px */
}