 :root {
            --primary-black: #000000;
            --primary-pink: #FFC0CB;
            --primary-white: #FFFFFF;
            --light-pink: #FFF0F2;
            --dark-pink: #FF9EAA;
            --gray-text: #333333;
            --light-gray: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--gray-text);
            background-color: var(--primary-white);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-black);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-pink);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--primary-white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-icon {
            background-color: var(--primary-pink);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-black);
            font-size: 22px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-black);
            line-height: 1.2;
        }
        
        .logo-text span {
            color: var(--primary-pink);
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-top: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary-black);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a:hover {
            color: var(--primary-pink);
        }
        
        nav ul li a.active {
            color: var(--primary-pink);
        }
        
        nav ul li a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--primary-pink);
            bottom: 0;
            left: 0;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-black);
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--primary-white);
            text-align: center;
            padding: 120px 0;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary-white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero h1 span {
            color: var(--primary-pink);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-pink);
            color: var(--primary-black);
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary-pink);
            font-size: 16px;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary-pink);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-pink);
            border: 2px solid var(--primary-pink);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-pink);
            color: var(--primary-black);
        }
        
        /* Video Section */
        .video-section {
            padding: 80px 0;
            text-align: center;
            background-color: var(--light-pink);
        }
        
        .video-container {
            max-width: 800px;
            margin: 40px auto 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .video-container video {
            width: 100%;
            display: block;
            border-radius: 10px;
        }
        
        .video-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
        }
        
        .video-overlay i {
            font-size: 60px;
            margin-bottom: 15px;
            opacity: 0.8;
        }


/* mera add kiya gya */











        
        /* Services Carousel */
        .services-section {
            padding: 80px 0;
            background-color: var(--primary-white);
        }
        
        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide {
            min-width: 100%;
            padding: 70px 40px;
            text-align: center;
            background-size: cover;
            background-position: center;
            color: var(--primary-white);
            position: relative;
        }
        
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
        }
        
        .carousel-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .carousel-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-white);
        }
        
        .carousel-content p {
            font-size: 18px;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: var(--primary-pink);
            opacity: 0.5;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .carousel-dot.active {
            opacity: 1;
            transform: scale(1.2);
        }
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 192, 203, 0.9);
            color: var(--primary-black);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-arrow:hover {
            background-color: var(--primary-pink);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-arrow.prev {
            left: 20px;
        }
        
        .carousel-arrow.next {
            right: 20px;
        }
        
        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background-color: var(--primary-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 220px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-black);
        }
        
        .product-info p {
            color: #666;
            font-size: 15px;
            margin-bottom: 15px;
            min-height: 60px;
        }
        
        .product-price {
            font-weight: 600;
            color: var(--primary-black);
            font-size: 18px;
            margin-bottom: 15px;
            display: block;
        }
        
        .product-price span {
            color: var(--primary-pink);
        }
        
        .product-btn {
            display: block;
            text-align: center;
            background-color: var(--primary-pink);
            color: var(--primary-black);
            padding: 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .product-btn:hover {
            background-color: var(--dark-pink);
        }
        
        /* Support Icon */
        .support-icon {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }
        
        .support-toggle {
            width: 65px;
            height: 65px;
            background-color: var(--primary-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--primary-black);
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: none;
        }
        
        .support-toggle:hover {
            transform: scale(1.1);
            background-color: var(--dark-pink);
        }
        
        .support-options {
            position: absolute;
            bottom: 80px;
            right: 0;
            background-color: var(--primary-white);
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            padding: 20px;
            width: 220px;
            display: none;
            flex-direction: column;
            gap: 15px;
        }
        
        .support-options.active {
            display: flex;
            animation: fadeInUp 0.3s;
        }
        
        .support-option {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--primary-black);
            padding: 12px;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        
        .support-option:hover {
            background-color: var(--light-pink);
        }
        
        .support-option i {
            width: 40px;
            height: 40px;
            background-color: var(--light-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-black);
            font-size: 18px;
        }
        
        .support-option span {
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--primary-white);
        }
        
        .footer-column h3 span {
            color: var(--primary-pink);
        }
        
        .footer-column p {
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-pink);
            padding-left: 5px;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #ccc;
        }
        
        .contact-info i {
            color: var(--primary-pink);
            margin-top: 3px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-white);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-pink);
            color: var(--primary-black);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
             
            padding-top: 25px;
            border-top: 1px solid #333;
            font-size: 14px;
            color: #aaa;
        }
        .copyright a {
  text-decoration: none !important;
  border: none !important;
  color: white !important;
}


        
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: var(--primary-white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 20px 0;
                z-index: 999;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            nav ul li a {
                font-size: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 100px 0;
            }
            
            .hero h1 {
                font-size: 34px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .carousel-arrow {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .support-icon {
                bottom: 20px;
                right: 20px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .video-section, .services-section, .products-section {
                padding: 60px 0;
            }
            
            .carousel-slide {
                padding: 50px 20px;
            }
            
            .carousel-content h3 {
                font-size: 26px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .support-toggle {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }
            
            .support-options {
                width: 200px;
            }
        }
        
        
        
        
        
        
        
        
        