body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #011f3a;
    color: #e0f7fa;
}

.navbar {
    background: #022c43;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(1,31,58,0.25);
    gap: 15px;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact-text {
    color: white;
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.logo {
    font-size: 1.5rem;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
} 
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-family: 'Poppins', Arial, sans-serif;
}
.nav-links li a:hover, .whatsapp-btn:hover {
    color: #00b4d8;
}
.whatsapp-btn {
    background: #00b4d8;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,180,216,0.18);
}
.whatsapp-btn:hover {
    background: #48cae4;
    color: #03396c !important;
}
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1.2rem;
    z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(3,57,108,0.4), rgba(3,57,108,0.6));
}

/* Navigation buttons */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 16px 12px;
    cursor: pointer;
    border: none;
    font-size: 24px;
    z-index: 3;
    transition: background-color 0.3s;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide-nav.prev {
    left: 20px;
}

.slide-nav.next {
    right: 20px;
}

/* Slide indicators */
.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-family: 'Poppins', Arial, sans-serif;
    color: #0066cc;
    text-shadow: 2px 2px 12px #03396c;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 24px;
}
.cta-btn {
    background: #00e676;
    color: #0e2238;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #fff;
    color: #00e676;
}
.section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section:last-of-type {
    padding-bottom: 70px;
}

.founder-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.founder-photo {
    width: 400px;
    height: 400px;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.2);
}

.founder-details h3 {
    font-size: 1.8rem;
    color: #48cae4;
    margin: 0 0 15px 0;
}

.founder-details p {
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff0000;
    white-space: nowrap;
    font-family: 'Montserrat', Arial, sans-serif;
}

.section h2, .package-section h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    letter-spacing: 1px;
    text-shadow: 1px 1px 8px #011f3a;
}

.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Poppins', Arial, sans-serif;
    text-shadow: 1px 1px 8px #011f3a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    background: rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

#dubai-packages .package-image {
    height: 500px;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 25px;
}

.package-card h3 {
    color: #48cae4;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.package-card .price {
    color: #90e0ef;
    margin-bottom: 20px;
    font-weight: 600;
}

.package-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.package-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.package-card li:before {
    content: '\2022';
    color: #48cae4;
    position: absolute;
    left: 0;
}

.book-btn {
    display: inline-block;
    background: #00b4d8;
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.book-btn:hover {
    background: #fff;
    color: #00e676;
    transform: translateY(-2px);
}

.founder-details {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00b4d8;
}
.about p {
    font-size: 1.1rem;
    line-height: 1.6;
}
footer {
    background: linear-gradient(to bottom, transparent, #011f3a 50px);
    color: #fff;
    padding: 50px 20px 30px;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #011f3a);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer-contact {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact p {
    margin: 8px 0;
}

.footer-contact a {
    color: #48cae4;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #90e0ef;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    margin: 0 10px;
    transition: opacity 0.2s;
}

.footer-social img:hover {
    opacity: 0.8;
}

.footer-whatsapp img {
    filter: invert(1) sepia(100%) saturate(100%) hue-rotate(70deg);
}

.footer-whatsapp:hover img {
    filter: invert(1) sepia(100%) saturate(200%) hue-rotate(70deg);
}

@media (max-width: 700px) {
    .navbar {
        padding: 10px 15px;
    }
    .logo {
        gap: 8px;
    }
    .logo-img {
        height: 28px;
        width: 28px;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .nav-links {
        gap: 8px;
        padding: 0;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .whatsapp-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
        min-width: fit-content;
    }
    .section {
        padding: 38px 10px 28px 10px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-info {
        align-items: center;
    }
    .footer-contact {
        margin-top: 10px;
    }
    .footer-social {
        margin-top: 10px;
    }
}

.tagline-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, #022c43, #033f63);
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #00b4d8, #48cae4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .nav-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contact-text {
        margin-left: 0;
        font-size: 1rem;
    }
    .nav-links {
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    .nav-links::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .nav-links li {
        flex-shrink: 0;
    }
    .founder-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .founder-photo {
        margin: 0 auto 20px;
    }
    .logo img {
        width: 60px;
        height: auto;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .navbar {
        flex-direction: column;
        padding: 10px 5%;
        gap: 15px;
    }
    .logo {
        font-size: 1.8rem;
        justify-content: center;
        width: 100%;
    }
    .nav-links {
        justify-content: center;
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
    }
    .nav-links li {
        text-align: center;
    }
    .nav-links li a {
        font-size: 1rem;
    }
    .whatsapp-btn {
        padding: 8px 16px;
    }
    .nav-links {
        gap: 6px;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
    .whatsapp-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    .package-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .founder-details {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
