* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    background: #f4f7fc;
    color: #222;
}

.hero {
    height: 100vh;

    background:
        linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .55)),
        url("https://destzone.com/dz-assets/demo/gateway/gatewayofindia.jfif");

    background-size: cover;
    background-position: center;
    color: white;
}

.locationbadge {
    border: 2px solid white;
    padding: 8px 15px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.stat {
    background: rgba(255, 255, 255, .1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    min-width: 130px;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 25px 80px;
}

.footer-logo {
    margin: 20px 0;
    width: 150px;
}

ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.logo {
    font-size: 30px;
    font-weight: 700;
}

.hero-content {
    padding: 170px 100px;
    max-width: 900px;
}

.hero h1 {
    font-size: 80px;
}

.badge {
    background: #ff7f00;
    padding: 10px 20px;
    border-radius: 40px;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
}

button {
    padding: 15px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.secondary {
    color: #000;
    background: white;
    margin-left: 10px;
}

.secondary:hover {
    background: #f3f3f3;
}

#exploreBtn {
    background: #ff7f00;
    color: white;
}

section {
    padding: 70px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px
}

.location-grid section {
    padding: 10px;
}

.map-section iframe {
    width: 100%;
    height: 90%;
    border: none;
    border-radius: 25px;
}

.overview-grid,
.transport,
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.places-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.places-grid .place {
    max-width: 400px;
}

.card,
.place,
.ads-grid div {

    background: white;

    padding: 25px;

    border-radius: 25px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s;
}

.place img {
    max-width: 260px;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover,
.place:hover {
    transform: translateY(-10px)
}

.card h3 {
    margin-bottom: 15px;
}

.tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-wrap span {
    padding: 10px;
    background: #f3f3f3;
    border-radius: 30px;
}

.place img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
}

iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 25px;
}

.transport .card {
    text-align: center;
}

.transport .transport-type {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.transport .transport-type .icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

button {
    background: #ff7f00;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: #e67300;
}

table {
    width: 100%;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

th {
    background: #111;
    color: white;
}

td,
th {
    padding: 20px;
    text-align: center;
}

.place .content h3 {
    margin-bottom: 20px;
}

.ads h2 {
    margin-bottom: 30px;
}

.ads-grid div {
    color: black;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

footer {
    padding: 40px;
    background: white;
    color: #333;
    text-align: center;
}

footer .emaillink {
    display: inline-block;
    margin-top: 10px;
    color: #333;
}

footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Additional styles for the Partner section */

.partners-section {
    padding: 80px;
    background: #f8fbff;
}

.partner-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.partner-filter button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: white;
    color: #333;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    font-weight: 600;
}

.partner-filter .active {
    background: #ff7a00;
    color: white;
}


.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.partner-card {
    margin: 15px;
    max-width: 300px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .5s;
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-card img {
    width: 100%;
    max-width: 350px;
    height: 220px;
    object-fit: cover;
}

.partner-content {
    padding: 20px;
}

.partner-type {
    background: #ffe8d1;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ff7a00;
    text-align: center;

}

.partner-rating {
    background: #ffffff;
    padding: 8px 16px;
    border: 1px solid #ff7a00;
    border-radius: 30px;
    font-size: 13px;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
}

.partner-content h3 {
    margin-bottom: 10px;
}

.partner-content .details {
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #666;
}

/* Sponsored Ads Section */

.ads {
    padding: 60px 8%;
    background: #f5f7fb;
}

.ads h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
}

.ad-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 600px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slides {
    display: flex;
    transition: transform .7s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: fill;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .1),
            rgba(0, 0, 0, .65));
}

.caption {
    position: absolute;
    left: 50px;
    bottom: 50px;
    color: white;
    z-index: 10;
}

.caption h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.caption p {
    font-size: 18px;
}

.prev,
.next {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
    font-size: 22px;
    z-index: 20;
    transition: .3s;
}

.prev:hover,
.next:hover {
    background: white;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 20;
}

.dot {
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: .4;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

@media(max-width:768px) {

    .caption {
        left: 25px;
        bottom: 25px;
    }

    .caption h3 {
        font-size: 28px;
    }

    .ad-carousel,
    .slide img {
        height: 280px;
    }
}

/* Overall Responsive Styles */

@media (max-width: 1200px) {
    .location-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .map-section iframe {
        height: 400px;
    }

    section {
        padding: 40px 20px;
    }

    .partners-section {
        padding: 40px 20px;
    }

    .partner-grid {
        justify-content: center;
    }

    .places-grid {
        justify-content: center;
    }

    .ads {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 20px;
    }

    .hero-content {
        padding: 30px 20px;
        max-width: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 15px;
    }

    .locationbadge {
        margin-bottom: 20px;
    }

    .overview-grid,
    .transport,
    .places-grid,
    .ads-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .place,
    .ads-grid div {
        padding: 15px;
    }

    .partner-card {
        max-width: none;
        width: 100%;
    }

    .partner-card img {
        max-width: none;
        height: auto;
    }

    .places-grid .place {
        max-width: none;
        width: 100%;
    }

    .place img {
        max-width: none;
        height: auto;
    }
}

@media (max-width: 540px) {
    .hero h1 {
        font-size: 30px;
    }

    .locationbadge {
        width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .partner-card button {
        width: 100%;
        margin-bottom: 10px;
    }
}