/* nav bar start */
/* General styles for the navbar */

.navbar {
    display: flex;
    justify-content:space-around;
    background-color: #3631319d;
    align-items: center;
    height: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed; 
    top: 0;
    left: 0;
    backdrop-filter: blur(10px); 
    z-index: 1000;
  }
  
  .navbar .logo a {
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style-type: none;
  }
  
  .navbar .nav-links li {
    margin: 0 15px;
  }
  
  .navbar .nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    transition: color 0.3s ease;
    transition: font-size 0.15s ease;  
  }
  
  .navbar .nav-links li a:hover {
    color: #00ff4c;
    font-size: 13px;
  }
  
/*  */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
}

.nav-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 15px;
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* Styles for the profile dropdown */
.profile-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.profile-icon {
    font-size: 1rem; /* Adjust size as needed */
    color: var(--text-primary);
    cursor: pointer;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Profile Dropdown Container */
.profile-dropdown {
position: relative;
display: inline-block;
cursor: pointer;
}

/* Profile Icon */
.profile-icon {
font-size: 1.2rem;
color: var(--text-primary);
cursor: pointer;
}
/* navbar end */









    
/* cards start */
body {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 40px;
    padding-top: 70px;
    text-align: center;
}

h2 {
    color: #ffffff;
      text-shadow: 
          0 0 5px #2ECC71, 
          0 0 10px #2ECC71, 
          0 0 20px #2ECC71, 
          0 0 40px #2ECC71, 
          0 0 80px #2ECC71;
      font-family: "Agency FB", Arial, sans-serif;
      font-size: 35px;
    margin-bottom: 30px;
}

/* === ABOUT CARD === */
.about-wrapper {
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.about-card {
    padding: 20px 40px 40px 40px;
    background: #111;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    overflow: hidden;
}

/* Idle edge glow */
.about-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #00ff88, #00ff88) top,
                linear-gradient(90deg, #00ff88, #00ff88) bottom,
                linear-gradient(0deg, #00ff88, #00ff88) left,
                linear-gradient(0deg, #00ff88, #00ff88) right;
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
    background-repeat: no-repeat;
    filter: blur(6px);
    pointer-events: none;
    z-index: 1;
}

/* Unique hover effect */
.about-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8), 
                0 0 80px rgba(0, 255, 136, 0.5);
}

.about-card:hover::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 20%, transparent 70%);
    animation: pulse 2.5s infinite ease-in-out;
    z-index: 0;
}

/* Gradient shimmer */
.about-card:hover {
    background: linear-gradient(135deg, #111, #0a0a0a, #111);
    background-size: 200% 200%;
    animation: shimmer 6s linear infinite;
}

.about-card h3 {
    color: #00ff88;
    /* padding-top: 10px; */
    position: relative;
    z-index: 2;
}

.about-card p {
    line-height: 1.6;
    font-size: 15px;
    color: #ddd;
    position: relative;
    z-index: 2;
}

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

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === TEAM SECTION === */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.card {
    background: #111;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Glow on hover (edges only) */
.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #00ff88, #00ff88) top,
                linear-gradient(90deg, #00ff88, #00ff88) bottom,
                linear-gradient(0deg, #00ff88, #00ff88) left,
                linear-gradient(0deg, #00ff88, #00ff88) right;
    background-size: 100% 2px, 100% 2px, 2px 100%, 2px 100%;
    background-repeat: no-repeat;
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #00ff88;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.card:hover img {
    transform: rotate(5deg) scale(1.05);
}

.card h3 {
    margin: 10px 0 5px;
    color: #00ff88;
}

.card p {
    font-size: 14px;
    color: #ccc;
}
/* cards end */











/* footer start */
    /* footer section ends */