/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #c33e9d;
    --light-brown: #D2691E;
    --dark-brown: #654321;
    --primary-pink: #FF69B4;
    --light-pink: #FFB6C1;
    --dark-pink: #C71585;
    --gold: #DAA520;
    --cream: #FFF5E6;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ============================================
   ANNOUNCEMENT
============================================ */
 /* ==========================================
           Premium Announcement Bar CSS
           Theme: White & Pink
           ========================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #fce7f3 0%, #ffffff 100%);
            min-height: 100vh;
        }

        /* Main Announcement Bar Section */
        .announcement-01 {
            background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%);
            border-bottom: 2px solid #fbcfe8;
            box-shadow: 0 4px 15px rgba(236, 72, 153, 0.1);
            position: relative;
            /* z-index: 1000; */
            backdrop-filter: blur(10px);
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .announcement-01__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .announcement-01__content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            gap: 30px;
            flex-wrap: wrap;
        }

        /* Left Section - Contact Info */
        .announcement-01__left-section {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        /* Right Section - Social Media */
        .announcement-01__right-section {
            display: flex;
            align-items: center;
        }

        /* Contact Items */
        .announcement-01__item {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #4b5563;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 15px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid transparent;
        }

        .announcement-01__item:hover {
            color: #ec4899;
            background: rgba(236, 72, 153, 0.1);
            border-color: #fbcfe8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
        }

        .announcement-01__icon {
            font-size: 16px;
            color: #ec4899;
            transition: transform 0.3s ease;
        }

        .announcement-01__item:hover .announcement-01__icon {
            transform: scale(1.2) rotate(5deg);
        }

        .announcement-01__text {
            white-space: nowrap;
        }

        /* Social Icons Section */
        .announcement-01__social {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .announcement-01__social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffffff 0%, #fce7f3 100%);
            color: #ec4899;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 2px solid #fbcfe8;
            box-shadow: 0 2px 8px rgba(236, 72, 153, 0.1);
        }

        .announcement-01__social-link:hover {
            background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
            color: #ffffff;
            transform: translateY(-3px) rotate(360deg);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.3);
            border-color: #ec4899;
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .announcement-01__content {
                justify-content: center;
                gap: 20px;
            }
            
            .announcement-01__left-section {
                gap: 20px;
            }
            
            .announcement-01__item {
                font-size: 13px;
                padding: 7px 12px;
            }
            
            .announcement-01__social-link {
                width: 36px;
                height: 36px;
                font-size: 15px;
            }
        }

        @media screen and (max-width: 768px) {
            .announcement-01__content {
                flex-direction: column;
                display: none;
                gap: 15px;
                padding: 12px 0;
            }
            
            .announcement-01__left-section {
                width: 100%;
                flex-direction: column;
                gap: 12px;
            }
            
            .announcement-01__right-section {
                width: 100%;
                justify-content: center;
                padding-top: 10px;
                border-top: 1px solid #fbcfe8;
            }
            
            .announcement-01__item {
                width: 100%;
                justify-content: center;
                font-size: 13px;
            }
            
            .announcement-01__text {
                white-space: normal;
                text-align: center;
            }
            
            .announcement-01__social {
                gap: 15px;
            }
        }

        @media screen and (max-width: 480px) {
            .announcement-01__container {
                padding: 0 15px;
                display: none;
            }
            
            .announcement-01__item {
                font-size: 12px;
                padding: 6px 10px;
            }
            
            .announcement-01__icon {
                font-size: 14px;
            }
            
            .announcement-01__social-link {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus States for Accessibility */
        .announcement-01__item:focus,
        .announcement-01__social-link:focus {
            outline: 2px solid #ec4899;
            outline-offset: 2px;
        }

        /* Print Styles */
        @media print {
            .announcement-01 {
                position: static;
                box-shadow: none;
            }
        }

/* ============================================
   HEADER STYLES
============================================ */
/* Header Styles with Fixed Z-Index */
.header {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 9999; 
}

.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* z-index: 9999;  */
    box-shadow: 0 6px 30px rgba(139, 69, 19, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 10000; 
}

/* Logo Styles */
.logo {
    flex-shrink: 0;
    position: relative;
   
}

.logo-img {
    height: 100px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-pink);
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10002; /* Highest z-index - always on top */
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content Spacing */
.main-content {
    margin-top: 100px;
    position: relative;
    z-index: 1; /* Lower than header */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 120px; /* Header ke neeche se start */
        left: -100%;
        width: 100%; /* Full width */
        height: calc(100vh - 120px); /* Header height minus karke */
        background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
        transition: left 0.4s ease;
        padding-top: 30px;
        z-index: 99999; /* Header se neeche */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 18px 25px;
        border-radius: 8px;
        margin-bottom: 12px;
        font-size: 1.1rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(5px);
    }

    .logo-img {
        height: 70px;
    }

    .header-content {
        padding: 10px 15px;
    }

    .main-content {
        margin-top: 80px;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 120px; /* Header ke neeche se */
    left: 0;
    width: 100%;
    height: calc(100vh - 120px); /* Remaining height */
    background: rgba(0, 0, 0, 0.6);
    z-index: 9997; /* Nav se neeche */
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .nav-overlay {
        display: block;
    }
}

/* Ensure all sections stay below header */
section {
    position: relative;
    z-index: 1;
}

/* If you have any fixed elements, keep them below header */
.scroll-top-btn {
    z-index: 9997 !important; /* Below header but above content */
}

/* Prevent content from overlapping header */
body {
    position: relative;
}

/* Additional fix for any popup or modal */
.modal,
.popup {
    z-index: 9996; /* Below header */
}

/* Animation for mobile menu */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav.active {
    animation: slideInLeft 0.3s ease;
}

/* Tablet responsive */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .logo-img {
        height: 80px;
    }
}

/* ============================================
   FOOTER STYLES
============================================ */
.footer {
    background: var(--dark-brown);  /* Base footer background */
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

/* Creating the wave-like border effect */
/* Main Footer Style */
.footer {
    background: var(--dark-brown);  /* Base footer background */
    color: var(--white);
    position: relative;
    margin-top: 80px;
    padding-top: 40px;  /* Adds space for the wave effect */
}

/* Cascading Top Border: Wave Effect */
.footer-top-border {
    position: absolute;
    top: -40px;  /* Adjust vertical position of the wave */
    left: 0;
    width: 100%;
    height: 100px;  /* Adjust the height of the wave */
    overflow: hidden;
    z-index: 1;
}

.footer-top-border svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-top-border path {
    fill: var(--primary-pink);  /* This is the color of the wave */
    opacity: 1;  /* You can adjust the opacity here */
}

/* Footer Content Styling */
.footer-content {
    padding: 60px 0 40px;
}

/* Footer Wave Curve Design */
.footer-top-border .wave {
    fill: var(--primary-pink);  /* Color of the wave */
}


.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding: 10px;
}

/* Footer About Section */
/* .footer-about {
    padding-right: 20px;
} */

.footer-logo-img {
    height: 100px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    /* filter: brightness(1.2); */
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

/* Footer Columns */
.footer-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--light-pink);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), transparent);
    border-radius: 3px;
}

/* Quick Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--light-pink);
}

.footer-links a:hover {
    color: var(--light-pink);
    padding-left: 8px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--light-pink);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--light-pink);
}

/* Newsletter */
.newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.newsletter-success {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--light-pink);
    font-size: 0.95rem;
    padding: 10px;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 8px;
    animation: slideIn 0.5s ease;
}

.newsletter-success.show {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Bottom */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 30px 0 25px;
}

.footer-bottom {
    text-align: center;
    padding-bottom: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom i {
    color: var(--primary-pink);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 8px 25px;
        font-size: 1.1rem;
    }

    .logo-img {
        height: 78px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 0 30px;
    }

    .footer-about {
        grid-column: 1;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        border-radius: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 75px;
    }

    .header-content {
        padding: 10px 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 8px 25px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .contact-item,
    .footer-links a,
    .newsletter-text {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

/* Additional Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* ========================================================================================== */
/* section-001 Hero Section  */
.section-002 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Background overlay with opacity */
/* .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.85), rgba(255, 192, 203, 0.9));
    backdrop-filter: blur(3px);
    z-index: 1;
} */

/* Decorative border effect */
.section-002::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    /* z-index: 2; */
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 192, 203, 0.3);
}

.form-header {
    text-align: center;
    /* margin-bottom: 35px; */
}

.form-header h1 {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #d63384;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label svg {
    color: #ff69b4;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 2px solid #ffb6c1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #ff69b4, #d63384);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(214, 51, 132, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Image Container */
.image-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(214, 51, 132, 0.9), transparent);
    padding: 40px 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .section-002::before {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .content-wrapper {
        gap: 30px;
    }

    .form-container {
        padding: 20px;
    }

    .form-header h1 {
        font-size: 2.2rem;
    }

    .image-wrapper {
        height: 600px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
   
    .section-002 {
    position: relative;
    min-height: 100vh;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    background-image: url(https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&h=1080&fit=crop);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    }

    .section-002::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-width: 2px;
        border-radius: 20px;
    }

    .content-wrapper {
        /* grid-template-columns: 1fr; */
        gap: 30px;
    }

    .form-container {
        padding:10px;
        border-radius: 20px;
    }

    .form-header h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: .9rem;
        margin: 5px;
    }

    /* .booking-form {
        gap: 20px;
    } */

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .image-wrapper {
        height: 500px;
        border-radius: 20px;
    }

    .image-overlay {
        padding: 30px 20px;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
    }

    .overlay-content p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-002 {
        padding: 20px 10px;
    }
        .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-header h1 {
        font-size: 1.2rem;
    }

    .image-wrapper {
        height: 400px;
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }
}
/* section -003 about section  */
/* Main Section */
/* Main Section */
.section-003 {
    position: relative;
    padding: 20px 20px;
    background-color: #fff;
    color: #333;
}

.section-003-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensures stacking on smaller screens */
}

/* Left-aligned Text Section */
.section-003-text-wrapper {
    flex: 1;
    max-width: 600px;
    padding: 30px;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 228, 236, 0.6) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2); */
}

/* Stylish About Us Title */
.section-003-main-title {
    font-family: 'Lobster', cursive; /* Elegant font */
    font-size: 2.5rem; /* Larger size for prominence */
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 20px;
    text-align: left; /* Align to the left */
    text-transform: uppercase; /* Uppercase letters */
    letter-spacing: 2px; /* Letter spacing for a premium look */
    position: relative;
    padding-left: 15px; /* Slight padding on the left */
}

/* Stylish underline effect */
.section-003-main-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e91e63;
    border-radius: 2px;
}

/* Subtitle Section */
.section-003-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* Slightly smaller than the main title */
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 15px;
    text-align: left; /* Align to the left */
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

/* Subtitle text-shadow for a more premium look */
.section-003-title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.section-003-subtitle {
    font-size: 1rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.section-003-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow items to stack on smaller screens */
}

.section-003-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    margin-bottom: 20px; /* Spacing between items */
}

.section-003-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 10px;
}

.section-003-list {
    list-style: none;
    padding-left: 0;
}

.section-003-list li {
    font-size: 1rem;
    color: #880e4f;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.section-003-list li::before {
    content: "➤";
    margin-right: 8px;
    color: #e91e63;
}

/* Button Section */
.section-003-button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
}

.section-003-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}

/* Image Section */
.section-003-image-wrapper {
    flex: 1;
    max-width: 500px;
}

.section-003-image-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2); */
}

