:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff6b6b;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        .section-title-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #555;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
        }
        .gradient-bg {
            background: var(--gradient) !important;
            color: white !important;
        }
        .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark);
            margin: 0 0.5rem;
            position: relative;
            padding: 0.5rem 0;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--gradient);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero {
            padding: 10rem 0 7rem;
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.95)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--primary);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            opacity: 0.1;
        }
        .hero:after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--secondary);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            opacity: 0.1;
        }
        .hero h1 {
            color: white;
            background: none;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.3rem;
            max-width: 700px;
        }
        .hero-btns {
            margin-top: 2rem;
        }
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-primary {
            background: var(--gradient);
            border: none;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }
        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: transparent;
        }
        .btn-outline-light:hover {
            background: white;
            color: var(--primary);
            border-color: white;
        }
        section {
            padding: 6rem 0;
        }
        .section-title-center {
            text-align: center;
            margin-bottom: 4rem;
        }
        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .about-img:hover {
            transform: translateY(-10px);
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(106, 17, 203, 0.05);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(106, 17, 203, 0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .stat-text {
            font-size: 1rem;
            color: var(--gray);
            margin-top: 0.5rem;
        }
        .services {
            background-color: #f9f9ff;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(106, 17, 203, 0.1);
            border-color: transparent;
        }
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(106, 17, 203, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--primary);
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            gap: 0.5rem;
        }
        .filter-btn {
            padding: 0.6rem 1.5rem;
            background: transparent;
            border: 2px solid rgba(106, 17, 203, 0.2);
            color: var(--dark);
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }
        .portfolio-item {
            margin-bottom: 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
        }
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .portfolio-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        .portfolio-content {
            padding: 1.5rem;
        }
        .portfolio-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .team-section {
            background-color: #f9f9ff;
        }
        .team-member {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .member-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }
        .member-info {
            padding: 1.5rem;
        }
        .member-info h3 {
            margin-bottom: 0.2rem;
        }
        .member-position {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .member-social {
            display: flex;
            gap: 0.8rem;
        }
        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(106, 17, 203, 0.1);
            color: var(--primary);
            transition: all 0.3s ease;
        }
        .member-social a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info {
            background: var(--gradient);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            height: 100%;
        }
        .contact-info h2 {
            color: white;
        }
        .contact-info h2:after {
            background: white;
        }
        .contact-info p {
            color: rgba(255, 255, 255, 0.85);
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .contact-details h4 {
            color: white;
            margin-bottom: 0.3rem;
        }
        .contact-details p {
            margin-bottom: 0;
        }
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        .form-control {
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
        }
        .friendlink {
            background-color: #f9f9ff;
            padding: 4rem 0;
        }
        .friendlink h2 {
            text-align: center;
            margin-bottom: 3rem;
        }
        .flink-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .flink {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            color: var(--primary);
        }
        .flink i {
            margin-right: 0.8rem;
            font-size: 1.5rem;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-contact h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-contact p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        .footer-contact i {
            margin-right: 0.8rem;
            color: var(--primary);
            width: 20px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-bottom p {
            margin-bottom: 0;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .hero {
                padding: 8rem 0 5rem;
            }
            section {
                padding: 4rem 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 6rem 0 4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .contact-info, .contact-form {
                padding: 2rem;
            }
            .flink-container {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
        @media (max-width: 576px) {
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .portfolio-filter {
                gap: 0.3rem;
            }
            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }
