
        :root {
            --primary: #0066ff;
            --primary-dark: #0052cc;
            --secondary: #ff6b35;
            --accent: #00d4aa;
            --dark: #1a1a2e;
            --dark-light: #2a2a3e;
            --text: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.1);
            --shadow-lg: rgba(0, 0, 0, 0.2);
            --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
            --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ffd93d 100%);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

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

        .section-title .subtitle {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .section-title h2 {
            font-size: 42px;
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 16px;
        }

        /* Header & Navigation */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .top-bar a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }

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

        header {
            background: var(--white);
            box-shadow: 0 2px 15px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Playfair Display', serif;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

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

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

        .nav-menu a:hover {
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 212, 170, 0.7) 100%);
        }

        .slide:nth-child(2)::before {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 217, 61, 0.7) 100%);
        }

        .slide:nth-child(3)::before {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(0, 102, 255, 0.7) 100%);
        }

        .slide-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            color: var(--white);
            animation: slideUp 0.8s ease-out;
        }

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

        .slide-content .subtitle {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            display: block;
        }

        .slide-content h1 {
            font-size: 56px;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            max-width: 700px;
        }

        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--white);
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

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

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

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

        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--white);
            width: 40px;
            border-radius: 6px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--white);
            transition: all 0.3s;
        }

        .service-card:nth-child(2) .service-icon {
            background: var(--gradient-2);
        }

        .service-card:nth-child(3) .service-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .service-card:nth-child(4) .service-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .service-card:nth-child(5) .service-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .service-card:nth-child(6) .service-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 15px;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        /* Stats Section */
        .stats-section {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Best Services */
        .best-services {
            background: var(--bg-light);
        }

        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-detailed-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s;
        }

        .service-detailed-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--shadow-lg);
        }

        .service-detailed-card .card-header {
            padding: 40px 30px;
            background: var(--gradient-1);
            color: var(--white);
        }

        .service-detailed-card:nth-child(2) .card-header {
            background: var(--gradient-2);
        }

        .service-detailed-card:nth-child(3) .card-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .service-detailed-card .card-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .service-detailed-card .card-body {
            padding: 30px;
        }

        .service-detailed-card ul {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-detailed-card li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text);
        }

        .service-detailed-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
            font-size: 18px;
        }

        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
        }

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

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(0, 212, 170, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .portfolio-overlay h4 {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .team-member {
            text-align: center;
            transition: transform 0.3s;
        }

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

        .team-photo {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--primary);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

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

        .team-member .role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .team-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-light);
            border-radius: 50%;
            color: var(--primary);
            transition: all 0.3s;
            text-decoration: none;
        }

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

        /* Testimonials */
        .testimonials {
            background: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-text {
            margin-bottom: 25px;
            color: var(--text);
            font-style: italic;
            line-height: 1.8;
        }

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

        .author-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s;
        }

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

        .blog-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

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

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

        .blog-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--text-light);
        }

        .blog-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .blog-content h3 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .blog-content h3 a:hover {
            color: var(--primary);
        }

        .blog-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-widget h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-widget ul {
            list-style: none;
        }

        .footer-widget li {
            margin-bottom: 12px;
        }

        .footer-widget a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-widget a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-widget p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button {
            padding: 12px 30px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 76px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 30px 0;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .slide-content h1 {
                font-size: 40px;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .hero-slider {
                height: 500px;
            }

            .top-bar-left, .top-bar-right {
                width: 100%;
                justify-content: center;
                margin: 5px 0;
            }
        }

        @media (max-width: 640px) {
            .slide-content h1 {
                font-size: 32px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .section {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .services-grid,
            .portfolio-grid,
            .blog-grid,
            .team-grid,
            .testimonials-grid,
            .service-cards-grid {
                grid-template-columns: 1fr;
            }

            .hero-slider {
                height: 400px;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

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

        .animate-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }
        
        
        
        
        /* Dropdown */
.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.submenu li {
    padding: 10px 20px;
}

.submenu li a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.submenu li a:hover {
    color: #0066ff;
    padding-left: 5px;
}

/* Show dropdown on hover */
.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
    