.section-003-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .section-003-container {
        /* flex-direction: column; */
        gap: 30px;
    }

    .section-003-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-003-main-title {
        font-size: 1.8rem;
    }
            .section-003-container {
        flex-direction: column;
        gap: 30px;
    }

    .section-003-subtitle {
        font-size: 0.9rem;
    }

    .section-003-grid {
        flex-direction: column; /* Stack items vertically on tablet */
    }

    .section-003-item {
        width: 100%; /* Ensure full width for the items */
    }
}

@media (max-width: 480px) {
    .section-003 {
        padding: 30px 15px;
    }
        .section-003-container {
        flex-direction: column;
        gap: 30px;
    }

    .section-003-main-title {
        font-size: 1.6rem;
    }

    .section-003-subtitle {
        font-size: 0.85rem;
    }

    .section-003-button {
        padding: 10px;
        font-size: 0.9rem;
    }

    .section-003-grid {
        flex-direction: column; /* Stack items vertically on mobile */
    }

    .section-003-item {
        width: 100%; /* Ensure full width for items */
    }
}
/* section -004 our services  */
/* Main Section */
.section-004 {
    padding: 60px 20px;
    background-image: url('assets/img/Untitled design (1).jpg'); /* Replace with your image URL */
    background-size: cover;  /* Ensures the image covers the entire section */
    background-position: center center; /* Centers the background image */
    color: #333;
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.section-004-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensures stacking on small screens */
}

/* Sidebar */
.section-004-sidebar {
    flex: 1;
    max-width: 300px;
    background-color: rgba(248, 187, 208, 0.9); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.section-004-service-list {
    list-style: none;
    padding-left: 0;
}

.section-004-service-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #880e4f;
    margin-bottom: 15px;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.section-004-service-item:hover {
    color: white;
    background-color: #e91e63;
}

.section-004-service-item.active {
    color: white;
    background-color: #e91e63; /* Active item color */
}

/* Service Detail Section */
.section-004-service-detail {
    flex: 2;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 228, 236, 0.6) 100%);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

/* Service Title */
.section-004-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 15px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-004-service-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e91e63;
    border-radius: 2px;
}

/* Price */
.section-004-service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 20px;
}

.section-004-original-price {
    text-decoration: line-through;
    color: #3c3939;
}

.section-004-discounted-price {
    margin-left: 10px;
    color: #e91e63;
}

/* Description */
.section-004-service-description {
    font-size: 1rem;
    color: #151414;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Service Image Section */
/* .section-004-service-image-container {
    margin-bottom: 30px;
} */

.section-004-service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

/* Book Button */
.section-004-book-appointment-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
    width: 100%;
    text-align: center;
}

.section-004-book-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
    .section-004-container {
        /* flex-direction: column; */
        gap: 30px;
    }

    .section-004-service-item {
        font-size: 1rem;
    }

    .section-004-service-title {
        font-size: 2rem;
    }

    .section-004-service-price {
        font-size: 1rem;
    }

    .section-004-service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .section-004-service-title {
        font-size: 1.8rem;
    }

    .section-004-service-description {
        font-size: 0.9rem;
    }

    .section-004-book-appointment-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-004-container {
        flex-direction: column;
    }

    .section-004-service-title {
        font-size: 1.6rem;
    }

    .section-004-service-description {
        font-size: 0.85rem;
    }

    .section-004-book-appointment-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* section -005 why choose us  */
.section-005 {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-005__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Header Styles */
.section-005__header {
    text-align: center;
    margin-bottom: 60px;
}

.section-005__subtitle {
    font-family: 'Brush Script MT', cursive;
    color: #ff4f8e;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.section-005__subtitle::before,
.section-005__subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff4f8e);
}

.section-005__subtitle::before {
    right: calc(100% + 15px);
    background: linear-gradient(to left, #ff4f8e, transparent);
}

.section-005__subtitle::after {
    left: calc(100% + 15px);
}

.section-005__title {
    font-size: 48px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-005__divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff4f8e, transparent);
    margin: 0 auto;
    position: relative;
}

.section-005__divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ff4f8e;
    border-radius: 50%;
}

/* Content Layout */
.section-005__content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

/* Features Styles */
.section-005__features {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-005__features--left {
    align-items: flex-end;
    text-align: right;
}

.section-005__features--right {
    align-items: flex-start;
    text-align: left;
}

.section-005__feature {
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 400px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.section-005__feature:nth-child(1) {
    animation-delay: 0.2s;
}

.section-005__feature:nth-child(2) {
    animation-delay: 0.4s;
}

.section-005__feature:nth-child(3) {
    animation-delay: 0.6s;
}

.section-005__features--left .section-005__feature {
    flex-direction: row-reverse;
}

.section-005__icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4f8e 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 79, 142, 0.3);
    border: 4px solid #fff;
    transition: all 0.3s ease;
}

.section-005__icon {
    width: 32px;
    height: 32px;
    color: #fff;
}

.section-005__feature:hover .section-005__icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 79, 142, 0.4);
}

.section-005__feature-content {
    flex: 1;
}

.section-005__feature-title {
    font-size: 22px;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.section-005__feature:hover .section-005__feature-title {
    color: #ff4f8e;
}

.section-005__feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Center Image Styles */
.section-005__center-image {
    position: relative;
    width: 350px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-005__image-bg {
    position: absolute;
    width: 400px;
    height: 450px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 1;
}

.section-005__image-bg--left {
    background: linear-gradient(135deg, #ffd4e5 0%, #ffe6f0 100%);
    top: 0;
    left: -100px;
}

.section-005__image-bg--right {
    background: linear-gradient(135deg, #ffe6f0 0%, #ffd4e5 100%);
    bottom: 0;
    right: -100px;
}

.section-005__product-image {
    position: relative;
    z-index: 2;
    width: 300px;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 4s ease-in-out infinite;
}

/* Scroll to Top Button */
.section-005__scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff4f8e 0%, #ff6b9d 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 79, 142, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.section-005__scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 79, 142, 0.5);
}

.section-005__scroll-top svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Large Desktop */
@media (max-width: 1200px) {
    .section-005__content {
        gap: 40px;
    }
    
    .section-005__feature {
        max-width: 350px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .section-005 {
        padding: 60px 20px;
    }

    .section-005__header {
        margin-bottom: 50px;
    }

    .section-005__title {
        font-size: 40px;
    }

    .section-005__subtitle {
        font-size: 24px;
    }

    .section-005__content {
        gap: 30px;
    }

    .section-005__center-image {
        width: 280px;
        height: 350px;
    }

    .section-005__product-image {
        width: 240px;
        max-height: 420px;
    }

    .section-005__features {
        gap: 40px;
    }

    .section-005__feature {
        max-width: 300px;
    }

    .section-005__feature-title {
        font-size: 20px;
    }

    .section-005__feature-text {
        font-size: 14px;
    }

    .section-005__icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .section-005__icon {
        width: 28px;
        height: 28px;
    }

    .section-005__image-bg {
        width: 350px;
        height: 400px;
    }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
    .section-005 {
        padding: 50px 15px;
    }

    .section-005__header {
        margin-bottom: 40px;
    }

    .section-005__title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-005__subtitle {
        font-size: 22px;
    }

    .section-005__subtitle::before,
    .section-005__subtitle::after {
        width: 50px;
    }

    /* Switch to single column layout */
    .section-005__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Center image comes first */
    .section-005__center-image {
        width: 280px;
        height: 350px;
        order: -1;
        margin: 0 auto;
    }

    .section-005__product-image {
        width: 220px;
        max-height: 380px;
    }

    .section-005__image-bg {
        width: 320px;
        height: 370px;
    }

    .section-005__image-bg--left {
        left: -80px;
    }

    .section-005__image-bg--right {
        right: -80px;
    }

    /* Features styling for mobile */
    .section-005__features {
        gap: 30px;
        width: 100%;
    }

    .section-005__features--left,
    .section-005__features--right {
        align-items: center;
        text-align: center;
    }

    .section-005__features--left .section-005__feature {
        flex-direction: column;
    }

    .section-005__features--right .section-005__feature {
        flex-direction: column;
    }

    .section-005__feature {
        max-width: 100%;
        width: 100%;
    }

    .section-005__feature-content {
        width: 100%;
    }

    .section-005__scroll-top {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
    }

    .section-005__scroll-top svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-005 {
        padding: 40px 15px;
    }

    .section-005__header {
        margin-bottom: 35px;
    }

    .section-005__title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-005__subtitle {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .section-005__subtitle::before,
    .section-005__subtitle::after {
        width: 40px;
    }

    .section-005__divider {
        width: 100px;
    }

    .section-005__content {
        gap: 35px;
    }

    .section-005__features {
        gap: 25px;
    }

    .section-005__feature-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .section-005__feature-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .section-005__icon-wrapper {
        width: 55px;
        height: 55px;
        border: 3px solid #fff;
    }

    .section-005__icon {
        width: 26px;
        height: 26px;
    }

    .section-005__center-image {
        width: 240px;
        height: 300px;
    }

    .section-005__product-image {
        width: 190px;
        max-height: 340px;
    }

    .section-005__image-bg {
        width: 280px;
        height: 320px;
        filter: blur(50px);
    }

    .section-005__image-bg--left {
        left: -60px;
    }

    .section-005__image-bg--right {
        right: -60px;
    }

    .section-005__scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .section-005__scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .section-005 {
        padding: 35px 12px;
    }

    .section-005__title {
        font-size: 24px;
    }

    .section-005__subtitle {
        font-size: 18px;
    }

    .section-005__center-image {
        width: 200px;
        height: 260px;
    }

    .section-005__product-image {
        width: 160px;
        max-height: 300px;
    }

    .section-005__feature-title {
        font-size: 17px;
    }

    .section-005__feature-text {
        font-size: 13px;
    }
}

/* section -006 art gallery  */
/* Main Section */
.section-006-gallery {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fef5f9 100%);
    overflow: hidden;
}

.section-006-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.section-006-header {
    text-align: center;
    margin-bottom: 60px;
    animation: section-006-fadeIn 0.8s ease-out;
}

.section-006-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ff69b4;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.section-006-subtitle::before,
.section-006-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff69b4);
}

.section-006-subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.section-006-subtitle::after {
    left: 100%;
    margin-left: 15px;
    background: linear-gradient(90deg, #ff69b4, transparent);
}

.section-006-title {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-006-divider {
    width: 200px;
    height: 20px;
    margin: 0 auto;
}

.section-006-divider svg {
    width: 100%;
    height: 100%;
}

/* Gallery Grid */
.section-006-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.section-006-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: section-006-slideUp 0.6s ease-out backwards;
}

.section-006-item:nth-child(1) { animation-delay: 0.1s; }
.section-006-item:nth-child(2) { animation-delay: 0.2s; }
.section-006-item:nth-child(3) { animation-delay: 0.3s; }
.section-006-item:nth-child(4) { animation-delay: 0.4s; }
.section-006-item:nth-child(5) { animation-delay: 0.5s; }
.section-006-item:nth-child(6) { animation-delay: 0.6s; }

.section-006-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
}

/* Grid Item Variations */
.section-006-item-large {
    grid-column: span 2;
}

.section-006-item-tall {
    grid-row: span 2;
}

.section-006-item-wide {
    grid-column: span 2;
}

.section-006-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.section-006-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-006-item:hover .section-006-image {
    transform: scale(1.1);
}

/* Overlay */
.section-006-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 105, 180, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.section-006-item:hover .section-006-overlay {
    opacity: 1;
}

.section-006-overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.section-006-item:hover .section-006-overlay-content {
    transform: translateY(0);
}

.section-006-overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-006-overlay-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* CTA Button */
.section-006-cta {
    text-align: center;
    margin-top: 60px;
    animation: section-006-fadeIn 0.8s ease-out 0.7s backwards;
}

.section-006-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
}

.section-006-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.section-006-button:hover::before {
    left: 100%;
}

.section-006-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
}

