
        /* General Reset */

        .branding-section {
        text-align: center;
        padding: 20px 20px;
        width: 100%;
        }

        .container {
        max-width: 900px;
        margin: 0 auto;
        }

        /* Heading Style */
        .title {
        font-size: clamp(2rem, 7vw, 4rem); /* Responsive font sizing */
        font-weight: 800;
        margin-bottom: 2rem;
        letter-spacing: -1px;
        }
        .container h1{
            font-family: "Audiowide", sans-serif;
        }

        /* Description Text */
        .description {
            font-size: clamp(0.5rem, 2.0vw, 1.15rem);
            line-height: 1.6;
            color: #94a3b8; /* Muted grayish-blue for readability */
            max-width: 1000px;
            margin: 0 auto;
            font-weight: 400;
            font-size: 18px;

        }
        .ST{
            font-family: "Orbitron", sans-serif;
        }

        /* Tablet & Mobile tweaks */
        @media (max-width: 600px) {
        .description {
            padding: 0 10px;
            font-size: auto;
            text-align: justify;
        }
        }

        /* The Animated Gradient Effect */
        .gradient-text {
        /* Adding more colors for a richer mix */
        background: linear-gradient(
            120deg,#0f172a, #4db6ac, #3b82f6, #4db6ac, #0f172a  /* Back to Cyan for a seamless loop */
        );
        
        /* Make the background 300% wider so we can "scroll" through it */
        background-size: 300% auto;
        
        /* Standard clip properties */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        
        /* Trigger the animation */
        animation: shine 5s linear infinite;
        }

        /* Keyframes to shift the background position */
        @keyframes shine {
        0% {
            background-position: 0% center;
        }
        100% {
            background-position: 300% center;
        }
        }
        /* The Animated Gradient Effect */
        .gradient-text1 {
        /* Adding more colors for a richer mix */
        background: linear-gradient(
            120deg,#296695, #60779d, #09123694, #1e235d, #136b82  /* Back to Cyan for a seamless loop */
        );
        
        /* Make the background 300% wider so we can "scroll" through it */
        background-size: 300% auto;
        
        /* Standard clip properties */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        
        /* Trigger the animation */
        animation: shine 20s linear infinite;
        }
        .mission-container {
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 10vh;
            padding: 30px;
    
        }

        .content-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap; 
            /* Allows wrapping on small screens */
        }
        /* Image Styling */
        .image-section {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .main-image {
            position: relative;
            border-radius: 15px;
            overflow: visible;
        }

        .main-image img {
            width: 100%;
            border-radius: 15px;
            display: block;
            opacity: 0.9;
        }

        /* Floating Badge */
        .badge {
            position: absolute;
            bottom: -20px;
            right: -10px;
            background: rgba(15, 20, 28, 0.95);
            border: 1px solid #1e293b;
            padding: 15px 20px;
            border-radius: 12px;
            display: flex;
            gap: 15px;
            max-width: 250px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .badge {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px); /* Adjust height of movement here */
            }
            100% {
                transform: translateY(0px);
            }
        }

        .badge-icon { color: #00d4ff; font-size: 1.2rem; }
        .badge strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
        .badge p { font-size: 0.75rem; color: #94a3b8; line-height: 1.4; }

        /* Text Content Styling */
        .text-section {
            flex: 1;
            min-width: 300px;
        }

        .text-section h2{
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
            font-family: "Audiowide", sans-serif;
            font-weight: 400;
        }

        .description1 {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        /* List Items */
        .mission-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .list-item {
            background: #fcfcfc;
            padding: 15px 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            border: 1px solid #04102544;
            transition: transform 0.2s ease;
            list-style: none;
            color: #04072a;
        }
        
        .list-item:hover {
            transform: translateX(10px);
            border-color: #081c4f7a;
        }

        .list-item span { color: #00d4ff; font-weight: bold; }

        /* Responsive Media Queries */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column; /* Stack vertically */
                text-align: center;
            }

            .badge {
                position: relative;
                bottom: 0;
                right: 0;
                margin: 20px auto 0;
            }
            /*.description1 {
                text-align: justify;
            }*/
            .list-item {
                justify-content: center;
            }

            .list-item:hover {
                transform: scale(1.02);
            }
        }

        /*Team Member*/
    .team{
           font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            margin: 0;
            padding: 80px 24px;
            -webkit-font-smoothing: antialiased;
    }
    :root {
            --primary: #000000;
            --secondary: #6366f1; /* Indigo accent */
            --bg-body: #ffffff;
            --bg-card: #f9fafb;
            --text-main: #111827;
            --text-sub: #4b5563;
        }
        /* --- Modern Header --- */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 100px;
        }

        .section-header h1 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-sub);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* --- Team Grid --- */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .member-card {
            background: var(--bg-card);
            border-radius: 32px;
            padding: 40px;
            transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
            border: 1px solid #f1f1f1;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .member-card:hover {
            background: #ffffff;
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 40px 80px -20px rgba(0,0,0,0.08);
            border-color: var(--secondary);
        }

        /* --- Smaller Image, High Impact --- */
        .image-wrapper {
            width: 100px;
            height: 100px;
            margin-bottom: 24px;
            position: relative;
        }

        .member-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .member-card:hover .member-img {
            transform: rotate(-8deg) scale(1.1);
        }

        .name {
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .role {
            font-weight: 500;
            color: var(--secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 32px;
        }

        /* --- Button Animation --- */
        .work-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .work-btn:hover {
            background: var(--secondary);
            box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
        }

        /* --- Minimalist Modal --- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
        }

        .modal-overlay.active { opacity: 1; visibility: visible; }

        .modal-content {
            background: white;
            width: 90%;
            max-width: 480px;
            padding: 48px;
            border-radius: 40px;
            box-shadow: 0 50px 100px -20px rgba(0,0,0,0.15);
            transform: translateY(40px);
            transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            border: 1px solid #eee;
            position: relative;
        }

        .modal-overlay.active .modal-content { transform: translateY(0); }

        .close-btn {
            position: absolute;
            top: 24px; right: 24px;
            background: #f3f4f6;
            border: none; border-radius: 50%;
            width: 32px; height: 32px;
            cursor: pointer; font-weight: bold;
        }

        .modal-title { font-family: 'Sora', sans-serif; font-size: 2rem; margin-bottom: 12px; }
        .modal-desc { color: var(--text-sub); line-height: 1.7; margin-bottom: 30px; font-size: 1.1rem; }
/*contact*/
.k1_wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.b9_banner {
    background: var(--gradient);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(98, 0, 234, 0.2);
    /* Animation: Subtle floating effect */
    animation: floatAnim 4s ease-in-out infinite;
}

.p4_text_group {
    max-width: 700px;
}

.t7_heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.s2_sub {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Button Styling */
.z5_button {
    background: var(--white);
    color: #6200ea;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.z5_button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #f8f8f8;
}

/* Arrow animation inside button */
.a3_arrow {
    transition: transform 0.3s ease;
}

.z5_button:hover .a3_arrow {
    transform: translateX(5px);
}

/* Floating Animation */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .b9_banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .p4_text_group {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .b9_banner {
        padding: 30px 20px;
    }
    
    .t7_heading {
        font-size: 1.4rem;
    }

    .s2_sub {
        font-size: 0.95rem;
    }
}
:root {
    --gradient: linear-gradient(135deg, #00c853 0%, #6200ea 100%);
    --white: #ffffff;
}