:root {
    --primary: #1ccfc9;
    --primary-dark: #119e99;
    --bg: #f7fafc;
    --text: #222;
    --white: #fff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3vw;
    z-index: 10;
    transition: box-shadow 0.3s;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary);
}

.search-login {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-login input[type="text"] {
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    outline: none;
    font-size: 1rem;
    background: #f3f3f3;
    transition: border 0.2s;
}

.search-login input[type="text"]:focus {
    border: 1.5px solid var(--primary);
}

.login-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.2s;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.main-content {
    display: flex;
    min-height: calc(100vh - 80px);
    position: relative;
}

.social-bar {
    position: fixed;
    top: 50%;
    left: 2vw;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 20;
}

.social-bar a {
    color: var(--primary-dark);
    font-size: 1.3rem;
    background: var(--white);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-bar a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.hero {
    display: flex;
    flex: 1;
    width: 100%;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vw 4vw 5vw 8vw;
    z-index: 2;
    animation: fadeInLeft 1s ease;
}

.subheading {
    color: var(--primary-dark);
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
    opacity: 0;
    animation: fadeInUp 1s 0.2s forwards;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
    color: var(--primary-dark);
    opacity: 0;
    animation: fadeInUp 1s 0.4s forwards;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    color: #444;
    max-width: 420px;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
}

.cta {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards;
    text-decoration: none;
}

.cta.know-more {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.07);
    box-shadow: 0 8px 32px rgba(28,207,201,0.18);
}

.cta.know-more:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-image-area {
    flex: 1.1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    position: relative;
    min-width: 0;
    min-height: 400px;
    height: 500px; /* Set your desired fixed height */
    max-height: 600px;
}

.image-mask {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Paint-brush style mask using SVG clip-path */
    clip-path: path('M0,0 Q60,200 0,400 Q100,600 400,600 Q800,600 800,0 Z');
    background: var(--primary);
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.92) saturate(1.1);
    transition: transform 0.5s;
}

.image-mask:hover img {
    transform: scale(1.03);
}

.book-now-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    height: 56px;
    padding: 0 2.2rem;
    background: linear-gradient(90deg, var(--primary) 60%, var(--primary-dark) 100%);
    box-shadow: 0 6px 28px rgba(28,207,201,0.18);
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: background 0.22s, transform 0.18s, box-shadow 0.18s;
    font-size: 1.18rem;
    color: #fff;
    letter-spacing: 1.5px;
    z-index: 2;
    opacity: 0.97;
    text-transform: uppercase;
    gap: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.book-now-btn::after {
    font-size: 1.3rem;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.book-now-btn:hover::after {
    transform: translateX(6px);
}

.book-now-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 30;
    margin-right: 10px;
}
.burger span {
    display: block;
    height: 4px;
    width: 26px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive Navbar */
@media (max-width: 800px) {
    .navbar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .burger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 16px rgba(0,0,0,0.07);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s;
        z-index: 25;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    .search-login {
        width: 100%;
        justify-content: flex-end;
        margin-bottom: 0.5rem;
    }
}

/* Burger menu animation when open */
.burger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
    }
    .hero-text, .hero-image-area {
        padding: 3vw 4vw;
        min-height: 320px;
    }
    .image-mask img {
        height: 400px;
    }
}

@media (max-width: 800px) {
    .main-content {
        flex-direction: column;
    }
    .hero {
        flex-direction: column;
    }
    .hero-text {
        padding: 8vw 4vw 2vw 4vw;
        align-items: flex-start;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .image-mask img {
        height: 260px;
    }
    .social-bar {
        left: 1vw;
        top: unset;
        bottom: 2vw;
        flex-direction: row;
        gap: 1rem;
        transform: none;
        position: fixed;
    }
}

@media (max-width: 768px) {
    .navbar {
        gap: 1rem;
        padding: 0.7rem 2vw;
    }
    .nav-links {
        gap: 1rem;
    }
    .main-content {
        padding: 0;
    }
    .hero-text {
        padding: 7vw 3vw 2vw 3vw;
    }
    .cta {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    .image-mask img {
        height: 180px;
    }
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px);}
    100% { opacity: 1; transform: translateX(0);}
}