.section-006-button:active {
    transform: translateY(-1px);
}

.section-006-button-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.section-006-button:hover .section-006-button-icon {
    transform: translateX(5px);
}

/* Decorative Elements */
.section-006-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1), transparent);
    pointer-events: none;
}

.section-006-decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: section-006-float 8s ease-in-out infinite;
}

.section-006-decoration-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: section-006-float 10s ease-in-out infinite reverse;
}

/* Animations */
@keyframes section-006-fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section-006-slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section-006-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .section-006-gallery {
        padding: 60px 15px;
    }

    .section-006-title {
        font-size: 40px;
    }

    .section-006-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .section-006-item-large,
    .section-006-item-wide {
        grid-column: span 1;
    }

    .section-006-item-tall {
        grid-row: span 1;
    }

    .section-006-image-wrapper {
        min-height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-006-gallery {
        padding: 50px 15px;
    }

    .section-006-header {
        margin-bottom: 40px;
    }

    .section-006-subtitle {
        font-size: 14px;
    }

    .section-006-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-006-divider {
        width: 150px;
    }

    .section-006-grid {
        /* grid-template-columns: 1fr; */
        gap: 15px;
    }

    .section-006-item-large,
    .section-006-item-wide,
    .section-006-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-006-image-wrapper {
        min-height: 280px;
    }

    .section-006-overlay {
        padding: 20px;
    }

    .section-006-overlay-title {
        font-size: 20px;
    }

    .section-006-overlay-text {
        font-size: 14px;
    }

    .section-006-cta {
        margin-top: 40px;
    }

    .section-006-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .section-006-subtitle::before,
    .section-006-subtitle::after {
        width: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-006-gallery {
        padding: 40px 10px;
    }

    .section-006-title {
        font-size: 28px;
    }

    .section-006-image-wrapper {
        min-height: 250px;
    }

    .section-006-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
    .section-006-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* section -007 testimonials  */
/* Section 007: Main Container */
.section-007 {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe5ec 50%, #fff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.section-007::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    animation: section-007-float 20s ease-in-out infinite;
}

.section-007::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.08) 0%, transparent 70%);
    animation: section-007-float 15s ease-in-out infinite reverse;
}

@keyframes section-007-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.section-007-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-007-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-007-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    animation: section-007-pulse 2s ease-in-out infinite;
}

@keyframes section-007-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-007-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-007-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Grid */
.section-007-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Testimonial Card */
.section-007-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.section-007-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
    border-color: #ffb6c1;
}

.section-007-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-007-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.section-007-featured {
    background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
    border: 2px solid #ff69b4;
    transform: scale(1.02);
}

.section-007-featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Card Header */
.section-007-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-007-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.section-007-rating {
    display: flex;
    gap: 4px;
}

.section-007-rating i {
    color: #ffd700;
    font-size: 18px;
    animation: section-007-star-twinkle 2s ease-in-out infinite;
}

.section-007-rating i:nth-child(2) { animation-delay: 0.2s; }
.section-007-rating i:nth-child(3) { animation-delay: 0.4s; }
.section-007-rating i:nth-child(4) { animation-delay: 0.6s; }
.section-007-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes section-007-star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

/* Testimonial Text */
.section-007-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

/* Author Section */
.section-007-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #ffe5ec;
}

.section-007-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff69b4;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    transition: transform 0.3s ease;
}

.section-007-card:hover .section-007-avatar {
    transform: scale(1.1);
}

.section-007-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-007-info {
    flex: 1;
}

.section-007-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.section-007-position {
    font-size: 14px;
    color: #ff69b4;
    font-weight: 500;
}

/* Stats Section */
.section-007-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1);
}

.section-007-stat {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe5ec 100%);
    transition: transform 0.3s ease;
}

.section-007-stat:hover {
    transform: translateY(-5px);
}

.section-007-stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.section-007-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .section-007 {
        padding: 20px 20px;
    }

    .section-007-title {
        font-size: 40px;
    }

    .section-007-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .section-007-card {
        padding: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-007 {
        padding: 20px 15px;
    }

    .section-007-header {
        margin-bottom: 40px;
    }

    .section-007-badge {
        font-size: 13px;
        padding: 8px 20px;
    }

    .section-007-title {
        font-size: 32px;
    }

    .section-007-subtitle {
        font-size: 16px;
    }

    .section-007-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .section-007-card {
        padding: 25px;
    }

    .section-007-featured {
        transform: scale(1);
    }

    .section-007-quote-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .section-007-rating i {
        font-size: 16px;
    }

    .section-007-text {
        font-size: 15px;
    }

    .section-007-avatar {
        width: 50px;
        height: 50px;
    }

    .section-007-name {
        font-size: 16px;
    }

    .section-007-position {
        font-size: 13px;
    }

    .section-007-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }

    .section-007-stat {
        padding: 15px;
    }

    .section-007-stat-number {
        font-size: 36px;
    }

    .section-007-stat-label {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-007-title {
        font-size: 28px;
    }
        .section-007-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }


    .section-007-subtitle {
        font-size: 15px;
    }

    .section-007-card {
        padding: 20px;
    }

    .section-007-stats {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }

    .section-007-stat-number {
        font-size: 32px;
    }
}
/* ================================================================================================================= */
/* About us page  */
  /* About Us Section - 010 */
        .about-us-section-010 {
            padding: 30px 20px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .about-us-section-010-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
            /* background: white; */
            border-radius: 30px;
            padding: 15px;
            /* box-shadow: 0 20px 60px rgba(139, 69, 19, 0.1); */
            position: relative;
            overflow: hidden;
        }

        .about-us-section-010-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(139, 69, 19, 0.05));
            border-radius: 50%;
            z-index: 0;
        }

        .about-us-section-010-content {
            position: relative;
            z-index: 1;
        }

        .about-us-section-010-badge {
            display: inline-block;
            color: #ff6b9d;
            font-size: 1.1rem;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            position: relative;
            padding-left: 50px;
        }

        .about-us-section-010-badge::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #ff6b9d, #8b4513);
        }

        .about-us-section-010-title {
            font-size: 3.5rem;
            color: #2c2c2c;
                font-family: 'Great Vibes', cursive;
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 700;
        }

        .about-us-section-010-title-highlight {
            background: linear-gradient(135deg, #ff6b9d, #8b4513);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-us-section-010-decorative {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b9d, #8b4513);
            margin: 30px 0;
            border-radius: 2px;
        }

        .about-us-section-010-description {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-us-section-010-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .about-us-section-010-feature {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #444;
        }

        .about-us-section-010-feature-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #ff6b9d, #8b4513);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .about-us-section-010-feature-icon i {
            color: white;
            font-size: 0.7rem;
        }

        .about-us-section-010-cta-group {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .about-us-section-010-button {
            padding: 16px 40px;
            background: linear-gradient(135deg, #ff6b9d, #8b4513);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
        }

        .about-us-section-010-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
        }

        .about-us-section-010-founder {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(139, 69, 19, 0.05));
            border-radius: 15px;
            border-left: 4px solid #ff6b9d;
        }

        .about-us-section-010-founder-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #ff6b9d;
            object-fit: cover;
        }

        .about-us-section-010-founder-info {
            flex: 1;
        }

        .about-us-section-010-founder-name {
            font-size: 1.2rem;
            color: #2c2c2c;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .about-us-section-010-founder-title {
            font-size: 0.95rem;
            color: #8b4513;
            font-style: italic;
        }

.about-us-section-010-image-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center;     /* Centers the image vertically */
    height: 100%;            /* Optional: Adjust the height if needed */
}

.about-us-section-010-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2); */
}

.about-us-section-010-image-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    /* background: linear-gradient(45deg, #ff6b9d, #8b4513); */
    border-radius: 30px;
    z-index: -1;
    animation: about-us-section-010-border-glow 3s ease-in-out infinite;
}

@keyframes about-us-section-010-border-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.about-us-section-010-main-image {
    object-fit: cover;
    display: block;
    border-radius: 30px;
    max-width: 100%; /* Ensures the image does not exceed the container width */
    height: auto;    /* Maintains aspect ratio */
}


        .about-us-section-010-experience-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            z-index: 2;
            animation: about-us-section-010-float 3s ease-in-out infinite;
        }

        @keyframes about-us-section-010-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .about-us-section-010-experience-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff6b9d, #8b4513);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .about-us-section-010-experience-plus {
            font-size: 1.5rem;
            color: #ff6b9d;
            font-weight: 700;
        }

        .about-us-section-010-experience-text {
            font-size: 0.9rem;
            color: #8b4513;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
            font-weight: 600;
        }

        .about-us-section-010-decorative-leaf {
            position: absolute;
            bottom: 30px;
            left: 30px;
            width: 80px;
            height: 80px;
            opacity: 0.3;
            z-index: 2;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-us-section-010-container {
                /* grid-template-columns: 1fr; */
                gap: 40px;
                padding: 10px;
            }

            .about-us-section-010-title {
                font-size: 2.8rem;
            }

            .about-us-section-010-main-image {
                height: 465px;
            }

            .about-us-section-010-experience-badge {
                width: 120px;
                height: 120px;
            }

            .about-us-section-010-experience-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .about-us-section-010 {
                padding: 20px 15px;
            }

            .about-us-section-010-container {
                 grid-template-columns: 1fr;
                padding: 20px 20px;
                gap: 30px;
            }

            .about-us-section-010-title {
                font-size: 2.2rem;
            }

            .about-us-section-010-description {
                font-size: 1rem;
            }

            .about-us-section-010-main-image {
                height: 400px;
            }

            .about-us-section-010-cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .about-us-section-010-button {
                text-align: center;
                width: 100%;
            }

            .about-us-section-010-experience-badge {
                width: 100px;
                height: 100px;
                top: 20px;
                right: 20px;
            }

            .about-us-section-010-experience-number {
                font-size: 2rem;
            }

            .about-us-section-010-experience-text {
                font-size: 0.75rem;
            }

            .about-us-section-010-founder {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .about-us-section-010-title {
                font-size: 1.8rem;
            }
            .about-us-section-010-button

 {
    padding: 16px;
 }

            .about-us-section-010-badge {
                font-size: 0.9rem;
                padding-left: 35px;
            }

            .about-us-section-010-badge::before {
                width: 30px;
            }

            .about-us-section-010-main-image {
                height: 247px;
            }

            .about-us-section-010-feature {
                font-size: 0.95rem;
            }
        }

        /* ============================================
   CHIRAG BRIDAL MEHANDI - OUR EXPERTISE SECTION
   Section Class: section-011
   ============================================ */

/* ============================================
   CHIRAG BRIDAL MEHANDI - OUR EXPERTISE SECTION
   Section Class: section-011
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    --section-011-primary: #ff1493;
    --section-011-secondary: #ff69b4;
    --section-011-accent: #ffc0cb;
    --section-011-dark: #8b0055;
    --section-011-light: #fff0f5;
    --section-011-white: #ffffff;
    --section-011-text: #333333;
    --section-011-text-light: #666666;
    --section-011-shadow: rgba(255, 20, 147, 0.15);
    --section-011-gradient: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
}

/* === RESET & BASE === */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
} */

