
.navbar-logo {
    max-height: 40px;
    width: auto;
    height: auto;
}

.navbar,
.navbar-brand {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
html, body {
    overflow-x: hidden !important;
}
.comparison-container {
    width: 100%;
    max-width: 900px;    /* same style as your previous layout */
    margin: 0 auto;
    text-align: center;
}

.comparison-full-image {
    width: 100%;
    height: auto;        /* Maintains the original proportions */
    display: block;
    border-radius: 8px;  /* optional */
}




/* Home Start */
        :root {
            --primary: #d147a3;
            --secondary: #ff9cd7;
            --light: #fce4f5;
            --dark: #4a1942;
            --gold: #d4af37;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        .bg-primary {
            background-color: var(--primary) !important;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--dark);
            border-color: var(--dark);
        }

        .text-primary {
            color: var(--primary) !important;
        }
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.8rem;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

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

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(209, 71, 163, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(209, 71, 163, 0.4);
        }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: white;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
        }

        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 110%;

        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }

        .service-card {
            transition: transform 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(209, 71, 163, 0.9), rgba(209, 71, 163, 0.9)), url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 100px 0;
        }

        .gallery-tabs .nav-link {
            color: var(--dark);
            font-weight: 600;
            margin: 0 10px;
            border-radius: 30px;
        }

        .gallery-tabs .nav-link.active {
            background-color: var(--primary);
            color: white;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }

        .gallery-item img {
            transition: transform 0.5s;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
        }

        .testimonial-img {
            width:100%;
            height:100%;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
        }

        /* Brands Section */
        .brands-section {
            padding: 80px 0;
        }

        .brand-logo {
            filter: grayscale(100%);
            transition: all 0.3s;
            opacity: 0.7;
            max-height: 80px;
            margin: 0 auto;
        }

        .brand-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
        }

        .contact-info {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }

        .footer-logo {
            max-width: 200px;
            margin-bottom: 20px;
        }

        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--secondary);
        }

        /* Welcome Popup */
        .welcome-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .welcome-popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: white;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            padding: 30px;
            text-align: center;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s;
        }

        .welcome-popup.active .popup-content {
            transform: scale(1);
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .offer-badge {
            background: var(--gold);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }

            .about-section,
            .services-section,
            .cta-section,
            .gallery-section,
            .testimonials-section,
            .contact-section {
                padding: 60px 0;
            }
        }
/* Home End */

/* About Start */

        /* Hero Section */
        .about-hero {
            background: linear-gradient(rgba(74, 25, 66, 0.8), rgba(74, 25, 66, 0.8)), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .about-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Story Section */
        .story-section {
            background: #f9f9f9;
        }

        .story-content {
            display: flex;
            align-items: center;
        }

        .story-text {
            padding-right: 30px;
        }

        .story-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s;
        }

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

        .milestone {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            margin-bottom: 30px;
        }

        .milestone:hover {
            transform: translateY(-10px);
        }

        .milestone i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .milestone h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Team Section */
        .team-member {
            text-align: center;
            margin-bottom: 30px;
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--light);
            transition: all 0.3s;
        }

        .team-member:hover .team-img {
            border-color: var(--primary);
        }

        .team-member h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-member p {
            color: var(--primary);
            font-weight: 500;
        }

        .social-links {
            margin-top: 15px;
        }

        .social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: var(--light);
            color: var(--dark);
            border-radius: 50%;
            line-height: 36px;
            margin: 0 5px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Values Section */
        .values-section {
            background: linear-gradient(rgba(209, 71, 163, 0.05), rgba(209, 71, 163, 0.05));
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            margin-bottom: 30px;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            transition: all 0.3s;
        }

        .value-card:hover .value-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(74, 25, 66, 0.9), rgba(74, 25, 66, 0.9)), url('https://images.unsplash.com/photo-1595475884562-073c30d45670?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            text-align: center;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-left {
            transform: translateX(-30px);
        }

        .animate-right {
            transform: translateX(30px);
        }

        .animated.animate-left, .animated.animate-right {
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }

            section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .story-content {
                flex-direction: column;
            }

            .story-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }
/* About End */
/* Services  Start */
/* Hero Section */
        .services-hero {
            background: linear-gradient(135deg, rgba(74, 25, 66, 0.9) 0%, rgba(209, 71, 163, 0.8) 100%), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .services-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .services-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Service Categories */
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
            gap: 10px;
        }

        .category-btn {
            background: white;
            border: 2px solid var(--light);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            margin: 5px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .category-btn.active, .category-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(209, 71, 163, 0.3);
        }

        /* Service Cards */
        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 220px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-content {
            padding: 25px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .service-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .service-features li {
            margin-bottom: 8px;
            color: #555;
        }

        .service-features li i {
            color: var(--primary);
            margin-right: 8px;
        }

        .service-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price span {
            font-size: 1rem;
            color: #888;
            font-weight: 400;
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
            box-shadow: 0 15px 40px rgba(209, 71, 163, 0.2);
        }

        .pricing-card.featured:before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .pricing-header .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .pricing-header .price span {
            font-size: 1rem;
            color: #888;
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .pricing-features li {
            margin-bottom: 15px;
            color: #555;
        }

        .pricing-features li i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* Process Section */
        .process-step {
            text-align: center;
            padding: 0 20px;
            position: relative;
        }

        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 60px;
            right: -50px;
            width: 100px;
            height: 2px;
            background: var(--light);
            z-index: 1;
        }

        .process-icon {
            width: 120px;
            height: 120px;
            background: white;
            border: 2px solid var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--primary);
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }

        .process-step:hover .process-icon {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .process-step h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-light {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

/* Services End */


/* Gallary Section */
        .gallery-hero {
            background: linear-gradient(135deg, rgba(74, 25, 66, 0.9) 0%, rgba(209, 71, 163, 0.8) 100%), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .gallery-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .gallery-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Gallery Filter */
        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
            gap: 10px;
        }

        .filter-btn {
            background: white;
            border: 2px solid var(--light);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            margin: 5px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(209, 71, 163, 0.3);
        }

        /* Masonry Gallery */
        .gallery-container {
            column-count: 3;
            column-gap: 20px;
        }

        @media (max-width: 992px) {
            .gallery-container {
                column-count: 2;
            }
        }

        @media (max-width: 768px) {
            .gallery-container {
                column-count: 1;
            }
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 20px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .gallery-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .gallery-category {
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }

        .gallery-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .gallery-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Before & After Section */
        .before-after-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        }

        .comparison-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .comparison-image {
            display: block;
            width: 100%;
            height: auto;
        }

        .comparison-before {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 50%;
            overflow: hidden;
        }

        .comparison-before img {
            height: 100%;
            width: auto;
            max-width: none;
        }

        .comparison-slider-handle {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            transform: translateX(-50%);
            cursor: col-resize;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .comparison-slider-handle:after {
            content: '';
            width: 40px;
            height: 40px;
            border: 3px solid var(--primary);
            border-radius: 50%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* Video Gallery */
        .video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .video-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .video-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .video-thumbnail {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .video-item:hover .video-play-btn {
            background: var(--primary);
            color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-content {
            padding: 20px;
            background: white;
        }

        .video-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .video-content p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Testimonial Gallery */
        .testimonial-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--light);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-info h5 {
            margin-bottom: 5px;
            font-weight: 600;
        }

        .author-info p {
            color: var(--primary);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-light {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

/* Gallery Section end */

/* Testimonial start */
 /* Hero Section */
        .testimonial-hero {
            background: linear-gradient(135deg, rgba(74, 25, 66, 0.9) 0%, rgba(209, 71, 163, 0.8) 100%), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .testimonial-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .testimonial-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            margin-bottom: 30px;
            height: 100%;
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card.featured {
            border: 3px solid var(--primary);
            transform: scale(1.05);
        }

        .testimonial-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .testimonial-card.featured:before {
            content: 'Featured';
            position: absolute;
            top: -15px;
            right: 30px;
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(209, 71, 163, 0.3);
        }

        .testimonial-quote {
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: var(--light);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid var(--light);
            transition: all 0.3s;
        }

        .testimonial-card:hover .author-avatar {
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .author-info h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .author-info p {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 5px;
        }

        .rating {
            color: var(--gold);
            font-size: 0.9rem;
        }

        /* Testimonial Stats */
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 80px 0;
            clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Video Testimonials */
        .video-testimonial {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .video-testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
        }

        .video-thumbnail {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .video-testimonial:hover .video-thumbnail img {
            transform: scale(1.1);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.8rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .video-testimonial:hover .video-play-btn {
            background: var(--primary);
            color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-content {
            padding: 25px;
            background: white;
        }

        .video-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .video-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .video-author {
            display: flex;
            align-items: center;
        }

        .video-author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 10px;
        }

        .video-author-info h5 {
            font-size: 1rem;
            margin-bottom: 2px;
        }

        .video-author-info p {
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 0;
        }

        /* Review Form */
        .review-form-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        }

        .review-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-title p {
            color: #666;
        }

        .star-rating {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            direction: rtl;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
            margin: 0 5px;
        }

        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--gold);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-control {
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(209, 71, 163, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-light {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
/* Testimonial End */

/* contactus start  */
/* Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, rgba(74, 25, 66, 0.9) 0%, rgba(209, 71, 163, 0.8) 100%), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* Section Styling */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Contact Info Cards */
        .contact-info-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        }

        .location-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
        }

        .location-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .location-header {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 25px;
            text-align: center;
        }

        .location-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .location-header p {
            opacity: 0.9;
            margin-bottom: 0;
        }

        .location-body {
            padding: 30px;
        }

        .location-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .location-icon {
            width: 50px;
            height: 50px;
            background: var(--light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .location-card:hover .location-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .location-details h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .location-details p {
            color: #666;
            margin-bottom: 0;
        }

        .location-map {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 20px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Form */
        .contact-form-section {
            background: white;
        }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            max-width: 800px;
            margin: 0 auto;
        }

        .form-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-title p {
            color: #666;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-control {
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(209, 71, 163, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
        }

        .accordion-item {
            border: none;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .accordion-button {
            background: white;
            border: none;
            padding: 20px 25px;
            font-weight: 600;
            color: var(--dark);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-body {
            padding: 20px 25px;
            background: white;
            color: #666;
        }

        /* Team Section */
        .team-section {
            background: white;
        }

        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }

        .team-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--light);
            transition: all 0.3s;
        }

        .team-member:hover .team-img {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .team-member h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .team-member p {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .team-contact {
            font-size: 0.9rem;
            color: #666;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-light {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
/* contactus end */
