   

        /* ===== CSS RESET & VARIABLES ===== */
        :root {
            --primary-color: #B55DCD;
            --primary-dark: #9b47b4;
            --primary-light: #e8d7ec;
            --secondary-color: #2d2d2d;
            --accent-color: #FF6B35;
            --text-dark: #222224;
            --text-light: #515151;
            --text-gray: #737D8C;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --black: #000000;
            --border-color: #EBEBEB;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            list-style: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
           
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; }
        h5 { font-size: 1.25rem; }

        p {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .btn {
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .header-btn {
            background-color: var(--primary-color);
            color: var(--white);
            border: 2px solid var(--primary-color);
        }

        .header-btn:hover {
            color: white;
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(181, 93, 205, 0.2);
        }

        .outline-btn {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .outline-btn:hover {
            background-color: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            color: white;
        }

        .section-padding {
            padding: 80px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
/* ===== HERO SECTION ===== */
        .hero-wrapper {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80") center/cover no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .hero-main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            background: linear-gradient(45deg, #fff, #e6e6e6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== ABOUT SECTION ===== */
        #aboutus {
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .about-main {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .about-left {
            flex: 1;
            min-width: 300px;
        }

        .about-right {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-img {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-img1 {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-10deg);
        }

        .about-img2 {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 60%;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
            border: 5px solid var(--white);
        }

        .left-aboutus h2 {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .left-aboutus h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .about-contentbox {
            background: var(--white);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }

        .work-section {
            margin-top: 2rem;
        }

        .process {
   
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
            padding: 10px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .process:hover {
            background: var(--primary-light);
            transform: translateX(10px);
        }

        .work-circle {
            width: 35px;
            height: 35px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
        }

        /* ===== SERVICES SECTION ===== */
        #service {
            background: var(--white);
        }

        .service-title h6 {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-color);
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .flip-card {
            background: transparent;
            width: 100%;
            height: 220px;
            perspective: 1000px;
            margin-bottom: 20px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2px;
        }

        .flip-card-front {
            background: var(--white);
            color: var(--text-dark);
            border: 2px solid var(--primary-light);
        }

        .flip-card-back {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            transform: rotateY(180deg);
        }

        .flip-card-back img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .center-img {
            max-height: 500px;
            width: 100%;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        /* ===== SOCIAL BANNER ===== */
        .social-wrapper {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80") center/cover no-repeat;
            padding: 100px 0;
        }

        .social-content h3 {
            color: var(--white);
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }

        /* ===== WHY CHOOSE US ===== */
        #whychoose {
            background: var(--light-bg);
        }

        .ych-title h6 {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-color);
            padding: 8px 24px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .ych-circle {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .ych-circle img {
            width: 35px;
            height: 35px;
            transition: var(--transition);
        }

        .process-name h4 {
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .ychmainimg {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .ychmainimg img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .ychmainimg .ychsubimg {
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 50%;
            border-radius: 15px;
            border: 5px solid var(--white);
            box-shadow: var(--shadow-lg);
        }

        /* ===== FAQ SECTION ===== */
        #faq {
            background: var(--white);
        }

        .accordion-button {
            font-weight: 600;
            padding: 20px;
            border: none;
            background: var(--light-bg) !important;
            color: var(--text-dark);
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color) !important;
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 20px;
            background: var(--light-bg);
        }

        /* ===== BLOG SECTION ===== */
        .blog-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px 25px;
        }

        .blog-btn:hover {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }

        .card:hover .card-img-top {
            transform: scale(1.05);
        }

        .card-body {
            padding: 25px;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-main {
            position: relative;
            min-height: 600px;
        }

        .contact-left img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .contact-right {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 1;
        }

        .form-control {
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(181, 93, 205, 0.25);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.25rem; }
            h3 { font-size: 1.75rem; }
        }

        @media (max-width: 992px) {
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1.125rem; }
            
            .about-main {
                flex-direction: column;
            }
            
            .about-img2 {
                width: 50%;
                right: 0;
                bottom: -30px;
            }
            
            .ychmainimg .ychsubimg {
                width: 40%;
                left: -20px;
                bottom: -20px;
            }
            
            .contact-right {
                margin-top: 40px;
                position: static;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .about-img2 {
                position: relative;
                width: 100%;
                bottom: 0;
                right: 0;
                margin-top: 20px;
            }
            
            .flip-card {
                height: 200px;
            }
            
            .ych-circle {
                width: 50px;
                height: 50px;
                margin-right: 15px;
            }
            
            .ych-circle img {
                width: 25px;
                height: 25px;
            }
            
            .social-content h3 {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 576px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .hero-content h1 { font-size: 1.75rem; }
            .hero-content p { font-size: 1rem; }
            
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.25rem; }
            
            .btn {
                padding: 10px 24px;
                font-size: 0.875rem;
            }
            
            .about-contentbox {
                padding: 1.5rem;
            }
            
            .flip-card {
                height: 180px;
            }
            
            .contact-right {
                padding: 25px;
            }
            
            .footer-circle {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 { font-size: 1.5rem; }
            .hero-content p { font-size: 0.9rem; }
            
            .about-img1,
            .about-img2 {
                margin: 0;
            }
            
            .about-img2 {
                display: none;
            }
            
            .flip-card-front h5 {
                font-size: 1rem;
            }
            
            .flip-card-front p {
                font-size: 0.875rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }

        .stagger-children > * {
            opacity: 1;
            /* animation: fadeIn 0.6s ease-out forwards; */
        }

        .stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
        .stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
  