/* === MAIN SECTION === */
.section-011-expertise {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffffff 50%, #ffe4f0 100%);
    position: relative;
    overflow: hidden;
}

.section-011-expertise::before {
    content: '🌸';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 100px;
    opacity: 0.05;
    animation: section-011-float 6s ease-in-out infinite;
}

.section-011-expertise::after {
    content: '🌸';
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 120px;
    opacity: 0.05;
    animation: section-011-float 8s ease-in-out infinite reverse;
}

/* === CONTAINER === */
.section-011-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === SECTION HEADER === */
.section-011-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-011-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-011-line {
    width: 60px;
    height: 2px;
    background: var(--section-011-gradient);
    border-radius: 2px;
}

.section-011-text {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--section-011-primary);
    text-shadow: 0 2px 4px rgba(255, 20, 147, 0.1);
}

.section-011-title {
    font-family: 'Great Vibes', cursive !important;
    font-size: 64px;
    font-weight: 400;
    color: var(--section-011-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(139, 0, 85, 0.1);
}

.section-011-title::after {
    content: '🌸';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 28px;
    animation: section-011-pulse 2s ease-in-out infinite;
}

.section-011-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--section-011-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === GRID LAYOUT === */
.section-011-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* === CARD STYLES === */
.section-011-card {
    background: var(--section-011-white);
    border-radius: 25px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px var(--section-011-shadow);
    border: 2px solid transparent;
}

.section-011-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--section-011-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.section-011-card:hover::before {
    transform: scaleX(1);
}

.section-011-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.25);
    border-color: var(--section-011-accent);
}

.section-011-card-inner {
    position: relative;
    z-index: 2;
}

/* === ICON WRAPPER === */
.section-011-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-011-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--section-011-gradient);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.section-011-card:hover .section-011-icon-bg {
    transform: scale(1.2);
    opacity: 0.15;
}

.section-011-icon {
    font-size: 40px;
    background: var(--section-011-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.section-011-card:hover .section-011-icon {
    transform: scale(1.15) rotate(10deg);
}

/* === CARD CONTENT === */
.section-011-card-title {
    font-family: 'Satisfy', cursive !important;
    font-size: 30px;
    font-weight: 400;
    color: var(--section-011-dark);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(139, 0, 85, 0.1);
}

.section-011-card:hover .section-011-card-title {
    color: var(--section-011-primary);
}

.section-011-card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--section-011-text-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

/* === SERVICE DETAILS === */
.section-011-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.section-011-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5) 0%, rgba(255, 192, 203, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.section-011-detail-item:hover {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8) 0%, rgba(255, 192, 203, 0.2) 100%);
    border-left-color: var(--section-011-primary);
    transform: translateX(5px);
}

.section-011-detail-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-011-gradient);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.section-011-detail-icon i {
    font-size: 18px;
    color: var(--section-011-white);
}

.section-011-detail-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.section-011-detail-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--section-011-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-011-detail-value {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--section-011-dark);
}

/* === CARD DECORATION === */
.section-011-card-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    opacity: 0.3;
    transition: all 0.4s ease;
    pointer-events: none;
}

.section-011-flower {
    font-size: 40px;
}

.section-011-card:hover .section-011-card-decoration {
    opacity: 0.6;
    transform: rotate(20deg) scale(1.2);
}

/* === BOTTOM DECORATION === */
.section-011-bottom-decoration {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.section-011-henna-pattern {
    width: 200px;
    height: 3px;
    background: var(--section-011-gradient);
    border-radius: 10px;
    position: relative;
}

.section-011-henna-pattern::before,
.section-011-henna-pattern::after {
    content: '🌸';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.section-011-henna-pattern::before {
    left: -30px;
}

.section-011-henna-pattern::after {
    right: -30px;
}

/* === ANIMATIONS === */
@keyframes section-011-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes section-011-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* === TABLET RESPONSIVE (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .section-011-expertise {
        padding: 80px 20px;
    }

    .section-011-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .section-011-text {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .section-011-title {
        font-size: 54px;
    }

    .section-011-description {
        font-size: 18px;
    }

    .section-011-card {
        padding: 40px 30px;
    }

    .section-011-card-title {
        font-size: 28px;
    }

    .section-011-card-description {
        font-size: 13px;
    }

    .section-011-detail-item {
        gap: 12px;
        padding: 12px;
    }

    .section-011-detail-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .section-011-detail-icon i {
        font-size: 16px;
    }

    .section-011-detail-label {
        font-size: 11px;
    }

    .section-011-detail-value {
        font-size: 14px;
    }
}

/* === MOBILE RESPONSIVE (max-width: 767px) === */
@media screen and (max-width: 768px) {
    .section-011-expertise {
        padding: 60px 15px;
    }

    .section-011-expertise::before,
    .section-011-expertise::after {
        font-size: 60px;
    }

    .section-011-header {
        margin-bottom: 50px;
    }

    .section-011-line {
        width: 40px;
    }

    .section-011-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-011-title {
        font-size: 44px;
    }

    .section-011-title::after {
        right: -25px;
        top: -5px;
        font-size: 20px;
    }

    .section-011-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .section-011-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .section-011-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .section-011-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }

    .section-011-icon {
        font-size: 35px;
    }

    .section-011-card-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-011-card-description {
        font-size: 13px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .section-011-details {
        gap: 15px;
        margin-top: 20px;
    }

    .section-011-detail-item {
        gap: 12px;
        padding: 12px;
    }

    .section-011-detail-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .section-011-detail-icon i {
        font-size: 15px;
    }

    .section-011-detail-label {
        font-size: 10px;
    }

    .section-011-detail-value {
        font-size: 13px;
    }

    .section-011-flower {
        font-size: 30px;
    }

    .section-011-bottom-decoration {
        margin-top: 40px;
    }

    .section-011-henna-pattern {
        width: 150px;
    }

    .section-011-henna-pattern::before,
    .section-011-henna-pattern::after {
        font-size: 16px;
    }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media screen and (max-width: 480px) {
    .section-011-expertise {
        padding: 20px 10px;
    }

    .section-011-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section-011-title {
        font-size: 38px;
    }

    .section-011-description {
        font-size: 15px;
    }

    .section-011-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-011-card {
        padding: 30px 20px;
    }

    .section-011-card-title {
        font-size: 24px;
    }

    .section-011-card-description {
        font-size: 12px;
    }

    .section-011-details {
        gap: 12px;
    }

    .section-011-detail-item {
        gap: 10px;
        padding: 10px;
    }

    .section-011-detail-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .section-011-detail-icon i {
        font-size: 14px;
    }

    .section-011-detail-label {
        font-size: 10px;
    }

    .section-011-detail-value {
        font-size: 12px;
    }
}

/* === LARGE DESKTOP (min-width: 1440px) === */
@media screen and (min-width: 1440px) {
    .section-011-expertise {
        padding: 120px 40px;
    }

    .section-011-container {
        max-width: 1600px;
    }

    .section-011-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .section-011-text {
        font-size: 16px;
        letter-spacing: 5px;
    }

    .section-011-title {
        font-size: 72px;
    }

    .section-011-description {
        font-size: 22px;
        max-width: 800px;
    }

    .section-011-card {
        padding: 50px 40px;
    }

    .section-011-card-title {
        font-size: 32px;
    }

    .section-011-card-description {
        font-size: 15px;
    }

    .section-011-details {
        gap: 20px;
    }

    .section-011-detail-item {
        padding: 16px;
    }

    .section-011-detail-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .section-011-detail-icon i {
        font-size: 20px;
    }

    .section-011-detail-label {
        font-size: 13px;
    }

    .section-011-detail-value {
        font-size: 16px;
    }
}
/* ===== Chirag Bridal Mehandi — About Gallery/BTS (Pink + Mehndi Theme) ===== */
.section-gallery-section-015-wrapper {
  /* Theme */
  --bg: #fff7fb;          /* soft pink background */
  --ink: #1b1b1b;
  --muted: #6f6f6f;
  --pink: #e51a87;        /* brand pink */
  --rose: #af0853;        /* soft rose wash */
  --mehndi: #eb20bf;      /* mehndi green */
  --sage: #534805;        /* soft sage accent */
  --gold: #a29208;        /* gentle gold accent */
  --radius: 18px;

  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(120% 120% at 0% 0%, #fff, var(--bg) 60%);
  padding: clamp(32px, 3.5vw, 56px) clamp(16px, 4vw, 72px);
}

.section-gallery-section-015-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Heading / Subheading (Stylish Fonts) ---- */
.section-gallery-section-015-head {
  text-align: center;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.section-gallery-section-015-title {
    font-family: 'Great Vibes', cursive !important;
  padding: 20px;
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: .4px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--mehndi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.section-gallery-section-015-sub {
  font-family: "Parisienne", cursive;     /* graceful script for subhead */
  color: var(--mehndi);
  font-size: clamp(18px, 2.2vw, 26px);
  margin: 0;
  letter-spacing: .2px;
  background: linear-gradient(90deg, var(--mehndi), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Collage Grid ---- */
.section-gallery-section-015-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: clamp(20px, 2.5vw, 30px);
}

@media (min-width: 900px) {
  .section-gallery-section-015-grid {
    grid-template-columns: 1.2fr .8fr 1fr;
    grid-auto-rows: 260px;
  }
}

.section-gallery-section-015-card {
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform .32s ease, filter .32s ease;
}

.section-gallery-section-015-card:hover {
  transform: translateY(-6px) rotateZ(-0.4deg);
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.12));
}

.section-gallery-section-015-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 1) Polaroid */
.section-gallery-section-015-polaroid {
  background: #fff;
  border-radius: 8px;
  padding: 10px 10px 52px;
  box-shadow: 0 10px 18px rgba(232, 90, 165, .15);
  border: 1px solid rgba(47, 107, 79, .08);
}
.section-gallery-section-015-polaroid figcaption {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-family: "Cinzel Decorative", serif;
  font-size: 14px;
  color: #3b3b3b;
}

/* 2) Ornate Border */
.section-gallery-section-015-ornate {
  border: 6px double var(--gold);
  border-radius: var(--radius);
  padding: 6px;
  background:
    radial-gradient(120% 120% at 0% 0%, #fff, transparent 60%),
    radial-gradient(120% 120% at 100% 100%, #fff, transparent 60%),
    linear-gradient(135deg, #fff 0%, #fff 60%, var(--rose) 100%);
}
.section-gallery-section-015-ornate figcaption {
  position: absolute;
  right: 12px; bottom: 12px;
  background: rgba(255, 255, 255, .92);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(0,0,0,.06);
}

/* 3) Tilted Paper */
.section-gallery-section-015-tilt {
  transform: rotate(-2deg);
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 10px 20px rgba(0,0,0,.10),
    0 0 0 10px rgba(246,193,217,.6); /* soft pink mat */
}
.section-gallery-section-015-tilt img { border-radius: 12px; }
.section-gallery-section-015-tilt figcaption {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(90deg, var(--mehndi), var(--pink));
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
}

/* 4) Round Cameo */
.section-gallery-section-015-cameo { display: grid; place-items: center; }
.section-gallery-section-015-cameo img {
  width: 86%; height: 86%;
  border-radius: 999px;
  border: 8px solid #fff;
  outline: 3px dashed var(--mehndi);
  outline-offset: 6px;
  background: #fff;
  box-shadow: 0 16px 24px rgba(47,107,79,.18);
}
.section-gallery-section-015-cameo figcaption {
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  font-size: 12px;
}

/* Make one tile larger on desktop for a nice mosaic */
@media (min-width: 900px) {
  .section-gallery-section-015-polaroid { grid-row: span 2; }
}

/* ---- Minimal Carousel (mobile-first swipe) ---- */
.section-gallery-section-015-carousel {
  margin-top: clamp(22px, 3vw, 34px);
  overflow: hidden;
}

.section-gallery-section-015-track {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.section-gallery-section-015-track img {
  width: min(82vw, 520px);
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
  box-shadow: 0 10px 18px rgba(232,90,165,.16);
}

/* carousel dots */
.section-gallery-section-015-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 10px;
}
.section-gallery-section-015-dots span {
  width: 8px; height: 8px; border-radius: 999px;
  background: #e9e9e9;
}
.section-gallery-section-015-dots span:nth-child(1) { background: var(--pink); }

/* ---- CTA ---- */
.section-gallery-section-015-cta {
  display: grid; place-items: center;
  margin-top: clamp(24px, 3vw, 40px);
}
.section-gallery-section-015-button {
  font-weight: 700;
  letter-spacing: .4px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--mehndi));
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.section-gallery-section-015-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0,0,0,.12);
  filter: saturate(1.05);
}

/* ---- Responsive Tweaks ---- */
@media (max-width: 680px) {
  .section-gallery-section-015-grid { grid-template-columns: 1fr; }
  .section-gallery-section-015-cameo img { width: 78%; height: 78%; }
}


/* ============================================
   CHIRAG BRIDAL MEHANDI - OUR EXPERTISE SECTION
   Section Class: section-011
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    --section-011-primary: #ff1493;
    --section-011-secondary: #ff69b4;
    --section-011-accent: #ffc0cb;
    --section-011-dark: #8b0055;
    --section-011-light: #fff0f5;
    --section-011-white: #ffffff;
    --section-011-text: #333333;
    --section-011-text-light: #666666;
    --section-011-shadow: rgba(255, 20, 147, 0.15);
    --section-011-gradient: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* === MAIN SECTION === */
.section-011-expertise {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffffff 50%, #ffe4f0 100%);
    position: relative;
    overflow: hidden;
}

.section-011-expertise::before {
    content: '🌸';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 100px;
    opacity: 0.05;
    animation: section-011-float 6s ease-in-out infinite;
}

.section-011-expertise::after {
    content: '🌸';
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 120px;
    opacity: 0.05;
    animation: section-011-float 8s ease-in-out infinite reverse;
}

/* === CONTAINER === */
.section-011-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === SECTION HEADER === */
.section-011-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-011-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-011-line {
    width: 60px;
    height: 2px;
    background: var(--section-011-gradient);
    border-radius: 2px;
}

.section-011-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--section-011-primary);
}

.section-011-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--section-011-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-011-title::after {
    content: '🌸';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 24px;
    animation: section-011-pulse 2s ease-in-out infinite;
}

.section-011-description {
    font-size: 18px;
    color: var(--section-011-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === GRID LAYOUT === */
.section-011-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* === CARD STYLES === */
.section-011-card {
    background: var(--section-011-white);
    border-radius: 25px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px var(--section-011-shadow);
    border: 2px solid transparent;
}

.section-011-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--section-011-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.section-011-card:hover::before {
    transform: scaleX(1);
}

.section-011-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.25);
    border-color: var(--section-011-accent);
}

.section-011-card-inner {
    position: relative;
    z-index: 2;
}

/* === ICON WRAPPER === */
.section-011-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-011-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--section-011-gradient);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.section-011-card:hover .section-011-icon-bg {
    transform: scale(1.2);
    opacity: 0.15;
}

.section-011-icon {
    font-size: 40px;
    background: var(--section-011-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.section-011-card:hover .section-011-icon {
    transform: scale(1.15) rotate(10deg);
}

/* === CARD CONTENT === */
.section-011-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--section-011-dark);
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.section-011-card:hover .section-011-card-title {
    color: var(--section-011-primary);
}

.section-011-card-text {
    font-size: 15px;
    color: var(--section-011-text-light);
    line-height: 1.8;
    text-align: center;
}

/* === CARD DECORATION === */
.section-011-card-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.section-011-flower {
    font-size: 40px;
}

.section-011-card:hover .section-011-card-decoration {
    opacity: 0.6;
    transform: rotate(20deg) scale(1.2);
}

/* === BOTTOM DECORATION === */
.section-011-bottom-decoration {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.section-011-henna-pattern {
    width: 200px;
    height: 3px;
    background: var(--section-011-gradient);
    border-radius: 10px;
    position: relative;
}

.section-011-henna-pattern::before,
.section-011-henna-pattern::after {
    content: '🌸';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.section-011-henna-pattern::before {
    left: -30px;
}

.section-011-henna-pattern::after {
    right: -30px;
}

/* === ANIMATIONS === */
@keyframes section-011-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes section-011-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* === TABLET RESPONSIVE (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .section-011-expertise {
        padding: 40px 20px;
    }

    .section-011-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-011-title {
        font-size: 42px;
    }

    .section-011-description {
        font-size: 16px;
    }

    .section-011-card {
        padding: 40px 30px;
    }
}

/* === MOBILE RESPONSIVE (max-width: 767px) === */
@media screen and (max-width: 767px) {
    .section-011-expertise {
        padding: 60px 15px;
    }

    .section-011-expertise::before,
    .section-011-expertise::after {
        font-size: 60px;
    }

    .section-011-header {
        margin-bottom: 50px;
    }

    .section-011-line {
        width: 40px;
    }

    .section-011-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .section-011-title {
        font-size: 32px;
    }

    .section-011-title::after {
        right: -25px;
        top: -5px;
        font-size: 18px;
    }

    .section-011-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .section-011-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-011-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .section-011-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }

    .section-011-icon {
        font-size: 35px;
    }

    .section-011-card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .section-011-card-text {
        font-size: 14px;
    }

    .section-011-flower {
        font-size: 30px;
    }

    .section-011-bottom-decoration {
        margin-top: 40px;
    }

    .section-011-henna-pattern {
        width: 150px;
    }

    .section-011-henna-pattern::before,
    .section-011-henna-pattern::after {
        font-size: 16px;
    }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media screen and (max-width: 480px) {
    .section-011-expertise {
        padding: 50px 10px;
    }

    .section-011-title {
        font-size: 28px;
    }

    .section-011-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-011-card {
        padding: 30px 20px;
    }

    .section-011-card-title {
        font-size: 20px;
    }

    .section-011-card-text {
        font-size: 13px;
    }
}

/* === LARGE DESKTOP (min-width: 1440px) === */
@media screen and (min-width: 1440px) {
    .section-011-expertise {
        padding: 40px 40px;
    }

    .section-011-container {
        max-width: 1600px;
    }

    .section-011-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .section-011-title {
        font-size: 56px;
    }

    .section-011-description {
        font-size: 20px;
        max-width: 800px;
    }

    .section-011-card {
        padding: 50px 40px;
    }
}
/* Prevent outer margins from causing overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
/* ============================================
   CHIRAG BRIDAL MEHANDI - TEAM SECTION
   Section Class: team-section-012
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    --team-012-primary: #ff1493;
    --team-012-secondary: #ff69b4;
    --team-012-accent: #ffc0cb;
    --team-012-mehandi: #8b6914;
    --team-012-mehandi-light: #d4af37;
    --team-012-dark: #8b0055;
    --team-012-light: #fff0f5;
    --team-012-white: #ffffff;
    --team-012-text: #333333;
    --team-012-text-light: #666666;
    --team-012-shadow: rgba(255, 20, 147, 0.15);
    --team-012-gradient: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    --team-012-mehandi-gradient: linear-gradient(135deg, #d4af37 0%, #8b6914 100%);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* === MAIN SECTION === */
.team-section-012 {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 50%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.team-section-012::before {
    content: '🌸';
    position: absolute;
    top: 100px;
    left: 80px;
    font-size: 120px;
    opacity: 0.04;
    animation: team-012-float 8s ease-in-out infinite;
}

.team-section-012::after {
    content: '✨';
    position: absolute;
    bottom: 100px;
    right: 80px;
    font-size: 100px;
    opacity: 0.04;
    animation: team-012-float 10s ease-in-out infinite reverse;
}

/* === CONTAINER === */
.team-section-012-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === SECTION HEADER === */
.team-section-012-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-section-012-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.team-section-012-line {
    width: 60px;
    height: 2px;
    background: var(--team-012-gradient);
    border-radius: 2px;
}

.team-section-012-text {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--team-012-primary);
    text-shadow: 0 2px 4px rgba(255, 20, 147, 0.1);
}

.team-section-012-title {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    color: var(--team-012-dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(139, 0, 85, 0.1);
}

.team-section-012-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--team-012-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === TEAM GRID === */
.team-section-012-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

/* === TEAM CARD === */
.team-section-012-card {
    background: var(--team-012-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--team-012-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-section-012-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--team-012-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 10;
}

.team-section-012-card:hover::before {
    transform: scaleX(1);
}

.team-section-012-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 70px rgba(255, 20, 147, 0.25);
}

.team-section-012-card-inner {
    position: relative;
}

/* === IMAGE SECTION === */
.team-section-012-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-section-012-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--team-012-gradient);
    opacity: 0.1;
    transition: opacity 0.4s ease;
}

.team-section-012-card:hover .team-section-012-image-bg {
    opacity: 0.2;
}

.team-section-012-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-section-012-card:hover .team-section-012-image {
    transform: scale(1.1);
}

.team-section-012-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(139, 0, 85, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.team-section-012-card:hover .team-section-012-overlay {
    opacity: 1;
}

.team-section-012-social {
    display: flex;
    gap: 15px;
}

.team-section-012-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--team-012-white);
    color: var(--team-012-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-section-012-card:hover .team-section-012-social-link {
    transform: translateY(0);
    opacity: 1;
}

.team-section-012-social-link:nth-child(1) {
    transition-delay: 0.1s;
}

.team-section-012-social-link:nth-child(2) {
    transition-delay: 0.2s;
}

.team-section-012-social-link:nth-child(3) {
    transition-delay: 0.3s;
}

.team-section-012-social-link:hover {
    background: var(--team-012-gradient);
    color: var(--team-012-white);
    transform: translateY(-5px);
}

.team-section-012-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--team-012-mehandi-gradient);
    color: var(--team-012-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
    z-index: 5;
}

/* === CONTENT SECTION === */
.team-section-012-content {
    padding: 35px 30px;
}

.team-section-012-name {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 700;
    color: var(--team-012-dark);
    margin-bottom: 8px;
    text-align: center;
}

.team-section-012-role {
    font-family: 'Libre Baskerville', serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--team-012-mehandi);
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

/* === STATS === */
.team-section-012-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.team-section-012-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.team-section-012-stat-item i {
    font-size: 24px;
    background: var(--team-012-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section-012-stat-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--team-012-text);
}

/* === BIO === */
.team-section-012-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--team-012-text-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 20px;
}

/* === SPECIALTIES === */
.team-section-012-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.team-section-012-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--team-012-primary);
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8) 0%, rgba(255, 192, 203, 0.3) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.team-section-012-tag:hover {
    background: var(--team-012-gradient);
    color: var(--team-012-white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* === TESTIMONIAL === */
.team-section-012-testimonial {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(139, 105, 20, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--team-012-mehandi-light);
}

.team-section-012-quote-icon {
    font-size: 20px;
    color: var(--team-012-mehandi-light);
    margin-bottom: 10px;
}

.team-section-012-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--team-012-text);
    line-height: 1.7;
    text-align: center;
}

/* === CTA SECTION === */
.team-section-012-cta {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(255, 105, 180, 0.05) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.team-section-012-cta::before {
    content: '🌸';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 60px;
    opacity: 0.1;
}

.team-section-012-cta::after {
    content: '🌸';
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 60px;
    opacity: 0.1;
}

.team-section-012-cta-content {
    position: relative;
    z-index: 1;
}

.team-section-012-cta-title {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    font-weight: 700;
    color: var(--team-012-dark);
    margin-bottom: 15px;
}

.team-section-012-cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--team-012-text-light);
    margin-bottom: 30px;
}

