/* ===============================
   GLOBAL FIXES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: sans-serif;
}

/* -------------------------------------------------
   BANNER (HEADER SECTION)
--------------------------------------------------*/
.banner {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)), url(ad.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
}

/* NAVIGATION */
.navbar {
    width: 90%;
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.navbar h2 {
    color: #fff;
    font-size: 35px;
}

.navbar ul {
    display: flex;
    gap: 25px;
}

.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    height: 3px;
    width: 0;
    background: skyblue;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.4s;
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* -------------------------------------------------
   HERO CONTENT (BOOK YOUR CABS)
--------------------------------------------------*/
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: #fff;
    z-index: 5;
}

.content h1 {
    font-size: 60px;
    font-weight: bold;
}

.content p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 25px;
}

/* BUTTONS */
button {
    padding: 14px 35px;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid skyblue;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

button span {
    background: skyblue;
    height: 100%;
    width: 0%;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.4s;
}

button:hover span {
    width: 100%;
}

button:hover {
    border: none;
}

button a {
    color: white;
    text-decoration: none;
}

/* ===============================
   BODY & MAIN WRAPPER
   =============================== */
.bodyboy {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-color: #eff0f4;
    padding: 40px 20px;
    width: 100%;
}

/* ===============================
   HEADING
   =============================== */
.heading {
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    font-size: 32px;
    font-weight: 600;
}

/* ===============================
   CONTAINER
   =============================== */
.container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 10px;
    gap: 40px;
}

/* ===============================
   WATER DROP BOXES
   =============================== */
.container .drop {
    position: relative;
    width: 330px;
    height: 330px;
    border-radius: 30% 70% 85% 15% / 45% 59% 41% 55%;
    box-shadow:
        inset 20px 20px 20px rgba(0, 0, 0, 0.05),
        25px 35px 20px rgba(0, 0, 0, 0.05),
        25px 30px 30px rgba(0, 0, 0, 0.05),
        inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.container .drop p {
    margin-left: 0;
    text-align: center;
    margin-top: 15px;
}

/* Unique shapes */
.container .drop:nth-child(1) {
    border-radius: 30% 70% 85% 15% / 45% 59% 41% 55%;
}

.container .drop:nth-child(2) {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.container .drop:nth-child(3) {
    border-radius: 18% 82% 81% 19% / 49% 34% 66% 51%;
}

/* Hover effect */
.container .drop:hover {
    border-radius: 50%;
}

/* Shine effect */
.container .drop::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 55px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.9;
}

.container .drop::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 90px;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

/* ===============================
   INSIDE CONTENT
   =============================== */
.container .drop .add {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.container .drop .add h2 {
    width: 80px;
    height: 80px;
    background-color: #eff0f4;
    border-radius: 50%;
    box-shadow:
        inset 2px 5px 10px rgba(0, 0, 0, 0.1),
        inset -2px -5px 10px rgba(255, 255, 255, 1),
        15px 15px 10px rgba(0, 0, 0, 0.05),
        15px 10px 15px rgba(0, 0, 0, 0.025);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}

/* -------------------------------------------------
   FOOTER SECTION
--------------------------------------------------*/
.footer {
    width: 100%;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 70px 20px;
    border-top-left-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.footer .col-1,
.footer .col-2,
.footer .col-3 {
    width: 260px;
    text-align: center;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

.footer .social-icons {
    margin-top: 20px;
}

.footer .social-icons i {
    width: 40px;
    height: 40px;
    background: #0d8bf2;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    cursor: pointer;
}

/* -------------------------------------------------
   RESPONSIVE DESIGN (MOBILE FRIENDLY)
--------------------------------------------------*/

/* Tablets */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
    }

    .content h1 {
        font-size: 45px;
    }

    button {
        width: 80%;
        margin: 10px auto;
        display: block;
    }

    .heading {
        font-size: 26px;
    }

    .container .drop {
        width: 280px;
        height: 280px;
    }

    .container {
        gap: 30px;
    }
}

/* Phones */
@media (max-width: 480px) {
    .content {
        padding-top: 60px;
    }

    .content h1 {
        font-size: 36px;
    }

    .bodyboy {
        padding: 20px 10px;
    }

    .heading {
        font-size: 24px;
    }

    .container .drop {
        width: 240px;
        height: 240px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer .col-1,
    .footer .col-2,
    .footer .col-3 {
        width: 100%;
        text-align: center;
    }
}