    :root {
            --primary-color: #B55DCD;
            --primary-dark: #9b47b4;
            --primary-light: #e8d7ec;
            --secondary-color: #2d2d2d;
            --accent-color: #FF6B35;
            --text-dark: #222224;
            --text-light: #515151;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --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 ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            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 {
            color: var(--text-light);
            line-height: 1.8;
        }

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

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

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

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

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

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

        /* ===== HEADER ===== */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .navbar-brand img {
            height: 60px;
            transition: var(--transition);
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            padding: 0 20px !important;
            position: relative;
            transition: var(--transition);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ===== HERO SECTION ===== */
        .hero-wrapper {
            min-height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        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;
            display: flex;
            align-items: center;
            position: relative;
            /* margin-top: 76px; */
             display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            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);
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        /* ===== SERVICES SECTION ===== */
        #services-contentarea {
            background: var(--light-bg);
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            border: 1px solid rgba(181, 93, 205, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary-color);
            transition: height 0.6s ease;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        .service-icon svg,
        .service-icon img {
            width: 35px;
            height: 35px;
            filter: brightness(0) invert(1);
        }

        .service-card h5 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

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

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

        .addservice-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .services {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.2rem;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .services:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light);
        }

        .aser-circle {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .aser-circle svg,
        .aser-circle img {
            width: 24px;
            height: 24px;
        }

        .service-name h5 {
            color: var(--text-dark);
            font-weight: 600;
            margin: 0;
            font-size: 1.1rem;
        }

        /* ===== CONTACT CTA ===== */
        .ser-contactbox {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 24px;
            padding: 4rem 2rem;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .ser-contactbox::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .ser-contactbox h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .ser-contactbox h6 {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .contact-btn {
            background: var(--white);
            color: var(--primary-color);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            border: 2px solid transparent;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .contact-btn:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* ===== FOOTER ===== */
        #footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 80px 0 0;
        }

        #footer p,
        #footer li,
        #footer a {
            color: rgba(255, 255, 255, 0.8);
            list-style: none;
        }

        #footer a:hover {
            color: var(--primary-color);
        }

        .short-link ul {
            padding: 0;
        }

        .short-link li {
            margin-bottom: 12px;
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

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

        .footer-circle svg {
            width: 18px;
            height: 18px;
        }

        .ftr-icon-group ul {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .ftr-icon-group a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .ftr-icon-group a:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
  .ftr-icon-group a:hover i{
           color: #ffffff;
        }
        .footer-copyright-text {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            margin-top: 60px;
        }

        /* ===== 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; }
            
            .ser-contactbox h3 { font-size: 2rem; }
            
            .service-card { padding: 2rem; }
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2rem; }
            .hero-content p { font-size: 1rem; }
            
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.5rem; }
            
            .section-padding { padding: 60px 0; }
            
            .addservice-box {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0 !important;
            }
            
            .ser-contactbox {
                padding: 3rem 1.5rem;
            }
            
            .ser-contactbox h3 { font-size: 1.75rem; }
        }

        @media (max-width: 576px) {
            h1 { font-size: 1.75rem; }
            .hero-content h1 { font-size: 1.5rem; }
            
            .btn { padding: 10px 24px; }
            
            .service-card { padding: 1.5rem; }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }
            
            .aser-circle {
                width: 40px;
                height: 40px;
            }
            
            .aser-circle svg,
            .aser-circle img {
                width: 20px;
                height: 20px;
            }
            
            .ser-contactbox h3 { font-size: 1.5rem; }
            
            #footer {
                padding: 60px 0 0;
            }
        }

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

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }