  :root {
            --primary-dark: #000000;
            --accent-pink: #E75480;
            --neutral-white: #FFFFFF;
            --background-color: #FFFFFF;
            --text-color: #000000;
            --card-background: #FFFFFF;
            --subtle-shadow: rgba(0, 0, 0, 0.1);
        }

        body.dark-mode {
            --primary-dark: #121212;
            --accent-pink: #E75480;
            --neutral-white: #FFFFFF;
            --background-color: #1a1a1a;
            --text-color: #FFFFFF;
            --card-background: #2d2d2d;
            --subtle-shadow: rgba(0, 0, 0, 0.3);
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--background-color);
            color: var(--text-color);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Theme and Language Container */
        .theme-language-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .theme-toggle {
            display: flex;
            align-items: center;
        }

        .theme-btn {
            background: var(--accent-pink);
            border: none;
            border-radius: 25px;
            padding: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(231, 84, 128, 0.3);
            width: 45px;
            height: 45px;
        }

        .theme-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
        }





   .language-btn {
            background: var(--accent-pink);
            border: none;
            border-radius: 25px;
            padding: 10px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(231, 84, 128, 0.3);
            width: 180px;
            height: 45px;
            text-decoration: none;
        }







        .language-selector {
            display: flex;
            align-items: center;
        }

        .language-dropdown {
            background: var(--accent-pink);
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 84, 128, 0.3);
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            padding-right: 45px;
        }

        .language-dropdown:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
        }

        .language-dropdown option {
            background: white;
            color: var(--primary-dark);
        }

        /* Dark Section Styles */
        .section-dark {
            background-color: var(--primary-dark);
            color: var(--neutral-white);
        }

        .section-dark h1,
        .section-dark h2,
        .section-dark h3,
        .section-dark h4,
        .section-dark h5,
        .section-dark h6 {
            color: var(--neutral-white);
        }

        .section-dark p,
        .section-dark li {
            color: var(--neutral-white);
        }

        body.light-mode .section-dark p,
        body.light-mode .section-dark li,
        body.light-mode .section-dark .glam-text,
        body.light-mode .section-dark .glam-title,
        body.light-mode .section-dark .pillar-card p,
        body.light-mode .section-dark .pillar-card li,
        body.light-mode .section-dark .pillar-card h3,
        body.light-mode .section-dark .pillar-card h4 {
            color: var(--primary-dark);
        }

        /* Light Section Styles */
        .section-light {
            background-color: var(--neutral-white);
            color: var(--primary-dark);
        }

        .section-light h1,
        .section-light h2,
        .section-light h3,
        .section-light h4,
        .section-light h5,
        .section-light h6 {
            color: var(--primary-dark);
        }

        .section-light p,
        .section-light li {
            color: var(--primary-dark);
        }

        body.dark-mode .section-light {
            background-color: var(--card-background);
            color: var(--neutral-white);
        }

        body.dark-mode .section-light h1,
        body.dark-mode .section-light h2,
        body.dark-mode .section-light h3,
        body.dark-mode .section-light h4,
        body.dark-mode .section-light h5,
        body.dark-mode .section-light h6 {
            color: var(--neutral-white);
        }

        body.dark-mode .section-light p,
        body.dark-mode .section-light li {
            color: var(--neutral-white);
        }

        /* Navbar */
        .navbar-custom {
            background: var(--primary-dark) !important;
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px var(--subtle-shadow);
            backdrop-filter: blur(10px);
        }

        .navbar-brand-custom {
            color: var(--neutral-white) !important;
            font-weight: bold;
            font-size: 1.2rem;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-left: 25px;
        }

        .nav-link-custom {
            color: var(--neutral-white) !important;
            font-weight: 600;
            margin: 0 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            margin-left: 20px;
        }

        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-pink);
            transition: width 0.4s ease;
            border-radius: 2px;
        }

        .nav-link-custom:hover::after {
            width: 100%;
        }

        .nav-link-custom:hover {
            color: var(--accent-pink) !important;
            transform: translateY(-3px) scale(1.05);
            background-color: rgba(231, 84, 128, 0.1);
            border-radius: 5px;
            padding: 5px 10px;
        }

        .navbar-toggler-custom {
            border-color: var(--neutral-white);
        }

        .navbar-toggler-custom .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .dropdown-menu-custom {
            background: var(--primary-dark);
            border: 1px solid var(--accent-pink);
            box-shadow: 0 10px 30px var(--subtle-shadow);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .dropdown-item-custom {
            color: var(--neutral-white);
            padding: 0.2rem 1.5rem;
            transition: all 0.4s ease;
            border-radius: 10px;
            margin: 3px 0;
        }

        .dropdown-item-custom:hover {
            background: var(--accent-pink);
            color: var(--neutral-white);
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(231, 84, 128, 0.3);
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            margin-top: 10px;
        }

        .parallax {
            background-attachment: fixed;
        }

        .slides {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-container {
            display: flex;
            width: 100%;
            height: 100%;
            flex-direction: row;
        }

        .slide-image {
            width: 50%;
            height: 100%;
            padding: 0;
            flex-shrink: 0;
        }

        .slide-image .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.1);
            transition: filter 0.5s ease;
            display: block;
        }

        .slide:hover .slide-img {
            filter: brightness(0.6) contrast(1.2);
        }

        .slide-content {
            width: 50%;
            height: 100%;
            background: var(--primary-dark);
            color: var(--neutral-white);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(5px);
            flex-shrink: 0;
        }

        .slide.active .slide-content {
            transform: none;
        }

        .glam-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--neutral-white);
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--neutral-white);
        }

        .btn-glam {
            background: var(--accent-pink);
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            color: white;
            box-shadow: 0 5px 15px rgba(231, 84, 128, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            width: fit-content;
        }

        .btn-glam:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(231, 84, 128, 0.4);
            color: white;
            background: var(--primary-dark);
            border: 2px solid var(--accent-pink);
        }

        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--accent-pink);
            transform: scale(1.2);
        }

        /* Glam Header */
        .glam-header {
            background: var(--primary-dark);
            color: var(--neutral-white);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .glam-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(231, 84, 128, 0.05) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .glam-header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--neutral-white);
            position: relative;
            z-index: 1;
        }

        /* Glam Quote Section */
        .glam-quote {
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .quote-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .quote-wrapper blockquote {
            font-style: italic;
            font-size: 1rem;
            margin-bottom: 30px;
            padding: 0 30px;
            position: relative;
            line-height: 1.8;
            animation: fadeInUp 1s ease;
        }

        .quote-wrapper blockquote::before {
            content: '"';
            font-size: 6rem;
            position: absolute;
            left: -20px;
            top: -30px;
            font-family: 'Playfair Display', serif;
            color: var(--accent-pink);
        }

        .quote-author {
            font-weight: bold;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.5s both;
            color: var(--accent-pink);
        }

        /* Glam Services */
        .glam-services {
            padding: 100px 0;
        }

        .glam-section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 20px;
            text-align: center;
        }

        .glam-section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            border-radius: 3px;
            background: var(--accent-pink);
        }

        .glam-lead {
            font-style: italic;
        }

        .glam-list li {
            transition: all 0.3s ease;
        }

        .glam-list li:hover i {
            transform: scale(1.2);
            color: var(--accent-pink);
        }

        .glam-service-card {
            border: 1px solid rgba(231, 84, 128, 0.3);
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--subtle-shadow);
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 40px;
            height: 100%;
            overflow: hidden;
            position: relative;
            backdrop-filter: blur(10px);
            border-left: 4px solid var(--accent-pink);
            background: var(--card-background);
        }

        .glam-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-pink);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .glam-service-card:hover::before {
            transform: scaleX(1);
        }

        .glam-service-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 25px 50px rgba(231, 84, 128, 0.2);
            border-left-color: var(--accent-pink);
        }

        .glam-icon {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            transition: transform 0.4s ease;
            color: var(--accent-pink);
        }

        .glam-service-card:hover .glam-icon {
            transform: scale(1.2);
        }

        .glam-title {
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .glam-text {
            font-style: normal;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        /* Glam Pillar Cards */
        .pillar-card {
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            border: 2px solid rgba(231, 84, 128, 0.3);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px var(--subtle-shadow);
            margin-bottom: 30px;
            background: var(--card-background);
        }

        .pillar-card h3 {
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .pillar-card h4 {
            font-weight: 600;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.1rem;
        }

        .glam-list li {
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 1px solid rgba(231, 84, 128, 0.2);
            font-weight: 500;
        }

        .glam-list li:last-child {
            border-bottom: none;
        }

        .glam-list li i {
            transition: all 0.3s ease;
            color: var(--accent-pink);
        }

        /* Glam Certificate */
        .bg-gradient-glam {
            padding: 100px 0;
        }

        .glam-certificate {
            border-left: 6px solid var(--accent-pink);
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--subtle-shadow);
            backdrop-filter: blur(5px);
            background: var(--card-background);
        }

        body.light-mode .glam-certificate {
            color: var(--primary-dark);
        }

        body.light-mode .glam-certificate strong,
        body.light-mode .glam-certificate em {
            color: var(--primary-dark);
        }

        .glam-cert-title {
            font-weight: 800;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        /* Glam Contact */
        .glam-contact {
            padding: 100px 0;
        }

        .glam-contact-info h5 {
            font-weight: 700;
        }

        .glam-form .glam-label {
            font-weight: 600;
        }

        .glam-input {
            border-radius: 15px;
            border: 2px solid rgba(231, 84, 128, 0.3);
            padding: 15px 20px;
            transition: all 0.4s ease;
            box-shadow: inset 0 2px 5px var(--subtle-shadow);
            background: var(--card-background);
            color: var(--text-color);
        }

        .glam-input:focus {
            border-color: var(--accent-pink);
            box-shadow: 0 0 0 0.3rem rgba(231, 84, 128, 0.1), 0 5px 15px rgba(231, 84, 128, 0.1);
            transform: translateY(-3px);
        }

        .glam-input::placeholder {
            opacity: 0.7;
        }

        /* Glam Join Section */
        .glam-join {
            padding: 100px 0;
            text-align: center;
        }

        .glam-join-title {
            font-size: 3rem;
            margin-bottom: 25px;
        }

        .glam-join-text {
            font-size: 1.3rem;
            margin-bottom: 40px;
            font-style: italic;
            opacity: 0.9;
        }

        /* Glam Footer */
        .glam-footer {
            background: var(--primary-dark);
            color: var(--neutral-white);
            padding: 80px 0 40px;
            position: relative;
        }

        .glam-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
        }

        .glam-footer h5 {
            color: var(--neutral-white);
            margin-bottom: 20px;
        }

        .glam-links li a {
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
        }

        .glam-links li a:hover {
            color: var(--accent-pink);
            transform: translateX(10px);
            background: rgba(231, 84, 128, 0.1);
            border-radius: 5px;
            padding: 5px 10px;
        }

        .glam-social-link {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.8rem;
            margin: 0 15px;
            transition: all 0.4s ease;
        }

        .glam-social-link:hover {
            color: var(--accent-pink);
            transform: translateY(-5px) scale(1.2);
            background: rgba(231, 84, 128, 0.1);
            border-radius: 50%;
            padding: 10px;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .glam-address {
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

        .glam-hr {
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            top: 80%;
            right: 10px;
            transform: translateY(-50%);
            width: 30px;
            height: 130px;
            background: linear-gradient(135deg, var(--primary-dark), var(--accent-pink));
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 12px;
            line-height: 1.2;
            text-align: center;
        }

        .whatsapp-float:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
            color: white;
        }

        /* Floating Contact Button */
        .contact-float {
            position: fixed;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
            width: 30px;
            height: 140px;
            background: linear-gradient(135deg, var(--primary-dark), var(--accent-pink));
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 11px;
            line-height: 1.1;
            text-align: center;
        }

        .contact-float:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
            color: white;
        }

        /* Tooltip on hover for extra info */
        .whatsapp-float::after {
            content: "WhatsApp Chat";
            position: absolute;
            left: -80px;
            top: 60%;
            transform: translateY(-50%);
            background: var(--accent-pink);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-float:hover::after {
            opacity: 1;
        }

        .contact-float::after {
            content: "Call Now";
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent-pink);
            color: white;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .contact-float:hover::after {
            opacity: 1;
        }

        /* Responsive: Adjust sizes on small screens */
        @media (max-width: 768px) {
            .slide-container {
                flex-direction: column !important;
            }

            .slide-image,
            .slide-content {
                width: 100% !important;
                flex-shrink: initial;
            }

            .slide-content {
                padding: 40px 20px;
                text-align: center;
            }

            .glam-title {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .glam-header h1 {
                font-size: 2.5rem;
            }

            .glam-section-title {
                font-size: 2.2rem;
            }

            .quote-wrapper blockquote {
                font-size: 1.3rem;
                padding: 0 10px;
            }

            .hero-slider {
                height: 60vh;
                min-height: 400px;
            }

            .glam-title {
                font-size: 1rem;
            }

            .glam-text {
                font-size: 0.8rem;
            }

            .glam-icon {
                font-size: 1rem;
            }

            .whatsapp-float,
            .contact-float {
                width: 25px;
                font-size: 10px;
            }

            .whatsapp-float {
                height: 120px;
            }

            .contact-float {
                height: 120px;
            }

            .whatsapp-float::after,
            .contact-float::after {
                display: none;
            }

            .theme-language-container {
                top: 10px;
                right: 10px;
                flex-direction: column;
                gap: 10px;
            }

            .theme-btn,
            .language-dropdown {
                padding: 8px 16px;
                font-size: 14px;
            }

            .theme-btn {
                padding: 10px;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 80vh;
                min-height: 350px;
            }

            .slide-content {
                padding: 30px 15px;
            }

            .glam-title {
                font-size: 1.5rem;
            }

            .glam-section-title {
                font-size: 1.8rem;
            }
        }