/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #c9d7e1; /* Neutral Color */
    color: #0e4c7c; /* Primary Color */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    min-height: 100vh;
    margin: 0;
}

app {
    max-width: 450px;
    width: 100%;
}

/* Header: Logo Section */
.header {
    position: relative;
    display: flex;
    background-color: #0e4c7c;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    height: 60px;
}
.logo {
    display: flex;
    gap: 10px;
    position: relative;
    left: 10px;
}
.logo img {
    max-width: 100px;
}

.links {
    position: absolute;
    right: 10px;
}
.links .link {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #c9d7e1;
    font-weight: bold;
}
.linkedin-icon {
    font-size: 30px;
    color: #ffffff;
    width: 30px;
    aspect-ratio: 1;
}
.link:hover {
    text-decoration: underline;
}


/* Image Carousel Section */
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.carousel-container {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* For Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.carousel-item {
    flex: 0 0 100%; /* Each item takes full width */
    /* object-fit: cover; */
    scroll-snap-align: center;
    user-select: none;
    height: 200px;
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.controls button {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Google Review Section */

.redirects {
    display: flex;
    background-color: #c9d7e1;
    border-radius: 10px;
    height: calc(25vh);
    align-items: center;
    justify-content: space-between;
}

.google-review {
    justify-content: center;
    flex: 3;
    text-decoration: none;
    display: inline-block;
}

.review-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 24px;
    color: #c9d7e1; /* Gold color for stars */
}

.star {
    font-size: 32px;
    color: gold;
}

.review-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.review-text {
    font-size: 18px;
    color: #c9d7e1;
}

.social-logo {
    width: 40px;
    height: 40px;
}

.social-media-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.social-icon {
    display: inline-block;
    margin: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    height: 40%;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 5px;
}

.social-icon.instagram {
    color: #e1306c;
    text-decoration: none;
}

.social-icon.whatsapp {
    color: #25D366;
    text-decoration: none;
}

/* Branch Section */
.branch-redirects {
    background-color: #c9d7e1;
    border-radius: 10px;
    height: calc(25vh);
    align-items: center;
    justify-content: space-between;
}
.branch-link {
    display: inline;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    height: 40%;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 5px;
    color: #c9d7e1; /* Gold color for stars */
}
.highlight {
    display: inline;
    color: hotpink;
}

/* Google Maps Section */
.map iframe {
    width: 100%;
    height: calc(100vh - 25vh - 200px - 60px);
    border: none;
}
