
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --secondary: #8b5cf6;
        --accent: #06b6d4;
        --dark: #0f172a;
        --darker: #020617;
        --light: #f8fafc;
        --gray: #64748b;
        --success: #10b981;
        --warning: #f59e0b;
        --danger: #ef4444;
        --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
        --gradient-secondary: linear-gradient(135deg, #06b6d4, #3b82f6);
        --gradient-accent: linear-gradient(135deg, #10b981, #06b6d4);
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    html {
        scroll-behavior: smooth;
    }

    .main-head {
        font-size: 4rem !important;
    }

    body {
        background: var(--darker);
        color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
        overflow: hidden;
        padding-top: 0;
        /* Remove top padding since no navbar */
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23334155" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    }

    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        animation: slideInLeft 1s ease-out;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(99, 102, 241, 0.1);
        border: 1px solid rgba(99, 102, 241, 0.3);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-title {
        font-size: 4rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--light), var(--primary));
        -webkit-background-clip: text;
        animation: slideInRight 1s ease-out 0.3s both;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--gray);
        margin-bottom: 2rem;
        line-height: 1.7;
        animation: fadeInUp 1s ease-out 0.5s both;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
        animation: fadeInUp 1s ease-out 0.7s both;
    }

    .btn-secondary {
        background: transparent;
        color: var(--light);
        border: 2px solid rgba(99, 102, 241, 0.5);
    }

    .btn-secondary:hover {
        background: rgba(99, 102, 241, 0.1);
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        animation: fadeInUp 1s ease-out 0.9s both;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        display: block;
    }

    .stat-label {
        font-size: 0.875rem;
        color: var(--gray);
    }

    .hero-visual {
        position: relative;
        animation: slideInRight 1s ease-out 0.4s both;
    }

    .floating-elements {
        position: relative;
        height: 500px;
    }

    .floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        animation: float 6s ease-in-out infinite;
        box-shadow: var(--shadow-xl);
        z-index: 10;
        /* Ensure floating cards are above the image */
    }

    .floating-card:nth-child(1) {
        top: 0px;
        left: 100px;
        /* Adjusted position for the new section */
        animation-delay: 0s;
    }

    .floating-card:nth-child(2) {
        top: 200px;
        left: 50px;
        /* Adjusted position for the new section */
        animation-delay: 2s;
    }

    .floating-card:nth-child(3) {
        top: 100px;
        left: 400px;
        /* Adjusted position for the new section */
        animation-delay: 4s;
    }

    .floating-card:nth-child(4) {
        top: 300px;
        left: 300px;
        /* Adjusted position for the new section */
        animation-delay: 1s;
    }

    .card-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Particles */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--primary);
        border-radius: 50%;
        opacity: 0.6;
        animation: particleFloat 8s linear infinite;
    }

    @keyframes particleFloat {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }

        10% {
            opacity: 0.6;
        }

        90% {
            opacity: 0.6;
        }

        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }

    /* Services Section */
    .services {
        padding: 8rem 0;
        background: white;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        /*background: linear-gradient(135deg, var(--light), var(--primary));*/
        -webkit-background-clip: text;
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: var(--gray);
        margin: 0 auto;
        margin-bottom: 3rem;
        line-height: 1.7;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .service-card {
        background: rgb(21 21 21);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 2.5rem;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        group: hover;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
        transition: left 0.6s ease;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: #3d3d3d;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--light);
    }

    .service-description {
        color: var(--gray);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .feature-tag {
        background: rgba(99, 102, 241, 0.1);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 500;
    }

    /* About Section */
    .about {
        background: #151515;
        padding: 6rem 0;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-text {
        animation: slideInLeft 1s ease-out;
    }

    .about-visual {
        position: relative;
        animation: slideInRight 1s ease-out;
    }

    .about-image {
        width: 100%;
        height: 400px;
        background: var(--gradient-secondary);
        border-radius: 24px;
        position: relative;
        overflow: hidden;
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about-stat {
        background: rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        display: block;
    }

    .about-stat-label {
        color: var(--gray);
        font-size: 0.875rem;
    }

    /* Team Section */
    .team {
        padding: 8rem 0;
        background: white;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .team-card {
        background: rgb(122 89 0 / 48%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 2rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .team-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
    }

    .team-avatar {
        width: 120px;
        height: 120px;
        background: #ffffff;
        border: 1px solid #000000;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #000000;
        font-weight: bold;
    }

    .team-name {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--light);
    }

    .team-role {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .team-bio {
        color: var(--gray);
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .team-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(99, 102, 241, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

    /* Portfolio Section */
    .portfolio {
        padding: 8rem 0;
        background: #151515;
    }

    .portfolio-filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        background: transparent;
        border: 2px solid rgba(99, 102, 241, 0.3);
        color: var(--gray);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .portfolio-item {
        position: relative;
        height: 300px;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s ease;
        background: black;
    }

    .portfolio-item:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .bannerimages2 {
        background: url(../img/service/website.png);
        background-size: cover;
    }

    .bannerimages3 {
        background: url(../img/service/app1.png);
        background-size: cover;
    }

    .bannerimages4 {
        background: url(../img/service/app2.png);
        background-size: cover;
    }

    .bannerimages5 {
        background: url(../img/service/web1.png);
        background-size: cover;
    }

    .bannerimages6 {
        background: url(../img/service/web2.png);
        background-size: cover;
    }

    .bannerimages1 {
        background: url(../img/service/website1.png);
        background-size: cover;
    }

    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.4s ease;
        text-align: center;
        padding: 2rem;
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
    }

    .portfolio-category {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .portfolio-description {
        color: var(--gray);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .portfolio-link {
        background: var(--gradient-primary);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .portfolio-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
    }

    .about-image-container {
        position: relative;
        width: 100%;
        padding-top: 75%;
        /* Adjust as needed for aspect ratio */
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }

    .about-visual img.score-photo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
        z-index: 5;
    }

    .about-visual .floating-card {
        /* Re-positioning for the new container */
        position: absolute;
        top: unset;
        left: unset;
        right: unset;
        bottom: unset;
        z-index: 10;
    }

    .about-visual .floating-card:nth-child(1) {
        top: 60%;
        left: 5%;
    }

    .about-visual .floating-card:nth-child(2) {
        top: 140%;
        left: 20%;
    }

    .about-visual .floating-card:nth-child(3) {
        top: 140%;
        right: 5%;
    }

    .about-visual .floating-card:nth-child(4) {
        top: 220%;
        right: 15%;
    }


    /* Animations */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {

        .hero-container,
        .about-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-title {
            font-size: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-stats {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .form-group {
            flex-direction: column;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .container {
            padding: 0 1rem;
        }
    }

    img.gauntletimg {
        width: 90%;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);

        /* Fade from left + right + top + bottom */
        -webkit-mask-image:
            linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-composite: intersect;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: cover;
        -webkit-mask-position: center;

        mask-image:
            linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
        mask-composite: intersect;
        mask-repeat: no-repeat;
        mask-size: cover;
        mask-position: center;

        transition: transform 0.3s ease-in-out;
    }

    img.gauntletimg:hover {
        transform: scale(1.02);
    }


    .center-head {
        text-align: center;
    }
    
     /* Custom styles for the FAQ section with a unique, futuristic touch */
        .faq-section {
            padding: 4rem 1rem;
            /* A subtle gradient for a professional, futuristic background effect */
            background: #151515;
        }

        .faq-container {
            max-width: 80%;
            margin: 0 auto;
        }

        .faq-item {
            background-color: #1a1a2e;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem; /* Slightly more rounded corners */
            margin-bottom: 1rem;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
        }

        /* Active state with a subtle, elegant glow effect */
        .faq-item.active {
            border-color: #ef4444; /* Red border to match the theme */
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.5), 0 0 10px rgba(239, 68, 68, 0.3);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem; /* Increased padding for a cleaner look */
            cursor: pointer;
            font-weight: 700; /* Bolder text for emphasis */
            font-size: 1.125rem;
            color: #f3f4f6;
            transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
        }

        .faq-question:hover {
            color: #ef4444;
            background-color: rgba(239, 68, 68, 0.1); /* Subtle red tint on hover */
            border-top-left-radius: 0.75rem;
            border-top-right-radius: 0.75rem;
        }

        .faq-question .icon {
            font-size: 1.5rem;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* A more fluid transition for the arrow */
            color: #ef4444;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 1.5rem;
            opacity: 0;
            transition: max-height 0.6s ease-out, padding 0.6s ease-out, opacity 0.5s ease-in;
            font-size: 1rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0.75rem 1.5rem 1.5rem 1.5rem;
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .faq-section {
                padding: 2rem 0.5rem;
            }
            .faq-question {
                font-size: 1rem;
            }
            .faq-answer {
                font-size: 0.9rem;
            }
        }
        
        /* Custom CSS for floating animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .floating-animation-1 {
            animation: float 4s ease-in-out infinite;
        }

        .floating-animation-2 {
            animation: float 4s ease-in-out infinite;
            animation-delay: 0.5s;
            /* Stagger the animation */
        }

        .floating-animation-3 {
            animation: float 4s ease-in-out infinite;
            animation-delay: 1s;
        }

        .floating-animation-4 {
            animation: float 4s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        .iconback {
            background: #212121;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 2rem;
        }

        /* SVG icon colors based on the image */
        .text-blue-400 {
            color: #5B95F2;
        }

        .text-purple-400 {
            color: #C287FF;
        }

        .text-green-400 {
            color: #87C2FF;
        }

        /* Adjusted from image as there was an issue detecting the color */
        .text-red-400 {
            color: #FF8787;
        }

        /* Adjusted from image */
        .bg-[#2a2a3f] {
            background-color: #2a2a3f;
        }

        .bg-[#3e2a3f] {
            background-color: #3e2a3f;
        }

        .bg-[#2a3e2a] {
            background-color: #2a3e2a;
        }

        .bg-[#3e2a2a] {
            background-color: #3e2a2a;
        }