
* {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important; /* Disable iOS long-press menu */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Disable image dragging or saving */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* Prevent right-click + drag on images */
}

/* Remove focus blue outline and tap highlight */
a, button, input, textarea, select {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Optional: smooth cursor and prevent accidental highlighting */
body {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
    background: #fff;
}


:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --dark-color: #2c2c2c;
    --light-color: #fffcf8;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1240px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loading-logo {
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease, padding 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        background: transparent;

}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;

        background: #fff;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
}

.logo-main {
    color: var(--dark-color);
}

.logo-accent {
    color: var(--primary-color);
}

.nav-logo {
    height: 50px;
    border-radius: 50px;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-book {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-book:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-right: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-logo .logo-main {
    color: var(--dark-color);
}

.nav-logo .logo-accent {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;

    background: #fff;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: -1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.heading-1 {
    font-size: 2rem !important;
    margin-bottom: 10px;
}

.heading-2 {
    font-size: 2rem !important;
    margin-bottom: 10px;

}

.heading-3 {
    font-size: 2.1rem !important;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 600;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-images {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

/* Apply spanning to the wrapper now */
.hero-img-wrap:nth-child(1) {
    grid-row: 1 / 3;    /* Tall left column */
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    transition: var(--transition);
}

.hero-img-wrap img:hover {
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.302) !important;
}

/* Individual heights for the right column */
.hero-img-wrap:nth-child(2) img {
    height: 190px;
}
.hero-img-wrap:nth-child(3) img {
    height: 270px;
}

/* Slide-up animation */
.hero-img-wrap {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}
.hero-img-wrap:nth-child(1) { animation-delay: 0.2s; }
.hero-img-wrap:nth-child(2) { animation-delay: 0.4s; }
.hero-img-wrap:nth-child(3) { animation-delay: 0.6s; }





.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
    
    justify-content: left;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid var(--primary-color);
    width: 180px;
    padding: 1rem 2rem;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;

    width: 180px;
    padding: 1rem 2rem;
    text-align: center;
}

.gallery-cta .btn-outline {
    width: 210px;
    padding: 1rem 2rem;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}



/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-grid {
	display: grid;
	grid-gap: 3px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
}

.overlay-content .category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-cta {
    margin-top: 30px;
    text-align: center;
}

/* Services Section */
.services {
    padding: 30px ;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.service-card {

    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.1);

    background: var(--light-color);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {

    transform: scale(1.05);
    border: none;
    
    background: #fff;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;

        color: var(--dark-color) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 15px rgba(255, 107, 107, 0.3);

        background: #feedcb;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;
}



.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}


.service-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-card li {
    padding: 0.1rem 0;
    color: #666;
    font-size: 0.95rem;
}


.service-card li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}


/* Brands Section */
.brands {
    padding: 80px 0;
    background: var(--light-color);
}

.brands-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.brands-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.brand-item img {
    height: 20px !important;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 90px 0;
    color: var(--dark-color);

        background: #fff;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--dark-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-x {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.contact-item-x i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item-x h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    gap: 1rem !important;
}

.contact-item p {
    color: #666;
}

.contact-item-x p {
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;          /* icon size */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Brand Colors */
.social-links .iii { background: #E1306C; }   /* Instagram */
.social-links .fff { background: #1877F2; }   /* Facebook */
.social-links .yyy { background: #FF0000; }   /* YouTube */
.social-links .www { background: #25D366; }   /* WhatsApp */

/* Hover Effects */
.social-links a:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    filter: brightness(1.15);
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;          /* icon size */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin-top: 5px;
}

/* Brand Colors */
.footer-section .social-links .ii { background: #E1306C; }   /* Instagram */
.footer-section .social-links .ff { background: #1877F2; }   /* Facebook */
.footer-section .social-links .yy { background: #FF0000; }   /* YouTube */
.footer-section .social-links .ww { background: #25D366; }   /* WhatsApp */

/* Hover Effects */
.footer-section .social-links a:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    filter: brightness(1.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    background: #ffddc993;
    color: #000000 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #ffddc93b;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 12px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: #ffddc9;
    padding: 0 5px;
    border-radius: 3px;
    color: var(--dark-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group select option {
    background: #ffddc9;
    color: var(--dark-color);
    border: none;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

/* Desktop: 3 equal columns */
.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

/* Map classes to areas */
.footer-section.left   { text-align: left;  }
.footer-section.center { text-align: center;}
.footer-section.right  { text-align: right; }

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-accent {
    color: var(--primary-color);
}

.footer-desc {
    margin-bottom: 15px;    
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section .follow-us {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: -0.7rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    display: flex;
    flex-direction: row;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p { 
   text-align: center !important;
   margin-left: auto;
   margin-right: auto;
}



/* Mobile: left section full-width on first row; center + right side-by-side below */
@media (max-width: 768px) {
/* Desktop: 3 equal columns */
.footer-content {
  grid-template-columns: repeat(1, 1fr);
  padding: 0 1rem;
}

/* Map classes to areas */
.footer-section.left   { text-align: left;  }
.footer-section.center { text-align: left;}
.footer-section.right  { text-align: left; }

.footer-bottom {
    display: flex;
    flex-direction: column;
}

}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.back-to-top.show {
    display: flex;
}

.gallery-ctab  {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 30px;
}

/* ===== Modal Base ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: #dbdbdb8d;
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 1rem;
}

/* Content container: flex column so image stays top & buttons bottom */
.modal-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
}

/* Image always scales and stays on top */
#modalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;}

/* ===== Bottom Button Row ===== */
.modal-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;          /* 3rem gap between buttons */
    margin-top: 1rem;
    padding-bottom: 1rem;
}

/* Navigation buttons (Prev/Next) */
.modal-nav {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);

    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modal-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Center Close Button */
.modal-close-btn {
    background: rgba(166, 166, 166, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);

    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.modal-close-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}




/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-image-grid {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-buttons {   
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
.hamburger {
    display: flex;
    z-index: 1001;
}

.nav-cta {
    display: none;
}

.nav-menu {
    position: fixed;
    top: -700%;                 /* hide above the viewport */
    left: 0;
    flex-direction: column;
    width: 100%;
    height: 100vh auto;               /* full screen height */
    text-align: center;
    transition: top 0.4s ease;   /* animate top position */
    box-shadow: var(--shadow);
    padding: 6rem 2rem 2rem;
    justify-content: flex-start;
    gap: 1.5rem;

    background: #fff;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;
}

.nav-menu.active {
    top: -10px;                      /* slide down */
}

    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line.accent {
        font-size: 3rem;
    }
    

    
    .hero-image-grid {
        height: 400px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heading-1 {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }

    .heading-2 {
        font-size: 1.8rem !important;
        margin-bottom: 10px;

    }

    .heading-3 {
        font-size: 1.8rem !important;
    }

    .hero-buttons {
        gap: 0.5rem auto;        
        justify-content: center;
    }

    
    .btn-primary {
        width: auto;
        padding: 0.9rem 1.5rem !important;
        text-align: center;
        font-size: 0.9rem;
    }

    .btn-outline {
        width: auto;
        padding: 0.9rem 1.5rem !important;
        text-align: center;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line.accent {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffddc9 100%);
    border-radius: 5px 0 0 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}




/* Carousel Styles */
.carousel-container {
    overflow: hidden !important;
    width: 100%;
    max-width: 1000px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin: 3rem auto;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}

.card.center img {
    filter: none;
}

.card.left-2 {
    z-index: 1;
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.left-2 img {
    filter: grayscale(100%);
}

.card.left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.left-1 img {
    filter: grayscale(100%);
}

.card.right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.right-1 img {
    filter: grayscale(100%);
}

.card.right-2 {
    z-index: 1;
    transform: translateX(400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.right-2 img {
    filter: grayscale(100%);
}

.card.hidden {
    opacity: 0;
    pointer-events: none;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -30px;
    margin-bottom: 20px;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 107, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    outline: none;
}

.nav-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: 20px;
}

.nav-arrow.right {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }
    
    .card {
        width: 200px;
        height: 280px;
    }
    
    .card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
    }
    
    .card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
    }
    
    .card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
    }
    
    .card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}









.member-info {
	text-align: center;
	margin-top: -40px;
	transition: all 0.5s ease-out;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.member-name {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: var(--primary-color);
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: var(--dark-color);
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}

@media (max-width: 768px) {
	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}


 a {
    color: #999;
    text-decoration: none;
}

.owner {
    color: var(--primary-color);
    text-decoration: none;
}


.sponser a {
    color: #999;
    text-decoration: none;
}

.sponser a span {
    color: var(--primary-color);
    text-decoration: none;
}


/* Outer container to center and control max width */
.map-container {
  width: 100%;                /* shrink on small screens */
  margin: 40px auto 0;        /* 30px top space, auto left/right centers it */
}

/* Inner wrapper to style the iframe */
.responsive-embed {
  width: 100%;
  height: 250px;              /* fixed height across devices */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

/* Make iframe fill wrapper */
.responsive-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



.f1 {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.f1-i {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.f2 {
  font-family: "Alan Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.f2-b {
  font-family: "Alan Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.f3 {
  font-family: "Libertinus Serif Display", system-ui;
  font-weight: 400;
  font-style: normal;
}

.f4 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* Base hidden state */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform; /* smoother animation */
}

/* When in view */
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }



.page-text {
    text-align: center;

}

.align-center {
    justify-content: center !important;
}