/* General Styling */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', sans-serif;
}

body {
	height: 100vh;
    width: 100vw;
}

.container {
	display: flex;
    width: 100%;
    height: 100%;
}

h1, h2, button{
	font-family: 'Poppins', sans-serif;
}
label, p, li, strong, span, a{
	font-family: 'Inter', sans-serif;
}

/* Left Section - Form */
.left-section {
    position: relative;
    width: 50%;
	background-color: #fff;
	padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: auto;
}

.left-section::-webkit-scrollbar {
	width: 5px;
}

.left-section::-webkit-scrollbar-thumb {
	background: #D9DCD6;
	border-radius: 3px;
}

/* Right Section - Image */
.right-section {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    background-color: #004899; /* Fallback color */
    color: #fff;
    text-align: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 0 4% 4% 0;
    z-index: 1;
    overflow: hidden;
}

/* Background image with opacity */
.right-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/banner.webp') no-repeat center center/cover;
    opacity: 0.5; /* Adjust transparency */
    border-radius: 0 4% 4% 0;
    z-index: -1;
}

/* Overlapping Cut Effect - Desktop (Right Side) */
.right-section::after {
    content: "";
    position: absolute;
    right: -40px; /* Moves the cut inside */
    top: 4%;
    bottom: 4%;
    width: 60px; /* Controls how deep the cut is */
    background: #fff;
    border-top-left-radius: 40px; 
    border-bottom-left-radius: 40px;
}

.right-section .logo a img {
    width: 450px;
}

.right-section h2 {
    color: #fff;
    text-align: center;
    font-size: 25px;
    margin: 0 auto;
}

.right-section p a {
    color: #fff;
    text-decoration: none;
}
.right-section p a:hover {
    color: #ff9800;
}

h1 {
	text-align: center;
	font-size: 23px;
	color: #004899;
    padding-bottom: 15px;
}



.wrapper {
    max-width: 400px;
    width: 100%;
    margin: auto;
    padding: 20px;
}
.box {
    position: relative;
    width: 100%;
    height: 160px; /* Slightly taller for better spacing */
    margin: 25px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa); /* Soft gradient */
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #004899;
    cursor: pointer;
    background-size: contain;
    background-position: 90% center;
    background-repeat: no-repeat;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08); /* Softer shadow */
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

/* Backgrounds with opacity effect */
.box:nth-child(1) { 
    background-image: linear-gradient(rgba(250,250,250,0.95), rgba(250,250,250,0.95)), url('../img/best-price.webp'); 
}
.box:nth-child(2) { 
    background-image: linear-gradient(rgba(250,250,250,0.95), rgba(250,250,250,0.95)), url('../img/online-booking.webp'); 
}
.box:nth-child(3) { 
    background-image: linear-gradient(rgba(250,250,250,0.95), rgba(250,250,250,0.95)), url('../img/order-tracking.webp'); 
}

/* Hover Effect */
.box:hover {
    transform: scale(1.02); /* Slight enlargement */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12); /* Deeper shadow */
    background-color: rgba(255, 153, 0, 0.9);
}

#installBanner {
    display: none;
    position: relative;
    width: 100%;
    background: #ff9800;
    color: white;
    padding: 15px 15px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 100;
}


#ios-prompt-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff9800;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}
  
.ios-banner-inner {
    position: relative;
}
  
#ios-prompt-banner .share-icon {
    font-size: 16px;
}
  
.close-ios-banner {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0%);
    }
}















/*------------------------- Use a media query to add a breakpoint at 800px: -------------------------*/
/* Responsive Design */

@media screen and (max-width: 982px) {
	.container {
        display: flex;
        flex-direction: column;
        overflow: auto;
    }
    .left-section, .right-section {
        width: 100%;
        overflow: visible;

    }
    .right-section {
        border-radius: 0 0 6% 6%;
        justify-content: center;
        padding: 0 0 15px 0;
        min-height: 230px;
    }
    .right-section::after {
        right: auto;
        left: 50%;
        bottom: -40px;
        top: auto;
        transform: translateX(-50%);
        width: 90%;
        height: 50px;
        background: white;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .right-section h2 {
        display: none;
    }
    .right-section .logo a img {
        width: 350px;
    }
    .right-section p {
        font-size: 12px;
    }
    .wrapper {
        max-width: 500px;
    }
    .box {
        position: relative;
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 768px) {
	
}