.team-section-012-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--team-012-gradient);
    color: var(--team-012-white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.team-section-012-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.team-section-012-cta-button:hover::before {
    left: 100%;
}

.team-section-012-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.team-section-012-cta-button i {
    transition: transform 0.3s ease;
}

.team-section-012-cta-button:hover i {
    transform: translateX(5px);
}

/* === ANIMATIONS === */
@keyframes team-012-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* === TABLET RESPONSIVE (768px - 1024px) === */
@media screen and (max-width: 1024px) {
    .team-section-012 {
        padding: 40px 20px;
    }

    .team-section-012-header {
        margin-bottom: 60px;
    }

    .team-section-012-text {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .team-section-012-title {
        font-size: 54px;
    }

    .team-section-012-description {
        font-size: 18px;
    }

    .team-section-012-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .team-section-012-image-wrapper {
        height: 350px;
    }

    .team-section-012-content {
        padding: 30px 25px;
    }

    .team-section-012-name {
        font-size: 28px;
    }

    .team-section-012-cta-title {
        font-size: 36px;
    }
}

/* === MOBILE RESPONSIVE (max-width: 767px) === */
@media screen and (max-width: 768px) {
    .team-section-012 {
        padding: 60px 15px;
    }

    .team-section-012::before,
    .team-section-012::after {
        font-size: 70px;
    }

    .team-section-012-header {
        margin-bottom: 50px;
    }

    .team-section-012-line {
        width: 40px;
    }

    .team-section-012-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .team-section-012-title {
        font-size: 44px;
    }

    .team-section-012-description {
        font-size: 16px;
        padding: 0 10px;
    }
        .team-section-012-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    /* .team-section-012-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    } */

    .team-section-012-card {
        border-radius: 25px;
    }

    .team-section-012-image-wrapper {
        height: 320px;
    }

    .team-section-012-badge {
        top: 15px;
        right: 15px;
        padding: 6px 15px;
        font-size: 11px;
    }

    .team-section-012-content {
        padding: 25px 20px;
    }

    .team-section-012-name {
        font-size: 26px;
    }

    .team-section-012-role {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .team-section-012-stats {
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .team-section-012-stat-item i {
        font-size: 20px;
    }

    .team-section-012-stat-item span {
        font-size: 13px;
    }

    .team-section-012-bio {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .team-section-012-specialties {
        margin-bottom: 20px;
    }

    .team-section-012-tag {
        font-size: 10px;
        padding: 6px 12px;
    }

    .team-section-012-testimonial {
        padding: 15px;
    }

    .team-section-012-quote-icon {
        font-size: 18px;
    }

    .team-section-012-quote {
        font-size: 13px;
    }

    .team-section-012-cta {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .team-section-012-cta::before,
    .team-section-012-cta::after {
        font-size: 40px;
    }

    .team-section-012-cta-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .team-section-012-cta-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .team-section-012-cta-button {
        padding: 15px 35px;
        font-size: 15px;
    }

    .team-section-012-social-link {
        width: 40px;
        height: 40px;
    }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media screen and (max-width: 480px) {
    .team-section-012 {
        padding: 50px 10px;
    }
        .team-section-012-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }

    .team-section-012-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .team-section-012-title {
        font-size: 38px;
    }

    .team-section-012-description {
        font-size: 15px;
    }

    .team-section-012-grid {
        gap: 30px;
    }

    .team-section-012-image-wrapper {
        height: 280px;
    }

    .team-section-012-content {
        padding: 20px 15px;
    }

    .team-section-012-name {
        font-size: 24px;
    }

    .team-section-012-role {
        font-size: 13px;
    }

    .team-section-012-bio {
        font-size: 12px;
    }

    .team-section-012-cta-title {
        font-size: 28px;
    }

    .team-section-012-cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* === LARGE DESKTOP (min-width: 1440px) === */
@media screen and (min-width: 1440px) {
    .team-section-012 {
        padding: 40px 40px;
    }

    .team-section-012-container {
        max-width: 1600px;
    }

    .team-section-012-header {
        margin-bottom: 90px;
    }

    .team-section-012-text {
        font-size: 16px;
        letter-spacing: 5px;
    }

    .team-section-012-title {
        font-size: 72px;
    }

    .team-section-012-description {
        font-size: 22px;
        max-width: 800px;
    }

    .team-section-012-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        /* margin-bottom: 100px; */
    }

    .team-section-012-image-wrapper {
        height: 450px;
    }

    .team-section-012-content {
        padding: 40px 35px;
    }

    .team-section-012-name {
        font-size: 36px;
    }

    .team-section-012-role {
        font-size: 16px;
    }

    .team-section-012-bio {
        font-size: 15px;
    }

    .team-section-012-cta {
        padding: 40px 40px;
    }

    .team-section-012-cta-title {
        font-size: 48px;
    }

    .team-section-012-cta-text {
        font-size: 18px;
    }

    .team-section-012-cta-button {
        padding: 20px 45px;
        font-size: 17px;
    }
}
/* =========================================================================================================== */
/* contact-us - Banner  */
/* Banner Section */
.banner-section {
    position: relative;
    height: 40vh;
    min-height: 400px;
    background-image: url('https://img.freepik.com/free-vector/elegant-background-with-decorative-mandala-design_1048-12864.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Overlay */
.banner-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Container */
.banner-section__container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

/* Left - Buttons */
.banner-section__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 130px;
}

.banner-section__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-section__btn svg {
    width: 22px;
    height: 22px;
}

.banner-section__btn--home {
    background: #ffffff;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.banner-section__btn--home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.banner-section__btn--contact {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.banner-section__btn--contact:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Right - Image */
.banner-section__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .banner-section__container {
        padding: 0 40px;
        gap: 40px;
    }

    .banner-section__image {
        max-width: 450px;
        max-height: 400px;
    }

    .banner-section__btn {
        padding: 16px 35px;
        font-size: 17px;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        min-height: auto;
        /* padding: 60px 0; */
        background-attachment: scroll;
    }

    .banner-section__container {
        /* grid-template-columns: 1fr; */
        gap: 50px;
        padding: 0 30px;
    }

    .banner-section__buttons {
        max-width: 100%;
        align-items: center;
    }

    .banner-section__btn {
        width: 100%;
        max-width: 125px;
    }

    .banner-section__image-wrapper {
        order: -1;
    }

    .banner-section__image {
        max-width: 350px;
        max-height: 380px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .banner-section {
        padding: 50px 0;
    }

    .banner-section__container {
        padding: 0 20px;
        gap: 40px;
    }

    .banner-section__btn {
        padding: 15px 30px;
        font-size: 16px;
        max-width: 100%;
    }

    .banner-section__btn svg {
        width: 20px;
        height: 20px;
    }

    .banner-section__image {
        max-width: 300px;
        max-height: 340px;
        border-radius: 15px;
    }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
    .banner-section__container {
        padding: 0 15px;
    }

    .banner-section__btn {
        padding: 14px 25px;
        font-size: 15px;
    }

    .banner-section__image {
        max-width: 260px;
        max-height: 300px;
    }
}

/* contact page - section -001  */
/* Contact Page Section - Main Container */
.contact-page-section-001 {
    /* padding: 80px 20px; */
    background: linear-gradient(135deg, #ffffff 0%, #fef5f8 100%);
    position: relative;
    overflow: hidden;
}

.contact-page-section-001__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Image Section */
.contact-page-section-001__image-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

/* Decorative Leaves - Left Side */
.contact-page-section-001__decoration-leaves {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.contact-page-section-001__leaves {
    width: 120px;
    height: auto;
}

/* Decorative Rose - Bottom Left */
.contact-page-section-001__decoration-rose {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 3;
}

.contact-page-section-001__rose {
    width: 150px;
    height: 150px;
}

/* Main Image Circle */
.contact-page-section-001__image-circle {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.contact-page-section-001__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Form Section */
.contact-page-section-001__form-side {
    padding: 40px;
    margin: 10px;
}

/* Header */
.contact-page-section-001__header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-section-001__subtitle {
    font-family: 'Brush Script MT', cursive;
    color: #ff6b9d;
    font-size: 28px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.contact-page-section-001__title {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-page-section-001__divider {
    display: flex;
    justify-content: center;
}

.contact-page-section-001__divider-svg {
    width: 200px;
    height: 20px;
}

/* Form */
.contact-page-section-001__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-section-001__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-page-section-001__form-group {
    width: 100%;
}

.contact-page-section-001__form-group--full {
    grid-column: 1 / -1;
}

.contact-page-section-001__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page-section-001__input-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.contact-page-section-001__input,
.contact-page-section-001__select {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 15px;
    color: #666;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-page-section-001__input::placeholder {
    color: #999;
}

.contact-page-section-001__input:focus,
.contact-page-section-001__select:focus {
    border-color: #ff6b9d;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

/* Select Dropdown */
.contact-page-section-001__select {
    appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.contact-page-section-001__select-arrow {
    position: absolute;
    right: 18px;
    width: 20px;
    height: 20px;
    color: #999;
    pointer-events: none;
}

/* Submit Button */
.contact-page-section-001__button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.contact-page-section-001__submit-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4f8e 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 79, 142, 0.4);
}

.contact-page-section-001__submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 79, 142, 0.5);
}



/* Tablet Responsive - 1024px */
@media (max-width: 1024px) {
    /* .contact-page-section-001 {
        padding: 60px 20px;
    } */

    .contact-page-section-001__container {
        gap: 60px;
    }

    .contact-page-section-001__image-side {
        height: 500px;
    }

    .contact-page-section-001__image-circle {
        width: 400px;
        height: 400px;
    }

    .contact-page-section-001__leaves {
        width: 100px;
    }

    .contact-page-section-001__rose {
        width: 120px;
        height: 120px;
    }

    .contact-page-section-001__title {
        font-size: 36px;
    }

    .contact-page-section-001__subtitle {
        font-size: 24px;
    }

    .contact-page-section-001__form-side {
        padding: 20px;
    }
}

/* Tablet Responsive - 768px */
@media (max-width: 768px) {
    /* .contact-page-section-001 {
        padding: 50px 15px;
    } */

    .contact-page-section-001__container {
        /* grid-template-columns: 1fr; */
        gap: 50px;
    }

    .contact-page-section-001__image-side {
        height: 450px;
        order: -1;
    }

    .contact-page-section-001__image-circle {
        width: 350px;
        height: 350px;
    }

    .contact-page-section-001__decoration-leaves {
        left: -10px;
    }

    .contact-page-section-001__leaves {
        width: 80px;
    }

    .contact-page-section-001__decoration-rose {
        left: 20px;
        bottom: 20px;
    }

    .contact-page-section-001__rose {
        width: 100px;
        height: 100px;
    }

    .contact-page-section-001__form-side {
        padding: 0;
    }

    .contact-page-section-001__header {
        margin-bottom: 35px;
    }

    .contact-page-section-001__title {
        font-size: 32px;
    }

    .contact-page-section-001__subtitle {
        font-size: 22px;
    }

    .contact-page-section-001__form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-page-section-001__input,
    .contact-page-section-001__select {
        padding: 15px 18px 15px 48px;
        font-size: 14px;
    }

    .contact-page-section-001__submit-btn {
        font-size: 17px;
        padding: 16px 50px;
    }

    .contact-page-section-001__scroll-top {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
    }

    .contact-page-section-001__scroll-top svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile Responsive - 480px */
@media (max-width: 480px) {
    /* .contact-page-section-001 {
        padding: 40px 15px;
    } */
        .contact-page-section-001__container {
        grid-template-columns: 1fr;
        gap: 50px;
        }

    .contact-page-section-001__container {
        gap: 40px;
    }

    .contact-page-section-001__image-side {
        height: 350px;
    }

    .contact-page-section-001__image-circle {
        width: 280px;
        height: 280px;
    }

    .contact-page-section-001__leaves {
        width: 70px;
    }

    .contact-page-section-001__decoration-rose {
        left: 10px;
        bottom: 10px;
    }

    .contact-page-section-001__rose {
        width: 80px;
        height: 80px;
    }

    .contact-page-section-001__header {
        margin-bottom: 30px;
    }

    .contact-page-section-001__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .contact-page-section-001__subtitle {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contact-page-section-001__divider-svg {
        width: 150px;
    }

    .contact-page-section-001__form {
        gap: 18px;
    }

    .contact-page-section-001__input,
    .contact-page-section-001__select {
        padding: 14px 16px 14px 45px;
        font-size: 14px;
    }

    .contact-page-section-001__input-icon {
        left: 15px;
        width: 18px;
        height: 18px;
    }

    .contact-page-section-001__select-arrow {
        right: 15px;
        width: 18px;
        height: 18px;
    }

    .contact-page-section-001__submit-btn {
        font-size: 16px;
        padding: 15px 40px;
        width: 100%;
    }

    .contact-page-section-001__scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .contact-page-section-001__scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .contact-page-section-001__image-circle {
        width: 240px;
        height: 240px;
    }

    .contact-page-section-001__title {
        font-size: 24px;
    }

    .contact-page-section-001__subtitle {
        font-size: 18px;
    }

    .contact-page-section-001__input,
    .contact-page-section-001__select {
        padding: 13px 15px 13px 42px;
        font-size: 13px;
    }

    .contact-page-section-001__submit-btn {
        font-size: 15px;
        padding: 14px 35px;
    }
}
 /* contact us and map  */
   /* Contact Details Section - 002 */
        .contact-details-section-002 {
            padding: 20px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-details-section-002-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-details-section-002-title {
            font-size: 3rem;
            color: #d63384;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(214, 51, 132, 0.1);
        }

        .contact-details-section-002-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 300;
        }

        .contact-details-section-002-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 7px;
            margin-bottom: 50px;
        }

        .contact-details-section-002-card {
            background: white;
            padding: 20px 10px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(214, 51, 132, 0.1);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-details-section-002-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff6b9d, #d63384);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .contact-details-section-002-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(214, 51, 132, 0.2);
        }

        .contact-details-section-002-card:hover::before {
            transform: scaleX(1);
        }

        .contact-details-section-002-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ff6b9d, #d63384);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: white;
            transition: all 0.4s ease;
        }

        .contact-details-section-002-card:hover .contact-details-section-002-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .contact-details-section-002-label {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .contact-details-section-002-info {
            font-size: .9rem;
            color: #d63384;
            font-weight: 500;
            line-height: 1.6;
        }

        .contact-details-section-002-info a {
            color: #d63384;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details-section-002-info a:hover {
            color: #ff6b9d;
        }

        .contact-details-section-002-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
        }

        .contact-details-section-002-social-link {
            width: 50px;
            height: 50px;
            text-decoration: none !important;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d63384;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(214, 51, 132, 0.15);
        }

        .contact-details-section-002-social-link:hover {
            background: linear-gradient(135deg, #ff6b9d, #d63384);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
        }

        /* Map Section - 004 */
        .map-section-004 {
            padding: 20px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-section-004-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .map-section-004-title {
            font-size: 3rem;
            color: #d63384;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(214, 51, 132, 0.1);
        }

        .map-section-004-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 300;
        }

        .map-section-004-container {
            background: white;
            padding: 20px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(214, 51, 132, 0.15);
            position: relative;
            overflow: hidden;
        }

        .map-section-004-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b9d, #d63384, #ff6b9d);
            border-radius: 25px;
            z-index: -1;
            animation: map-section-004-gradient 3s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes map-section-004-gradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .map-section-004-frame {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 20px;
            display: block;
        }

        .map-section-004-address {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(214, 51, 132, 0.1);
        }

        .map-section-004-address-icon {
            font-size: 2rem;
            color: #d63384;
            margin-bottom: 15px;
        }

        .map-section-004-address-text {
            font-size: 1.2rem;
            color: #333;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-details-section-002-title,
            .map-section-004-title {
                font-size: 2rem;
            }

            .contact-details-section-002-subtitle,
            .map-section-004-subtitle {
                font-size: 1rem;
            }

            .contact-details-section-002,
            .map-section-004 {
                padding: 20px 15px;
            }

            .contact-details-section-002-grid {
                /* grid-template-columns: 1fr; */
                gap: 20px;
            }

            .contact-details-section-002-card {
                padding: 30px 20px;
            }

            .map-section-004-frame {
                height: 350px;
            }

            .contact-details-section-002-social {
                gap: 15px;
            }

            .contact-details-section-002-social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .contact-details-section-002-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .map-section-004-frame {
                height: 450px;
            }
        }
/* ======================================================================================================= */
 /* Gallery section-007  */
   /* Art Gallery Section - 007 */
        .art-gallery-section-007 {
            padding: 50px 20px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .art-gallery-section-007-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .art-gallery-section-007-subtitle {
            font-size: 1rem;
            color: #d4704d;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: 'Arial', sans-serif;
        }

        .art-gallery-section-007-title {
            font-size: 4rem;
            padding: 15px;
              font-family: 'Great Vibes', cursive;
            background: linear-gradient(135deg, #ff6b9d, #d4704d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .art-gallery-section-007-description {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-style: italic;
        }

        .art-gallery-section-007-decorative {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b9d, #d4704d);
            margin: 30px auto;
            border-radius: 2px;
        }

        .art-gallery-section-007-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .art-gallery-section-007-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(212, 112, 77, 0.15);
        }

        .art-gallery-section-007-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(212, 112, 77, 0.8));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 2;
        }

        .art-gallery-section-007-item:hover::before {
            opacity: 1;
        }

        .art-gallery-section-007-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(212, 112, 77, 0.3);
        }

        .art-gallery-section-007-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .art-gallery-section-007-item:hover .art-gallery-section-007-image {
            transform: scale(1.1);
        }

        .art-gallery-section-007-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            transform: translateY(100%);
            transition: transform 0.5s ease;
            z-index: 3;
        }

        .art-gallery-section-007-item:hover .art-gallery-section-007-overlay {
            transform: translateY(0);
        }

        .art-gallery-section-007-overlay-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .art-gallery-section-007-overlay-caption {
            color: #ffccd5;
            font-size: 0.9rem;
            font-style: italic;
        }

        /* Grid Layout Patterns */
        .art-gallery-section-007-item-1 {
            grid-column: span 6;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-2 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-3 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-4 {
            grid-column: span 3;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-5 {
            grid-column: span 3;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-6 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-7 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-8 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-9 {
            grid-column: span 3;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-10 {
            grid-column: span 6;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-11 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-12 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-13 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-14 {
            grid-column: span 4;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-15 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-16 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-17 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-18 {
            grid-column: span 6;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-19 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-20 {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-21 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-22 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-23 {
            grid-column: span 4;
            grid-row: span 1;
            min-height: 190px;
        }

        .art-gallery-section-007-item-24 {
            grid-column: span 6;
            grid-row: span 2;
            min-height: 400px;
        }

        .art-gallery-section-007-item-25 {
            grid-column: span 6;
            grid-row: span 2;
            min-height: 400px;
        }

        /* Responsive Design for Tablets */
        @media (max-width: 1024px) {
            .art-gallery-section-007-title {
                font-size: 3rem;
            }

            .art-gallery-section-007-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 15px;
            }

            .art-gallery-section-007-item-1,
            .art-gallery-section-007-item-10,
            .art-gallery-section-007-item-18,
            .art-gallery-section-007-item-24,
            .art-gallery-section-007-item-25 {
                grid-column: span 6;
                grid-row: span 2;
                min-height: 350px;
            }

            .art-gallery-section-007-item-2,
            .art-gallery-section-007-item-3,
            .art-gallery-section-007-item-6,
            .art-gallery-section-007-item-7,
            .art-gallery-section-007-item-8,
            .art-gallery-section-007-item-11,
            .art-gallery-section-007-item-12,
            .art-gallery-section-007-item-13,
            .art-gallery-section-007-item-15,
            .art-gallery-section-007-item-16,
            .art-gallery-section-007-item-17,
            .art-gallery-section-007-item-19,
            .art-gallery-section-007-item-20,
            .art-gallery-section-007-item-21,
            .art-gallery-section-007-item-22,
            .art-gallery-section-007-item-23 {
                grid-column: span 3;
                grid-row: span 1;
                min-height: 250px;
            }

            .art-gallery-section-007-item-4,
            .art-gallery-section-007-item-5,
            .art-gallery-section-007-item-9,
            .art-gallery-section-007-item-14 {
                grid-column: span 3;
                grid-row: span 2;
                min-height: 350px;
            }
        }

        /* Responsive Design for Mobile */
        @media (max-width: 768px) {
            .art-gallery-section-007 {
                padding: 60px 15px;
            }

            .art-gallery-section-007-title {
                font-size: 2.5rem;
            }

            .art-gallery-section-007-description {
                font-size: 1.1rem;
            }

            .art-gallery-section-007-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .art-gallery-section-007-item-1,
            .art-gallery-section-007-item-10,
            .art-gallery-section-007-item-18,
            .art-gallery-section-007-item-24,
            .art-gallery-section-007-item-25 {
                grid-column: span 2;
                grid-row: span 2;
                min-height: 300px;
            }

            .art-gallery-section-007-item-2,
            .art-gallery-section-007-item-3,
            .art-gallery-section-007-item-4,
            .art-gallery-section-007-item-5,
            .art-gallery-section-007-item-6,
            .art-gallery-section-007-item-7,
            .art-gallery-section-007-item-8,
            .art-gallery-section-007-item-9,
            .art-gallery-section-007-item-11,
            .art-gallery-section-007-item-12,
            .art-gallery-section-007-item-13,
            .art-gallery-section-007-item-14,
            .art-gallery-section-007-item-15,
            .art-gallery-section-007-item-16,
            .art-gallery-section-007-item-17,
            .art-gallery-section-007-item-19,
            .art-gallery-section-007-item-20,
            .art-gallery-section-007-item-21,
            .art-gallery-section-007-item-22,
            .art-gallery-section-007-item-23 {
                grid-column: span 1;
                grid-row: span 1;
                min-height: 200px;
            }

            .art-gallery-section-007-overlay-title {
                font-size: 1rem;
            }

            .art-gallery-section-007-overlay-caption {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .art-gallery-section-007-title {
                font-size: 2rem;
            }

            .art-gallery-section-007-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .art-gallery-section-007-item-1,
            .art-gallery-section-007-item-2,
            .art-gallery-section-007-item-3,
            .art-gallery-section-007-item-4,
            .art-gallery-section-007-item-5,
            .art-gallery-section-007-item-6,
            .art-gallery-section-007-item-7,
            .art-gallery-section-007-item-8,
            .art-gallery-section-007-item-9,
            .art-gallery-section-007-item-10,
            .art-gallery-section-007-item-11,
            .art-gallery-section-007-item-12,
            .art-gallery-section-007-item-13,
            .art-gallery-section-007-item-14,
            .art-gallery-section-007-item-15,
            .art-gallery-section-007-item-16,
            .art-gallery-section-007-item-17,
            .art-gallery-section-007-item-18,
            .art-gallery-section-007-item-19,
            .art-gallery-section-007-item-20,
            .art-gallery-section-007-item-21,
            .art-gallery-section-007-item-22,
            .art-gallery-section-007-item-23,
            .art-gallery-section-007-item-24,
            .art-gallery-section-007-item-25 {
                grid-column: span 1;
                grid-row: span 1;
                min-height: 250px;
            }
        }
/* =============================================================================== */
/* enquiry  */
 .enquiry-section-017-container {
            position: relative;
            min-height: 100vh;
        }

        /* Floating Button */
        .enquiry-section-017-button-wrapper {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .enquiry-section-017-button {
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            color: white;
            border: none;
            padding: 10px 3px;
            /* border-radius: 2rem 0 0 2rem; */
            cursor: pointer;
            display: flex;
            /* flex-direction: column; */
            align-items: center;
            gap: 0.5rem;
            box-shadow: -4px 4px 20px rgba(236, 72, 153, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible;
            font-weight: 600;
            font-size: 1rem;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .enquiry-section-017-button:hover {
            padding-bottom: 2rem;
            box-shadow: -6px 6px 30px rgba(236, 72, 153, 0.6);
        }

        .enquiry-section-017-button-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .enquiry-section-017-button-text {
            display: block;
        }

        /* Popup on Hover */
        .enquiry-section-017-button-popup {
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translateY(-50%) translateX(20px);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding:10px 3px;
            /* border-radius: 1rem; */
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: -4px 4px 20px rgba(139, 92, 246, 0.4);
        }

        .enquiry-section-017-button:hover .enquiry-section-017-button-popup {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        .enquiry-section-017-popup-content {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .enquiry-section-017-popup-mehandi {
            font-size: 1.25rem;
            animation: enquiry-section-017-rotate 3s ease-in-out infinite;
        }

        @keyframes enquiry-section-017-rotate {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        .enquiry-section-017-popup-text {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Overlay */
        .enquiry-section-017-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            transition: background 0.3s ease;
            overflow-y: auto;
        }

        .enquiry-section-017-overlay.enquiry-section-017-overlay-active {
            display: flex;
            background: rgba(0, 0, 0, 0.7);
        }

        /* Modal */
        .enquiry-section-017-modal {
            background: linear-gradient(to bottom, #fdf4ff, #ffffff);
            border-radius: 1.5rem;
            max-width: 600px;
            width: 100%;
            z-index: 99999;
            position: relative;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            transform: scale(0.9) translateY(50px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            max-height: 90vh;
            overflow-y: auto;
        }

        .enquiry-section-017-modal.enquiry-section-017-modal-active {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        @media (min-width: 768px) {
            .enquiry-section-017-modal {
                padding: 2.5rem;
            }
        }

        /* Close Button */
        .enquiry-section-017-close-button {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #f3f4f6;
            border: none;
            border-radius: 50%;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #6b7280;
            z-index: 10000;
            font-size: 1.5rem;
            line-height: 1;
        }

        .enquiry-section-017-close-button:hover {
            background: #ec4899;
            color: white;
            transform: rotate(90deg);
        }

        /* Header */
        .enquiry-section-017-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .enquiry-section-017-header-decoration {
            height: 3px;
            width: 60px;
            background: linear-gradient(90deg, #ec4899, #8b5cf6);
            margin: 0 auto 1rem;
            border-radius: 2px;
        }

        .enquiry-section-017-title {
            font-size: 1.75rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .enquiry-section-017-title {
                font-size: 2rem;
            }
        }

        .enquiry-section-017-subtitle {
            color: #6b7280;
            font-size: 0.95rem;
        }

        /* Form */
        .enquiry-section-017-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .enquiry-section-017-form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 640px) {
            .enquiry-section-017-form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .enquiry-section-017-form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .enquiry-section-017-label {
            font-weight: 600;
            color: #374151;
            font-size: 0.9rem;
        }

        .enquiry-section-017-input,
        .enquiry-section-017-textarea {
            padding: 0.75rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.75rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        .enquiry-section-017-input:focus,
        .enquiry-section-017-textarea:focus {
            outline: none;
            border-color: #ec4899;
            box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
        }

        .enquiry-section-017-textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Submit Button */
        .enquiry-section-017-submit-button {
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 1rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .enquiry-section-017-submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
        }

        .enquiry-section-017-submit-button:active {
            transform: translateY(0);
        }

        .enquiry-section-017-submit-icon {
            font-size: 1.25rem;
        }

        /* Scrollbar Styling */
        .enquiry-section-017-modal::-webkit-scrollbar {
            width: 6px;
        }

        .enquiry-section-017-modal::-webkit-scrollbar-track {
            background: #f3f4f6;
            border-radius: 10px;
        }

        .enquiry-section-017-modal::-webkit-scrollbar-thumb {
            background: #ec4899;
            border-radius: 10px;
        }

        /* Mobile Optimizations */
        @media (max-width: 639px) {
            .enquiry-section-017-button {
                /* padding: 0.875rem 1.25rem; */
                font-size: 0.9rem;
            }

            .enquiry-section-017-modal {
                padding: 1.5rem;
                border-radius: 1.25rem;
            }

            .enquiry-section-017-title {
                font-size: 1.5rem;
            }

            .enquiry-section-017-input,
            .enquiry-section-017-textarea {
                padding: 0.625rem 0.875rem;
                font-size: 0.9rem;
            }

            .enquiry-section-017-submit-button {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* Demo Content */
        .enquiry-section-017-demo-content {
            text-align: center;
            padding: 4rem 2rem;
        }

        .enquiry-section-017-demo-title {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ec4899, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .enquiry-section-017-demo-subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }
/* ================================================================================ */
/* whatsapp button  */
/* WhatsApp Button Section 018 - Pink Mehandi Theme */
/* Complete CSS File - whatsapp-button-section-018.css */



/* WhatsApp Button Container */
.whatsapp-button-section-018-container {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
}

/* WhatsApp Button */
.whatsapp-button-section-018-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 3rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.whatsapp-button-section-018-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.6);
    /* padding-right: 2rem; */
}

.whatsapp-button-section-018-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Icon Wrapper */
.whatsapp-button-section-018-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 2.5rem;
    height: 2.5rem; */
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
/* 
.whatsapp-button-section-018-button:hover .whatsapp-button-section-018-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
} */

/* WhatsApp Icon */
.whatsapp-button-section-018-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    display: block;
}

/* Button Text */
.whatsapp-button-section-018-text {
    display: none;
    white-space: nowrap;
    letter-spacing: 0.025em;
}

/* Pulse Animation */
.whatsapp-button-section-018-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    background: rgba(236, 72, 153, 0.4);
    animation: whatsapp-button-section-018-pulse-animation 2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes whatsapp-button-section-018-pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mehandi Decoration */
.whatsapp-button-section-018-mehandi-decoration {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 1.5rem;
    animation: whatsapp-button-section-018-float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

@keyframes whatsapp-button-section-018-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(5px) rotate(5deg);
    }
}

/* Tablet (768px and above) - Show Text */
@media (min-width: 768px) {
    .whatsapp-button-section-018-text {
        display: block;
    }
    
    .whatsapp-button-section-018-button {
        font-size: 1.05rem;
        /* padding: 1.125rem 1.75rem; */
    }
    
    .whatsapp-button-section-018-icon-wrapper {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .whatsapp-button-section-018-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .whatsapp-button-section-018-mehandi-decoration {
        font-size: 1.75rem;
    }
}

/* Large Desktop (1024px and above) */
@media (min-width: 1024px) {
    .whatsapp-button-section-018-container {
        left: 2rem;
        bottom: 2rem;
    }
    
    .whatsapp-button-section-018-button {
        font-size: 1.1rem;
        /* padding: 1.25rem 2rem; */
    }
    
    .whatsapp-button-section-018-icon-wrapper {
        width: 3rem;
        height: 3rem;
    }
    
    .whatsapp-button-section-018-icon {
        width: 2rem;
        height: 2rem;
    }
}

/* Mobile (767px and below) - Icon Only */
@media (max-width: 767px) {
    .whatsapp-button-section-018-container {
        left: 1rem;
        bottom: 1rem;
    }
    
    .whatsapp-button-section-018-button {
        padding: 0.875rem;
        width: 3.5rem;
        height: 3.5rem;
        justify-content: center;
        border-radius: 50%;
    }
    
    .whatsapp-button-section-018-button:hover {
        padding: 0.875rem;
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .whatsapp-button-section-018-icon-wrapper {
        width: 2rem;
        height: 2rem;
        background: transparent;
    }
    
    .whatsapp-button-section-018-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .whatsapp-button-section-018-mehandi-decoration {
        font-size: 1.25rem;
        top: -0.25rem;
        right: -0.25rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .whatsapp-button-section-018-container {
        left: 0.75rem;
        bottom: 0.75rem;
    }
    
    .whatsapp-button-section-018-button {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0.75rem;
    }
    
    .whatsapp-button-section-018-button:hover {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0.75rem;
    }
    
    .whatsapp-button-section-018-mehandi-decoration {
        font-size: 1rem;
    }
}

/* Accessibility - Focus States */
.whatsapp-button-section-018-button:focus {
    outline: 3px solid rgba(236, 72, 153, 0.5);
    outline-offset: 3px;
}

.whatsapp-button-section-018-button:focus:not(:focus-visible) {
    outline: none;
}

.whatsapp-button-section-018-button:focus-visible {
    outline: 3px solid rgba(236, 72, 153, 0.7);
    outline-offset: 3px;
}

/* Print - Hide Button */
@media print {
    .whatsapp-button-section-018-container {
        display: none !important;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-button-section-018-button,
    .whatsapp-button-section-018-icon-wrapper,
    .whatsapp-button-section-018-pulse,
    .whatsapp-button-section-018-mehandi-decoration {
        animation: none !important;
        transition: none !important;
    }
    
    .whatsapp-button-section-018-button:hover {
        transform: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a0e14 0%, #0f0f0f 100%);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .whatsapp-button-section-018-button {
        border: 2px solid white;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .whatsapp-button-section-018-container {
        left: 0.5rem;
        bottom: 0.5rem;
    }
    
    .whatsapp-button-section-018-button {
        width: 3rem;
        height: 3rem;
        padding: 0.625rem;
    }
    
    .whatsapp-button-section-018-button:hover {
        width: 3rem;
        height: 3rem;
        padding: 0.625rem;
    }
    
    .whatsapp-button-section-018-icon {
        width: 1.125rem;
        height: 1.125rem;
    }
}