.site-footer {
    background: linear-gradient(90deg, #e6f8f7 60%, #f7fafc 100%);
    border-top: 1px solid #e0eceb;
    padding: 2.2rem 1rem 1rem 1rem;
    margin-top: 3rem;
    font-family: inherit;
    
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.footer-logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: #119e99;
    letter-spacing: 1px;
}
.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #119e99;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.18s;
}
.footer-links a:hover {
    color: #1ccfc9;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: #119e99;
    font-size: 1.15rem;
    transition: color 0.18s, transform 0.18s;
}
.footer-social a:hover {
    color: #1ccfc9;
    transform: scale(1.15);
}
.footer-bottom {
    text-align: center;
    color: #7bbdb9;
    font-size: 0.98rem;
    margin-top: 1.2rem;
    letter-spacing: 0.5px;
}
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }
    .footer-links {
        gap: 0.7rem;
    }
}
/* Modern Blog Section Styles */
.blog-section {
    margin: 2.5rem auto;
    max-width: 1100px;
    padding: 0 1.5rem;
}
.blog-grid.modern {
    gap: 0;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(17,158,153,0.08);
    overflow: hidden;
    margin-bottom: 2.5rem;
    align-items: stretch;
}
.blog-image.modern {
    position: relative;
    min-height: 320px;
    max-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-image.modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.blog-image.modern:hover img {
    transform: scale(1.06);
}
.blog-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(17,158,153,0.12) 0%, rgba(28,207,201,0.10) 100%);
    pointer-events: none;
}
.blog-details.modern {
    padding: 2.2rem 2.5rem 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-title.accent {
    color: var(--primary-dark);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.blog-meta {
    color: #6bbdb9;
    font-size: 1rem;
    margin-bottom: 1.1rem;
    font-weight: 500;
}
.accent-text {
    color: var(--primary-dark);
    font-weight: 600;
}
.blog-summary {
    color: #333;
    font-size: 1.13rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.blog-info-grid.modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1.2rem;
    background: #f7fafc;
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    font-size: 1.03rem;
    color: #222;
    box-shadow: 0 2px 12px rgba(17,158,153,0.04);
}
.blog-info-grid.modern i {
    margin-right: 0.5em;
    color: var(--primary-dark);
}
@media (max-width: 900px) {
    .blog-grid.modern {
        grid-template-columns: 1fr;
    }
    .blog-image.modern {
        min-height: 220px;
        max-height: 260px;
    }
    .blog-details.modern {
        padding: 1.5rem 1.2rem 1.7rem 1.2rem;
    }
}
@media (max-width: 600px) {
    .blog-section {
        padding: 0 0.3rem;
    }
    .blog-title.accent {
        font-size: 1.3rem;
    }
    .blog-details.modern {
        padding: 1.1rem 0.7rem 1.2rem 0.7rem;
    }
    .blog-info-grid.modern {
        grid-template-columns: 1fr;
        font-size: 0.98rem;
    }
}
/* Banner Section Styles */
.banner-section {
    max-width: 1100px;
    margin: 3.5rem auto 2.5rem auto;
    background: linear-gradient(90deg, #e6f8f7 60%, #f7fafc 100%);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(17,158,153,0.07);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}
.banner-text {
    flex: 1.2;
}
.banner-text h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.banner-text p {
    color: #333;
    font-size: 1.13rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.banner-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.08rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(17,158,153,0.08);
}
.banner-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}
.banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-image img {
    width: 260px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(17,158,153,0.10);
}
@media (max-width: 900px) {
    .banner-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .banner-image img {
        width: 180px;
    }
}
/* Bloggers Section Styles */
.bloggers-section {
    max-width: 1100px;
    margin: 3.5rem auto 2.5rem auto;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(17,158,153,0.07);
    padding: 2.5rem 2rem;
}
.bloggers-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}
.bloggers-list {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.blogger-card {
    background: #f7fafc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(17,158,153,0.04);
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
    max-width: 90vw;
    transition: transform 0.18s, box-shadow 0.18s;
}
.blogger-card:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 6px 24px rgba(17,158,153,0.13);
}
.blogger-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-dark);
}
.blogger-info {
    text-align: center;
}
.blogger-name {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.13rem;
    margin-bottom: 0.2rem;
}
.blogger-role {
    color: #6bbdb9;
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}
.blogger-bio {
    color: #333;
    font-size: 0.98rem;
    line-height: 1.5;
}
/* Reviews Section Styles */
.reviews-section {
    max-width: 1100px;
    margin: 3.5rem auto 2.5rem auto;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(17,158,153,0.07);
    padding: 2.5rem 2rem;
}
.reviews-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}
.reviews-list {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.review-card {
    background: #f7fafc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(17,158,153,0.04);
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
    max-width: 90vw;
    transition: transform 0.18s, box-shadow 0.18s;
}
.review-card:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 6px 24px rgba(17,158,153,0.13);
}
.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2.5px solid var(--primary-dark);
}
.review-info {
    text-align: center;
}
.review-name {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
}
.review-rating {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}
.review-text {
    color: #333;
    font-size: 0.98rem;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .reviews-list {
        gap: 1.2rem;
    }
    .review-card {
        width: 180px;
        padding: 1rem 0.7rem;
    }
}
        /* ...existing code... */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropbtn {
            cursor: pointer;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background: #fff;
            min-width: 170px;
            box-shadow: 0 8px 24px rgba(17,158,153,0.10);
            border-radius: 10px;
            z-index: 100;
            margin-top: -0.25em;
        }
        .dropdown-content a {
            color: #119e99;
            padding: 0.8em 1.2em;
            text-decoration: none;
            display: block;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.15s, color 0.15s;
        }
        .dropdown-content a:hover {
            background: #e6f8f7;
            color: #1ccfc9;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown:hover .dropbtn {
            color: #1ccfc9;
        }
        @media (max-width: 700px) {
            .dropdown-content {
                position: static;
                box-shadow: none;
                margin-top: 0;
            }
        }