
  :root {
              --primary-purple: #7845dc;
            --primary-light: #8A75FF;
            --secondary-purple: #5B3FD4;
            --dark-purple: #1E1B4B;
            --bg-light: #FAFAFF;
            --bg-white: #FFFFFF;
            --text-dark: #1E1B4B;
            --text-gray: #6B7280;
            --border-purple: rgba(107, 78, 230, 0.2);
            --shadow-md: 0 8px 25px rgba(107, 78, 230, 0.15);
            --shadow-lg: 0 15px 40px rgba(107, 78, 230, 0.2);
            --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
            --gradient-purple: linear-gradient(135deg, #6B4EE6, #5B3FD4);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
        }

body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            min-height: 100vh;
            line-height: 1.6;
            padding-top: 70px;
        }

        /* Navbar */
        .navbar {
            width: 100%;
            background: var(--bg-white);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(107, 78, 230, 0.1);
            position: fixed;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-purple);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Main Container */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .page-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Contact Form Card */
        .contact-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-purple);
            transition: var(--transition);
        }

        .contact-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .card-title {
            font-size: 1.5rem;
            color: var(--dark-purple);
            margin-bottom: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .card-title svg {
            width: 28px;
            height: 28px;
            fill: var(--primary-purple);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--bg-white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 3px rgba(107, 78, 230, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 20px rgba(107, 78, 230, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(107, 78, 230, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Contact Info Card */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-item {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-purple);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: var(--transition);
        }

        .info-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-lg);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-purple);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(107, 78, 230, 0.3);
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .info-content h3 {
            color: var(--dark-purple);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }

        .info-content p,
        .info-content a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .info-content a:hover {
            color: var(--primary-purple);
        }

        /* Social Media Links */
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--gradient-purple);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(107, 78, 230, 0.3);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(107, 78, 230, 0.4);
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        /* Footer */
        footer {
            background: var(--bg-white);
            border-top: 1px solid var(--border-purple);
            padding: 2rem;
            text-align: center;
            color: var(--text-gray);
            margin-top: 3rem;
        }

        footer strong {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .hamburger {
                display: flex;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                z-index: 100;
            }

            .bar {
                width: 25px;
                height: 3px;
                background-color: var(--primary-purple);
                border-radius: 5px;
                transition: var(--transition);
            }

            .nav-menu {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: var(--bg-white);
                flex-direction: column;
                align-items: center;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-out;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                max-height: 300px;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
            }

            .nav-menu li a {
                display: block;
                padding: 1rem 0;
                width: 100%;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
                background-color: var(--dark-purple);
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
                background-color: var(--dark-purple);
            }

            .contact-card {
                padding: 1.5rem;
            }
        }
/* Preloader Styles */
#preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}

.three-body {
 --uib-size: 35px;
 --uib-speed: 0.8s;
 --uib-color: #5D3FD3;
 position: relative;
 display: inline-block;
 height: var(--uib-size);
 width: var(--uib-size);
 animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
 position: absolute;
 height: 100%;
 width: 30%;
}

.three-body__dot:after {
 content: '';
 position: absolute;
 height: 0%;
 width: 100%;
 padding-bottom: 100%;
 background-color: var(--uib-color);
 border-radius: 50%;
}

.three-body__dot:nth-child(1) {
 bottom: 0;
 left: 0;
 transform: rotate(60deg);
 transform-origin: 50% 50%;
}

.three-body__dot:nth-child(1):after {
 bottom: 0;
 left: 0;
 animation: wobble1 calc(var(--uib-speed) * 1.25) infinite ease-in-out;
}

.three-body__dot:nth-child(2) {
 bottom: 0;
 right: 0;
 transform: rotate(60deg);
 transform-origin: 50% 50%;
}

.three-body__dot:nth-child(2):after {
 bottom: 0;
 left: 0;
 animation: wobble1 calc(var(--uib-speed) * 1.25) infinite ease-in-out;
 animation-delay: calc(var(--uib-speed) * 0.3);
}

.three-body__dot:nth-child(3) {
 bottom: 0;
 left: 50%;
 transform: rotate(60deg);
 transform-origin: 50% 50%;
}

.three-body__dot:nth-child(3):after {
 bottom: 0;
 left: 0;
 animation: wobble1 calc(var(--uib-speed) * 1.25) infinite ease-in-out;
 animation-delay: calc(var(--uib-speed) * 0.6);
}

@keyframes spin78236 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes wobble1 {
  0%, 100% { transform: translateY(0) scale(1, 1); }
  25% { transform: translateY(0) scale(1.1, 0.9); }
  50% { transform: translateY(20%) scale(0.9, 1.1); }
  75% { transform: translateY(0) scale(1.05, 0.95); }
}