*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* Fixed Header */
.top-bar{
  text-align:center;
  padding:10px;
  background:#fff;
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
}

.top-bar img{
  height:50px;
}

.coaching-name{
  font-size:22px;
  font-weight:bold;
}

.navbar{
  background:#0d6efd;
  color:#fff;
  padding:8px;
  text-align:center;
  position:fixed;
  width:100%;
  top:90px;
  z-index:1000;
}

.navbar a{
  color:#fff;
  margin:0 15px;
  text-decoration:none;
  font-weight:bold;
}

.container{
  padding:150px 20px 40px;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  border:1px solid #ddd;
  border-radius:8px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.card img{
  width:100%;
  height:auto;
}


.card h3{
  padding:10px;
}

/* Mobile */
@media(max-width:768px){
  .cards{
    grid-template-columns:1fr;
  }
}




/* Contact Page Layout */

.contact-wrapper{
  display:flex;
  gap:30px;
  align-items:flex-start;
  justify-content:center;
  flex-wrap:wrap;
}

.contact-card{
  flex:1;
  min-width:300px;
  background:#ffffff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  text-align:center;
}

.dev-img{
  width:150px;
  height:150px;
  object-fit:cover;
  border-radius:50%;
  margin:15px 0;
}

.btn-group{
  margin:20px 0;
}

.btn{
  display:inline-block;
  background:#0d6efd;
  color:#fff;
  padding:8px 16px;
  margin:5px;
  border-radius:5px;
  text-decoration:none;
  font-weight:bold;
}

.btn:hover{
  background:#084298;
}

.social-links{
  margin-top:10px;
}

.social-links a{
  display:inline-block;
  margin:5px;
  padding:6px 12px;
  background:#f1f1f1;
  border-radius:5px;
  text-decoration:none;
  color:#333;
  font-weight:bold;
}

.social-links a:hover{
  background:#0d6efd;
  color:#fff;
}

.map-box{
  flex:1;
  min-width:300px;
  background:#ffffff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* Mobile */

@media(max-width:768px){
  .contact-wrapper{
    flex-direction:column;
  }
}


/* ===== CONTENT CARDS ===== */
.page-container{
  max-width:900px;
  margin:160px auto 40px; /* header + navbar ke liye top margin */
  padding:20px;
  background:#ffffff;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.page-container h2{
  color:#0d6efd;
  font-size:28px;
  margin-bottom:15px;
  border-bottom:2px solid #0d6efd;
  padding-bottom:5px;
}

.page-container h3{
  color:#084298;
  font-size:22px;
  margin-top:20px;
  margin-bottom:10px;
}

.page-container p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:12px;
  color:#333;
}

.page-container ul{
  margin-left:20px;
  margin-bottom:12px;
}

.page-container li{
  margin-bottom:8px;
  font-size:16px;
  color:#333;
}



.card a{
  text-decoration:none;
  color:inherit;
  display:block;
}

.card a:hover h3{
  color:#0d6efd;
  transform:scale(1.05);
  transition:0.3s;
}



.subject-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:20px;
}

.subject-card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  text-align:center;
}

.subject-card h3{
  margin-bottom:15px;
  color:#0d6efd;
}

.subject-card .btn{
  margin:5px;
}



/* ===== Objective Questions Styling ===== */
.question-card{
  background:#fff;
  padding:20px;
  margin-bottom:20px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.question-card p{
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
}

.options{
  list-style:none;
  padding:0;
}

.options li{
  background:#f1f1f1;
  margin:6px 0;
  padding:8px 12px;
  border-radius:5px;
}

.options li.correct{
  background:#d4edda;   /* light green */
  color:#155724;        /* dark green */
  font-weight:700;
}

.options li.correct::after{
  content:" ✔";
  color:#155724;
  font-weight:bold;
}


/* ===== Subjective Questions Styling ===== */
.subjective-card{
  background:#fff;
  padding:20px;
  margin-bottom:20px;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.subjective-card .question{
  font-weight:700;
  color:#dc3545; /* red color */
  margin-bottom:10px;
  font-size:16px;
}

.subjective-card .answer{
  font-weight:400; /* normal */
  color:#155724;  /* dark green */
  margin-bottom:12px;
  font-size:16px;
  line-height:1.6;
}


