            /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            font-family: 'Poppins', sans-serif;
			margin: 0;
			background: #fff;
			overflow-x: hidden; /* Prevent horizontal scroll */
			color: #333; /* Default text color */
			line-height: 1.6;
    }

        /* Header Styles */
        .studio-name {
            background-color: #aa8377;
            color: white;
            text-align: center;
            padding: 15px 0;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 24px;
            letter-spacing: 1px;
        }

        header {
            background-color: #fff;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            height: 80px;
            width: auto;
            margin-bottom: 10px;
        }

        nav {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 10px;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: #ff5e94;
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 24px;
            position: absolute;
            right: 20px;
            top: 20px;
        }
		
		.dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        list-style: none;
        padding: 10px 0;
        min-width: 160px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        text-decoration: none;
        color: #333;
    }

    .dropdown-menu li a:hover {
        background-color: #f0f0f0;
    }

    /* Desktop Hover */
    @media (min-width: 768px) {
        .dropdown:hover .dropdown-menu {
            display: block;
        }
    }
    /* Mobile Click Handled by JS */

        /* Breadcrumb Navigation */
        .breadcrumb {
            background-color: #f8f9fa;
            padding: 15px 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .breadcrumb-list {
            display: flex;
            list-style: none;
            align-items: center;
            font-size: 14px;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
        }

        .breadcrumb-item a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: #ff5e94;
        }

        .breadcrumb-item.active {
            color: #333;
            font-weight: 500;
        }

        .breadcrumb-separator {
            margin: 0 10px;
            color: #6c757d;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/home/Monika-Monisha-Makeup-Studio-Interior.webp') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px 80px;
            position: relative;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Section Styles */
        .section {
            padding: 80px 20px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #ff5e94;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Story Section */
        .about-story {
            background-color: #fff;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-text h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .story-text p {
            color: #555;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .story-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .story-image img {
            width: 100%;
            height: 650px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .story-image:hover img {
            transform: scale(1.05);
        }

        /* Mission Vision Section */
        .mission-vision {
            background-color: #f8f9fa;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .mission-card, .vision-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .mission-card .icon, .vision-card .icon {
            font-size: 3rem;
            color: #ff5e94;
            margin-bottom: 20px;
        }

        .mission-card h3, .vision-card h3 {
            font-size: 1.6rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

                /* Achievement Section */
        .achievements {
            background: linear-gradient(135deg, #ff5e94, #aa8377);
            color: white;
        }

        .achievements .section-title h2,
        .achievements .section-title p {
            color: white;
        }

        .achievement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .achievement-item {
            text-align: center;
            padding: 20px;
        }

        .achievement-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .achievement-text {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Values Section */
        .values-section {
            background-color: #f8f9fa;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .value-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 4px solid #ff5e94;
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-3px);
        }

        .value-item h4 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .value-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Call to Action */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 94, 148, 0.95), rgba(170, 131, 119, 0.95)), url('/api/placeholder/1200/300') center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: white;
            color: #ff5e94;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0 10px 10px 0;
        }

        .btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #ff5e94;
        }

        /* Footer Styles (Ensure consistency with footer.html CSS) */
        footer {
            background-color: #222;
            color: #fff;
            padding: 50px 20px 20px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff5e94;
        }

        .footer-col p {
            color: #bbb;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: #ff5e94;
            padding-left: 5px;
        }

        .footer-col ul li i { /* Style for icons in footer list */
             margin-right: 10px;
             color: #ff5e94; /* Match theme color */
        }


        .social-links-footer { /* Consistent class name */
            display: flex;
            gap: 15px;
             margin-top: 20px; /* Add margin top */
        }

        .social-links-footer a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-links-footer a:hover {
            background-color: #ff5e94;
            transform: translateY(-5px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2); /* Added shadow */
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
        }

        .footer-bottom p {
            color: #bbb;
            font-size: 14px;
        }

         /* Specific Form Styles for Footer Newsletter */
        .footer-col .form-group {
            margin-bottom: 15px;
        }

        .footer-col .form-control {
            padding: 10px 12px;
            font-size: 15px;
            border: 1px solid #555;
            background-color: #333;
            color: #fff;
        }
         .footer-col .form-control::placeholder {
            color: #888;
        }

        .footer-col .form-control:focus {
            border-color: #ff5e94;
            box-shadow: 0 0 5px rgba(255, 94, 148, 0.3);
        }

        .footer-col .submit-btn {
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 15px;
        }

        .footer-col .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        


        /* Responsive Design */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.8rem;
            }

            .story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                position: relative;
            }

            .logo {
                height: 60px;
            }

            nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 250px;
                height: 100vh;
                background-color: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: all 0.4s ease;
                z-index: 200;
                justify-content: flex-start;
                padding-top: 60px;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 20px 0;
                width: 100%;
            }

            nav ul li {
                margin: 0;
            }

            nav ul li a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #eee;
            }

            .page-header {
                padding: 80px 20px 60px;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .section {
                padding: 60px 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .breadcrumb-list {
                font-size: 13px;
            }

            .breadcrumb-separator {
                margin: 0 5px;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 25px;
                margin: 5px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 1.7rem;
            }

            .achievement-number {
                font-size: 2.5rem;
            }

            .team-photo {
                width: 120px;
                height: 120px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        