        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000000;
            color: #E2E8F0;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .welcome-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            animation: fadeOut 1s ease-out 3s forwards;
        }

        .welcome-screen.hidden {
            display: none;
        }

        .welcome-logo {
            font-size: 5em;
            animation: zoomIn 1.5s ease-out;
        }

        .welcome-text {
            font-size: 3em;
            font-weight: bold;
            background: linear-gradient(45deg, #af93ba 0%, #c9b3d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 20px;
            animation: slideUp 1s ease-out 0.5s both;
        }

        .welcome-subtitle {
            font-size: 1.3em;
            color: #E2E8F0;
            margin-top: 10px;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards;
        }

        @keyframes zoomIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes slideUp {
            0% {
                transform: translateY(50px);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            0% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                pointer-events: none;
            }
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @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 float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes shootingStar {
            0% {
                transform: translate(-100px, -100px) rotate(45deg);
                opacity: 1;
            }
            70% {
                opacity: 1;
            }
            100% {
                transform: translate(calc(100vw + 100px), calc(100vh + 100px)) rotate(45deg);
                opacity: 0;
            }
        }

        .shooting-star {
            position: fixed;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
            z-index: 999;
            opacity: 0;
            animation: shootingStar 2s ease-out;
            pointer-events: none;
        }

        .shooting-star::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, white, transparent);
            transform-origin: left;
        }

        .moving-strip {
            position: relative;
            width: 100%;
            background: linear-gradient(90deg, #bab9d9 0%, #223b98 50%, #3599c1 100%);
            padding: 12px 0;
            overflow: hidden;
            transform: rotate(-3deg);
            box-shadow: 0 10px 40px rgba(175, 147, 186, 0.5);
            margin: 50px 0;
        }

        .strip-content {
            display: flex;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }

        .strip-item {
            display: flex;
            align-items: center;
            padding: 0 60px;
            white-space: nowrap;
            font-size: 1.3em;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .strip-separator {
            font-size: 0.9em;
            margin: 0 20px;
            opacity: 0.6;
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 5px 20px;
            margin: 110px 0 40px 0;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        h1 {
            font-size: 3.5em;
            background: linear-gradient(45deg, #4584f0 0%, #c9b3d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(175, 147, 186, 0.5);
            animation: float 3s ease-in-out infinite;
        }

        p {
            font-size: 1.2em;
            line-height: 1.8;
            color: #E2E8F0;
        }

        .content-section {
            background: rgba(175, 147, 186, 0.03);
            backdrop-filter: blur(10px);
            padding: 40px;
            margin: 30px 0;
            border-radius: 15px;
            border: 1px solid rgba(175, 147, 186, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .content-section:nth-child(2) { animation-delay: 0.3s; }
        .content-section:nth-child(3) { animation-delay: 0.5s; }
        .content-section:nth-child(4) { animation-delay: 0.7s; }
        .content-section:nth-child(5) { animation-delay: 0.9s; }
        .content-section:nth-child(6) { animation-delay: 1.1s; }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(175, 147, 186, 0.3);
        }

        h2 {
            color: #ffffff;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background: rgba(175, 147, 186, 0.05);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(175, 147, 186, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .card:nth-child(1) { animation-delay: 0.2s; }
        .card:nth-child(2) { animation-delay: 0.3s; }
        .card:nth-child(3) { animation-delay: 0.4s; }
        .card:nth-child(4) { animation-delay: 0.5s; }

        .card:hover {
            background: rgba(175, 147, 186, 0.1);
            /* transform: scale(1.05) translateY(-10px); */
            box-shadow: 0 10px 40px rgba(175, 147, 186, 0.4);
            animation: glow 2s ease-in-out infinite;
        }

        .card h3 {
            color: #c9b3d4;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(2, 6, 23, 0.5);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(175, 147, 186, 0.2);
            padding: 18px 40px;
            border-radius: 50px;
            animation: fadeIn 1s ease-out;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            /* max-width: 900px; */
            width: 90%;
        }

        nav .nav-container {
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            gap: 40px;
        }

        nav .logo {
            font-size: 1.5em;
            font-weight: bold;
            color: #E2E8F0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        nav .logo span {
            font-size: 1.3em;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        nav a {
            color: #E2E8F0;
            text-decoration: none;
            font-size: 1em;
            transition: all 0.3s ease;
            padding: 0;
            border-radius: 0;
            font-weight: 500;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #af93ba;
            transition: width 0.3s ease;
        }

        nav .logo a:hover {
            color: #000000;
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-dropdown {
            position: relative;
            cursor: pointer;
        }

        .nav-dropdown::after {
            content: '▼';
            font-size: 0.7em;
            margin-left: 5px;
        }

        footer {
            text-align: center;
            padding: 40px;
            margin-top: 60px;
            color: #94A3B8;
        }
        .content1{
            padding-top: 150px;
        }
        .venture-para{
            padding-left: 20px;
        }
        #about{
            padding-top:150px;
            box-shadow: none;
        }
        #location{
            display: block;
        }
        .gnitimg{
            padding-left: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(175, 147, 186, 0.3);
        }
        .map-container{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }
    .ventures{
        padding-left: 70px;
    }
    .event{
        color: #abdcff;
    }
.week{
    padding-left: 25px; 
}
.session{
    padding-left: 25px;
}
.evtitle{
    color: #a4abdf;
    padding-left: 25px;
}
.dropdown{
    background-color: black;
}
    




















        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tab {
            padding: 15px 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            background: transparent;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
        }

        .tab:hover {
            border-color: #00d9ff;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
            transform: translateY(-2px);
        }

        .tab.active {
            border-color: #00d9ff;
            background: rgba(0, 217, 255, 0.1);
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
        }

        .section-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .section-content.active {
            display: block;
        }

     

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin: 60px 0 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, #00d9ff, transparent);
        }

        .team-grid {
            display: flex;
            flex-wrap: nowrap;
            justify-content: flex-start;
            gap: 40px;
            margin-top: 40px;
            overflow-x: auto;
            padding-bottom: 20px;
        }
        
        .team-grid::-webkit-scrollbar {
            height: 8px;
        }
        
        .team-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        
        .team-grid::-webkit-scrollbar-thumb {
            background: rgba(0, 217, 255, 0.5);
            border-radius: 10px;
        }
        
        .team-grid::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 217, 255, 0.8);
        }
        
        .team-grid .team-card {
            min-width: 380px;
            max-width: 380px;
            flex: 0 0 auto;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            text-align: center;
            position: relative;
            overflow: visible;
           
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .team-card::before {
            display: none;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .card-background {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
            border-radius: 20px 20px 0 0;
            position: relative;
            margin-bottom: 20px;
            overflow: visible;
        }

        .card-background::before {
            display: none;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
            pointer-events: none;
        }

        .orb-1 {
            width: 12px;
            height: 12px;
            top: 20%;
            left: 15%;
            animation: float1 4s ease-in-out infinite;
        }

        .orb-2 {
            width: 8px;
            height: 8px;
            top: 30%;
            right: 20%;
            animation: float2 5s ease-in-out infinite;
        }

        .orb-3 {
            width: 10px;
            height: 10px;
            bottom: 25%;
            left: 25%;
            animation: float3 4.5s ease-in-out infinite;
        }

        .orb-4 {
            width: 14px;
            height: 14px;
            bottom: 20%;
            right: 15%;
            animation: float4 5.5s ease-in-out infinite;
        }

        .orb-5 {
            width: 6px;
            height: 6px;
            top: 60%;
            left: 10%;
            animation: float5 3.5s ease-in-out infinite;
        }

        .orb-6 {
            width: 9px;
            height: 9px;
            top: 15%;
            right: 30%;
            animation: float1 4.2s ease-in-out infinite;
        }

        .orb-7 {
            width: 11px;
            height: 11px;
            bottom: 30%;
            right: 25%;
            animation: float3 4.8s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { 
                transform: translate(0, 0);
                opacity: 0.6;
            }
            50% { 
                transform: translate(20px, -15px);
                opacity: 1;
            }
        }

        @keyframes float2 {
            0%, 100% { 
                transform: translate(0, 0);
                opacity: 0.5;
            }
            50% { 
                transform: translate(-15px, 20px);
                opacity: 1;
            }
        }

        @keyframes float3 {
            0%, 100% { 
                transform: translate(0, 0);
                opacity: 0.7;
            }
            50% { 
                transform: translate(15px, 18px);
                opacity: 1;
            }
        }

        @keyframes float4 {
            0%, 100% { 
                transform: translate(0, 0);
                opacity: 0.6;
            }
            50% { 
                transform: translate(-20px, -12px);
                opacity: 1;
            }
        }

        @keyframes float5 {
            0%, 100% { 
                transform: translate(0, 0);
                opacity: 0.5;
            }
            50% { 
                transform: translate(10px, -20px);
                opacity: 0.9;
            }
        }

        .profile-image-container {
            position: relative;
            width: 250px;
            height: 300px;
            margin: 60px auto 0;
        }

        .profile-image {
            width: 250px;
            height: 300px;
            border-radius: 50%;
            border: 5px solid white;
            object-fit: cover;
            position: relative;
            z-index: 2;
            background: #2d3748;
        }

        .planet-ring {
            position: absolute;
            width: 240px;
            height: 240px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .planet-ring::before {
            content: '';
            position: absolute;
            width: 14px;
            height: 14px;
            background: #00d9ff;
            border-radius: 50%;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px #00d9ff;
        }

        .member-name {
            font-size: 2rem;
            margin: 25px 0 12px;
            font-weight: 600;
            color: #1e3a8a;
            padding: 0 30px;
        }

        .member-role {
            color: #3b82f6;
            font-size: 1.2rem;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0 30px;
        }

        .member-bio {
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
            padding: 0 30px 30px;
            font-size: 1.05rem;
        }

        .social-links {
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .team-card:hover .social-links {
            left: 20px;
            opacity: 1;
        }


        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .social-link.linkedin {
            background: #0077b5;
        }

        .social-link.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-link:hover {
            transform: scale(1.15);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        /* Laptop optimization */
        @media (min-width: 1024px) and (max-width: 1600px) {
            .container {
                padding: 50px 40px;
            }

            .header h1 {
                font-size: 4.5rem;
                margin-bottom: 50px;
            }

            .team-grid {
                gap: 150px;
                padding: 0 240px;
            }

            .team-grid .team-card {
                min-width: 400px;
                max-width: 400px;
            }
        }

        /* Large laptop/desktop optimization */
        @media (min-width: 1600px) {
            .header h1 {
                font-size: 5rem;
            }

            .team-grid {
                gap: 60px;
                padding: 0 40px;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }

            .tabs {
                flex-direction: column;
                align-items: center;
            }

            .tab {
                width: 80%;
                max-width: 300px;
            }

            .section-title {
                font-size: 2rem;
            }

            .team-grid .team-card {
                min-width: 280px;
                max-width: 280px;
            }

            .card-background {
                height: 240px;
            }

            .profile-image-container {
              
                width: 200px;
                height: 200px;
            }

            .profile-image {
              
                width: 200px;
                height: 200px;
            }

            .planet-ring {
                
                width: 200px;
                height: 200px;
            }

            .member-name {
                font-size: 1.5rem;
            }

            .member-role {
                font-size: 0.9rem;
            }

            .member-bio {
                font-size: 0.9rem;
            }

            .social-links {
                left: 10px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .tab {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .team-grid .team-card {
                min-width: 260px;
                max-width: 260px;
            }

            .card-background {
                height: 220px;
            }

            .profile-image-container {
                width: 130px;
                height: 130px;
                margin: 40px auto 0;
            }

            .profile-image {
                width: 130px;
                height: 130px;
            }

            .planet-ring {
                width: 160px;
                height: 160px;
            }

            .member-name {
                font-size: 1.3rem;
                margin: 15px 0 8px;
            }

            .member-role {
                font-size: 0.85rem;
                margin-bottom: 10px;
            }

            .member-bio {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .floating-orb {
                transform: scale(0.8);
            }
        }


        .teamhead{
            padding-top: 150px;
        }
        .dropdown-menu{
            background-color: rgb(102, 44, 152);
        }
        .dropdown-item{
            color: white;
        }
        #dropdown{
            background-color: rgba(2, 6, 23, 0.5);
           color:rgb(255, 255, 255);
           backdrop-filter: 20px;
        }
        .welcome-subtitle{
            padding-top: 20px;
        }
        @media (max-width: 460px) {
            .welcome-logo {
                font-size: 3em;
            }

            .welcome-text {
                
                font-size: 2em;
            }

            .welcome-subtitle {
                font-size: 1em;
            }
        }
        @media (max-width: 460px) {
            #header-logo {
                height:3em;
                width:9em;
            }}
        @media (max-width: 768px) {
            .map-container{
                flex-direction: column;
            }
        }
         @media (max-width: 768px) {
            #governors .team-grid{
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }
        @media (max-width: 768px) {
            #steering .team-grid{
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }
         @media (max-width: 768px) {
            #executive .team-grid{
                display: flex;
                flex-direction: column;
                align-items: center;
                
            }
        }










        /* 1. Hide the sandwich icon on desktop */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: white; /* Match your theme */
}

/* 2. Mobile Logic */
@media (max-width: 768px) {
    .menu-icon {
        display: flex; /* Show the sandwich button */
    }

    ul#nav-menu {
        display: none; /* Hide the links by default */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Adjust based on your navbar height */
        padding-top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background-color: rgb(0, 0, 0, 0.9); /* Match your space theme */
        padding: 20px;
        height: 22em;
        width: 15em;
        border-radius: 10px;
        align-items: center;
        justify-content: center;
        list-style: none;
    }

    /* This class will be added by JavaScript */
    ul#nav-menu.active {
        display: flex;
    }
}

@media (max-width: 768px) {
  /* This hides the links themselves */
  .bnav {
    display: none;
  }

  /* Better: Hide the entire UL containing the desktop links */
  /* Since your desktop UL doesn't have a class, we target the second UL in the container */
  .nav-container ul:not(#nav-menu) {
    display: none;
  }
  
  /* Also hide the Contact Me dropdown if needed */
  .dropdown {
    display: none;
  }
}

/* Default: Hide mobile menu on large screens */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  /* Hide desktop menu on small screens */
  .desktop-only, .dropdown {
    display: none;
  }

  /* Show mobile menu when needed */
  .mobile-only {
    display: block; 
  }
}
#about{
     text-align: center;
            margin-bottom: 60px;
}

@media (max-width: 600px) {
.welcome-screen {
        font-size: 1rem;
        text-align: center;

    }
}
@media (max-width: 600px) {
    .ventures{
        padding-left:10px;
        padding-right:10px;
    }
    #ventures{
        font-size: 0.7rem;
        /* text-align: center; */
    }
}
.email{
    color: #E2E8F0;
    text-decoration: none;
}
.content{
    height:100px;
    width:100px;
}



@media screen and (max-width: 600px) {
    /* 1. Center the container that holds the image and the ring */
    .profile-image-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        left: 0 !important; /* Resets any manual positioning */
        width: fit-content !important;
        margin-bottom: 20px !important;
    }

    /* 2. Ensure the background container also aligns children to the center */
    .card-background {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* 3. Ensure the ring stays centered behind/around the image */
    .planet-ring {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }

    /* 4. Center all text inside the cards for a cleaner mobile look */
    .team-card {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 5. Center the social links flexbox */
    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
    }
}





















@media screen and (max-width: 600px) {
    /* Target the container */
    .assi {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Target cards*/
    .card2 {
        margin-left: 0 !important;
        display: block !important;
        float: none !important;    /* Removes any left/right floating */
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 20px !important;
        width: 90% !important;     /* Adjust width for mobile */
        max-width: 320px !important;
    }
}












/*associate section code*/


.card2{
    height:320px;
    width:250px;
    display:inline-block;
    border-radius:15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: rgb(247, 247, 247);
    color: black;
    text-align: center;
    margin-top: 30px;
    margin-left: 70px;
  
}
.card-background2{
    height:200px;
    width:185px;
}

.card2-img{
    padding-top: 15px;
    height:230px;
    width:200px;
    border-radius:30%;
    justify-content: center;
    align-items: center;
}
        .card2::before {
            display: none;
        }

        .card2:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .card2-background {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
            border-radius: 20px 20px 0 0;
            position: relative;
            margin-bottom: 20px;
            overflow: visible;
        }
        .section-title2{
            text-align: center;
            font-size: 2.5rem;
            margin: 60px 0 40px;
            left: 50%;
            transform: translateX(-50%);
            position: relative;
            width: fit-content;
        }

        .section-title2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, #00d9ff, transparent);
        }
                
        .card2:hover .social-links {
            left: 20px;
            opacity: 1;
        }
        .card-title{
            padding-top: 10px;
            text-align: center;
            font-weight: 600;
        }
        .card-text{
            color: #266aa9;
        }
        .assi{
            margin-left: 50px;
        }
        @media screen and (max-width: 600px) {
            .cta-button {
                width: 170px !important;
                padding: 12px 30px !important;
                font-size: 1rem !important;
            }
        }
        .welcome-heading2{
            text-align: center !important;
        }
    
        