 :root {
            --primary: #5e2c86;
            --secondary: #ff7e33;
            --accent: #00c897;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --danger: #e94560;
            --success: #06d6a0;
            --random1: #3f37c9;
            --random2: #f72585;
            --random3: #4cc9f0;
        }

        @font-face {
            font-family: 'Grotesk';
            src: url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&display=swap');
        }

        @font-face {
            font-family: 'Mono';
            src: url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap');
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Grotesk', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Brutalist/Glassmorph Hybrid */
        .section {
            padding: 5rem 2rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 2px solid var(--dark);
            box-shadow: 12px 12px 0 var(--dark);
        }

        .dark-section {
            background: rgba(26, 26, 46, 0.85);
            color: var(--light);
            border-color: var(--accent);
            box-shadow: 12px 12px 0 var(--accent);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Chaotic Animation */
        @keyframes chaotic-x {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            50% { transform: translateX(8px); }
            75% { transform: translateX(-3px); }
        }

        @keyframes chaotic-y {
            0%, 100% { transform: translateY(0); }
            25% { transform: translateY(-7px); }
            50% { transform: translateY(4px); }
            75% { transform: translateY(-2px); }
        }

        .chaotic {
            animation: chaotic-x 7s infinite ease-in-out, chaotic-y 5s infinite ease-in-out;
            animation-delay: calc(var(--delay) * 0.2s);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            background: var(--primary);
            color: var(--light);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid var(--secondary);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--light);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
        }

        nav ul li a:hover {
            background: var(--secondary);
            color: var(--dark);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--light);
            padding: 0 2rem;
            margin: 0;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }

        #hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/1.jpg') no-repeat center center/cover;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--secondary);
            color: var(--dark);
            text-decoration: none;
            font-weight: 700;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }

        .btn:hover {
            background: transparent;
            color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
        }

        /* About Section */
        #about {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-img {
            flex: 1;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 8px 8px 0 var(--primary);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content {
            flex: 1;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 4px;
            background: var(--secondary);
        }

        .dark-section h2 {
            color: var(--accent);
        }

        .dark-section h2::after {
            background: var(--secondary);
        }

        /* Services Section */
        #services {
            background: linear-gradient(135deg, var(--random1) 0%, var(--random2) 100%);
            color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .service-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        /* Research Section */
        #research {
            background-color: var(--light);
        }

        .research-tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .tab-btn {
            padding: 0.8rem 1.5rem;
            background: var(--light);
            color: var(--dark);
            border: none;
            font-family: inherit;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .tab-btn.active {
            background: var(--primary);
            color: var(--light);
            border-bottom-color: var(--secondary);
        }

        .tab-content {
            display: none;
            padding: 2rem;
            background: var(--light);
            border: 2px solid var(--dark);
            border-radius: 0 1rem 1rem 1rem;
        }

        .tab-content.active {
            display: block;
        }

        /* Team Section */
        #team {
            background: linear-gradient(135deg, var(--random3) 0%, var(--primary) 100%);
            color: var(--light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .team-member:hover {
            transform: scale(1.05);
        }

        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--secondary);
        }

        .team-member h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .team-member p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Testimonials */
        #testimonials {
            background-color: var(--dark);
            color: var(--light);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
        }

        .testimonial {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            text-align: center;
            display: none;
        }

        .testimonial.active {
            display: block;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 700;
            margin-top: 1rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--secondary);
        }

        /* FAQ Section */
        #faq {
            background-color: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 2px solid var(--dark);
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: var(--primary);
            color: var(--light);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--random2);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--light);
            color: var(--dark);
        }

        .faq-answer.open {
            padding: 1.5rem;
            max-height: 500px;
        }

        /* Pricing Section */
        #pricing {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--danger) 100%);
            color: var(--light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2.5rem 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border: 2px solid var(--accent);
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--accent);
            color: var(--dark);
            padding: 0.5rem 1rem;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            border-radius: 0 0 0 1rem;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--light);
        }

        .price span {
            font-size: 1rem;
            opacity: 0.8;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Contact Section */
        #contact {
            background-color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .contact-details li i {
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .contact-form .form-group {
            margin-bottom: 1.5rem;
        }

        .contact-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--dark);
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(94, 44, 134, 0.2);
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Book Form Section */
        #book-form {
            background: linear-gradient(135deg, var(--accent) 0%, var(--random3) 100%);
            color: var(--light);
        }

        .book-form-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .book-form-container h2 {
            margin-bottom: 2rem;
        }

        .book-form-container p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .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: var(--secondary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 500px;
            background: var(--dark);
            color: var(--light);
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .cookie-popup.show {
            transform: translateY(0);
        }

        .cookie-popup p {
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .cookie-btns {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.3rem;
            font-family: inherit;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: var(--secondary);
            color: var(--dark);
        }

        .cookie-decline {
            background: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }

        /* Thank You Popup */
        .thank-you-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .thank-you-popup.show {
            opacity: 1;
            visibility: visible;
        }

        .thank-you-content {
            background: var(--light);
            padding: 3rem;
            border-radius: 1rem;
            text-align: center;
            max-width: 500px;
            position: relative;
        }

        .thank-you-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .thank-you-content p {
            margin-bottom: 2rem;
        }

        .close-popup {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: var(--random1);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 992px) {
            #about {
                flex-direction: column;
            }
            
            .about-img {
                margin-bottom: 2rem;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 1300px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
                margin-left: auto;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 3rem 1.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.7rem 1.5rem;
            }
            
            .cookie-popup {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-btns {
                flex-direction: column;
            }
            
            .thank-you-content {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }
        }
    
        .form-group{
            margin-bottom: 15px;
        }
        
        @media (max-width:550px) {
            .cookie-banner{
                flex-direction: column;
            }
        }