@import url('https://fonts.googleapis.com/css2?family=Boldonse&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}
/* Global dark theme */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    

    /* Solid dark background */
background: linear-gradient(135deg, #000000, rgba(20, 1, 17, 0.984),#01040d);}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
/* Section cards or content containers */
.parallel_section {
    background-color: #1e1e1e; /* slightly lighter dark gray */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Buttons */
.section-btn {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-btn:hover {
    background-color: #3a3a3a;
}

/* Links */
a {
    color: #76c7c0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* ── Navigation Bar ── */
.navi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(15, 25, 45, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
    gap: 15px;
}

.navi h1 {
    font-size: 1.4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffff, #3498db, #8e44ad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    letter-spacing: 2px;
    position: relative;
}

.navi h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, transparent);
}

.pages {
    list-style: none;
    display: flex;
    gap: 25px;
}

.pages li a {
    color: #ccf4ff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.pages li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #3498db);
    transition: width 0.3s ease;
}

.pages li a:hover {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.pages li a:hover::before {
    width: 100%;
}
/* ── Responsive ── */
@media (max-width: 768px) {
    

    .navi h1 {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .navi .pages {
        display: none; /* hidden on mobile — dot menu takes over */
    }
}
 
.formsection{
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 8%;
    margin-left: 32%;
    margin-right: 32%;
    width: 36%;
    opacity: 0.92;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #014d64 0%, #1c4d5a 50%, #014d64 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.formsection:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
    opacity: 0.95;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.formsection h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.formsection p {
    color: #e0e0e0;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
    max-width: 300px;
}

.google-signin-wrapper {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.google-signin-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
}
/* 📱 Mobile Responsive Fix */
@media (max-width: 768px) {
    .google-signin-wrapper {
        margin-top: 5px;
        padding: 2px;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* 📱 Extra small devices (phones) */
@media (max-width: 480px) {
    .google-signin-wrapper {
        padding: 1px;
        margin-top: 1px;
    }
}
.menu-container {
position: fixed;
  float: right;
  margin-right: 20px;
  margin-left: 30px;
  margin-top: 10px;
  z-index: 1000;
}
.dot-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  
  cursor: pointer;
  border-radius: 40%;
  gap: 3px;
  
}

.dot-container:hover {
  background-color: #553a53;
}
.dot {
  width: 30px;
  height: 5px;
  background-color: #b3e9f0;
  border-radius: 15%;
  /* Remove the text dot character, use a real circle */
}
.frame1 {  
  visibility: hidden;
  position: relative;
  color: #f1f4f4;
  background: linear-gradient(70deg, #0f3342 0%, #09473d 100%);
  box-shadow: 0 2px 12px rgb(9, 161, 169);
  border-radius: 8px;
  min-width: 160px;
  max-height: 460px;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.frame1::-webkit-scrollbar {
  width: 8px;
}

.frame1::-webkit-scrollbar-thumb {
  background: rgba(185, 221, 239, 0.55);
  border-radius: 999px;
}

.frame1::-webkit-scrollbar-track {
  background: rgba(25, 47, 67, 0.4);
}
.info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
}
.info i {
  width: 30px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}

.info span {
  font-size: 14px;
  color: #ffffff;
  text-transform: capitalize;
}
.info:hover {
  background-color: #130e1b;
}
.info a {
  color: inherit;
  text-decoration: none;
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: rgba(126, 203, 218, 0.2);
  }

  button, .pages li a, .info, .dot-container {
    min-height: 44px; /* iOS touch target minimum */
    min-width: 44px;
  }

  .formsection input, .formsection button {
    height: 48px; /* Better touch targets */
    font-size: 16px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* Better performance on mobile */
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .navi {
    flex-direction: column;
    
    
    position: relative;
  }

  .navi h1 {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
  }

  

  .formsection {
    margin: 20px 15px;
    width: auto;
    padding: 35px 25px;
    border-radius: 15px;
  }

  .formsection h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .formsection p {
    font-size: 14px;
    line-height: 1.6;
  }

  .form-content {
    gap: 25px;
  }

  .google-signin-wrapper {
    padding: 25px;
  }

  .menu-container {
    position: absolute;
    float: right;
    margin: 15px auto;
    display: flex;
    justify-content: center;
  }

  .dot-container {
    width: 45px;
    height: 35px;
    border-radius: 50%;
    background: rgba(179, 233, 240, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .dot-container:hover {
    background: rgba(179, 233, 240, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .dot {
    width: 25px;
    height: 4px;
    background: linear-gradient(90deg, #b3e9f0, #7ecbda);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .frame1 {
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(126, 203, 218, 0.1);
  }

  .info {
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
  }

  .info:hover {
    background: linear-gradient(135deg, #1a546d, #73869a);
    transform: translateX(5px);
    border-color: rgba(126, 203, 218, 0.3);
  }

  .info i {
    width: 22px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .navi {
    padding: 12px 15px;
    gap: 12px;
  }

  .navi h1 {
    font-size: 1.3rem;
  }

  .pages {
    display:none;
  }


  .formsection {
    margin: 15px 10px;
    padding: 25px 20px;
    border-radius: 12px;
  }

  .formsection h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .formsection p {
    font-size: 13px;
  }

  .form-content {
    gap: 20px;
  }

  .google-signin-wrapper {
    padding: 20px;
  }

  .menu-container {
    margin: 12px auto;
  }

  .dot-container {
    width: 40px;
    height: 30px;
  }

  .dot {
    width: 22px;
    height: 3px;
  }

  .frame1 {
    min-width: 160px;
  }

  .info {
    padding: 10px 15px;
    font-size: 14px;
  }

  .info i {
    width: 20px;
    font-size: 16px;
  }
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;

  background: #76c7c0;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 10px 15px;

  cursor: pointer;
  font-size: 14px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.back-to-top:hover {
  background: #5aa9a4;
  transform: translateY(-3px);
}
/* Features Section - Simple Grid Layout */
.features {
    display: flex;
    flex-wrap: wrap;           /* Wrap cards on small screens */
    justify-content: center;   /* Center all cards */
                    /* Space between cards */
    max-width: 1000px; 
    gap:35px;        /* Maximum width */
    margin: 0 auto;            /* Center the section */
    padding: 20px;
}

/* Main Heading Card */
.feature-card:first-child {
    width: 100% !important;    /* Full width */
    text-align: center;
    background: none;
    margin-bottom: 20px;
}

.feature-card:first-child h2 {
    color: rgb(254, 200, 22);  /* Yellow color */
    font-size: 2rem;
}

/* Individual Feature Cards */
.feature-card:not(:first-child) {
    background: rgba(255, 255, 255, 0.1);  /* Semi-transparent white */
    border-radius: 15px;       /* Rounded corners */
    padding: 20px;
    width: 250px;              /* Fixed width for cards */
    transition: transform 0.3s; /* Smooth hover effect */
}

/* Hover Effect */
.feature-card:not(:first-child):hover {
    transform: translateY(-5px); /* Lift card on hover */
    background: rgba(255, 255, 255, 0.15); /* Slightly brighter */
}

/* Card Headings */
.feature-card h4 {
    color: #00ffff;            /* Cyan color */
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Horizontal Rule */
.feature-card hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, transparent);
    margin: 10px 0;
}

/* Card Paragraphs */
.feature-card p {
    color: #cccccc;            /* Light gray */
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-card:not(:first-child) {
        width: 90%;            /* Full width on mobile */
    }
    
    .feature-card:first-child h2 {
        font-size: 1.5rem;     /* Smaller heading on mobile */
    }
    
    .navi .pages{
    
      display: none;
    }
}

/* General Section Styling */
section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headings */
section h2 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

/* Section Paragraphs */
section p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Getting Started Section - Special styling */
#getting-started1 {
    background: rgba(8, 219, 124, 0.05);
    border-radius: 20px;
    margin: 30px auto;
}
#getting-started {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    margin: 30px auto;
}

/* Resources Section */
#resources {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 30px auto;
}

/* Mentor Section */
#mentor {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 30px auto;
}

/* About Section */
#about {
    margin-top: 50px;
}

/* Buttons inside sections */
.section-btn {
    background: linear-gradient(135deg, #3498db, #8e44ad);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s;
}

.section-btn:hover {
    transform: translateY(-3px);
}

/* About Box (inside mentor section) */
.about-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.about-box h2 {
    color: #ff4444 !important;
    margin-bottom: 20px;
}

.about-box p {
    text-align: left;
    margin-bottom: 15px;
    max-width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    section {
        padding: 40px 15px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    section p {
        font-size: 0.9rem;
    }
    
    .about-box {
        padding: 20px;
    }
    
    .about-box h2 {
        font-size: 1.3rem;
    }
}