

/* Reset */
html {
  scroll-padding-top: 80px; 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: black;
}

/* Navbar */
.navbar {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
   color: black;
   padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
  }

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  max-height: 40px;
}

.logo-text {
  font-weight: bold;
  font-size: 1.4rem;
  color: black;
}

/* Toggle Button */
.toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.toggle-btn .bar {
  height: 4px;
  width: 100%;
  background-color: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggle-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.toggle-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.toggle-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li {
  position: relative;
}

.menu a {
  color: black;
  text-decoration: none;
  padding: 10px;
  display: block;
  cursor: pointer;
}

.menu a:hover {
  background-color: #eaeaea;
  border-radius: 4px;
}

/* Dropdown */


.dropdown-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;

  /* Center the whole form horizontally */
  align-items: center;
}

/* Optionally, make dropdowns a fixed width or max width */
.dropdown-form select.board,
.dropdown-form select.subject {
  width: 250px; /* or any width you want */
  max-width: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  top: 100%;
  left: 0;
  min-width: 150px;
  z-index: 1000;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  
}

.dropdown-content a {
  padding: 10px;
  
}

.dropdown:hover > .dropdown-content {
  display: block;
}

/* Sections */
.section {
  display: none;
  padding: 40px 20px;
  max-width: 1500px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Show active section */
.section.active {
  display: block;
}

/* Home Section */
.home-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px; 
}


.home-text {
  flex: 1 1 500px;
}

.home-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.home-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color:  #222;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #444;
}

.home-image {
  flex: 1 1 400px;
  text-align: center;
}

.home-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Menu Logo (mobile sidebar) */
.menu-logo {
  display: none;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .menu-logo {
    display: block;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
  }

  .menu-logo .logo-img {
    max-width: 100px;
    height: auto;
    margin: 0 auto;
  }
    .menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh; /* Full height */
    overflow-y: auto; /* <-- Enables scrolling */
    background-color: #f9f9f9;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
    border-right: 1px solid #f0f0f0;
  }

}

/* Responsive */
@media (max-width: 768px) {
  .toggle-btn {
    display: flex;
  }

  .menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #f9f9f9;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
    border-right: 1px solid #f0f0f0;
  }

  .menu.show {
    left: 0;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    padding: 15px 20px;
  }

  .dropdown-content {
    position: static;
    border: none;
    box-shadow: none;
    border-top: 1px solid #f0f0f0;
    display: none !important; /* controlled by JS */
  }

  .dropdown.open > .dropdown-content {
    display: block !important;
  }

  .home-content {
    flex-direction: column;
    text-align: center;
  }

  .home-text,
  .home-image {
    flex: 1 1 100%;
  }
}

/* Prevent background scroll when menu open */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* Developer Info Box */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}



/* About Section */
#about {
  background-color: #fefefe;
  padding: 60px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  max-width: 1500px;
  margin: 40px auto;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #007acc;
  text-align: center;
}

#about p {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

#about ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

#about li {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
}

#about li i {
  color: #007acc;
  margin-right: 10px;
  font-size: 22px;
}

/* Developer Info Box */
.developer-box {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(to right, #e6f0ff, #ffffff);
  border-left: 6px solid #007acc;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.developer-photo {
  max-width: 200px;
  height: auto;
  border: 4px solid #007acc;
  border-radius: 8px; /* Rounded corners instead of circle */
  object-fit: contain; /* Keep the original image without cropping */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.developer-text h3 {
  color: #007acc;
  margin-bottom: 10px;
}

.developer-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.social-links a {
  margin-right: 12px;
  font-size: 28px;
  color: #333;
  transition: color 0.3s, transform 0.2s;
}

.social-links a:hover {
  color: #007acc;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  #about {
    padding: 40px 15px;
  }

  .developer-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .developer-photo {
    max-width: 80%;
    border-radius: 8px;
  }}




/* Sticky Footer Layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-container {
  flex: 1;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
  color: #333;
}

/* contact*/
.contact-section {
  max-width: 800px;

margin: 60px auto;
  padding: 40px 35px;

 background-position: center;
 background-size: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  text-align: center;
}

.contact-section .mt {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #3f72af;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(63, 114, 175, 0.3);
}

.contact-section p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
  font-weight: 500;
}

.contact-form {
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #3f72af;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 2px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
  background: #f9fbfd;
  box-shadow: inset 2px 2px 5px #e0e7ff, inset -5px -5px 15px #ffffff;
  transition: all 0.3s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3f72af;
  box-shadow: 0 0 12px rgba(63, 114, 175, 0.5);
  background: #ffffff;
}

.contact-form button {
  display: block;
  margin: 0 auto;
  padding: 16px 48px;
  background: linear-gradient(135deg, #3f72af, #112d4e);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(49, 72, 124, 0.7);
  transition: all 0.35s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #112d4e, #3f72af);
  box-shadow: 0 15px 40px rgba(17, 45, 78, 0.8);
  transform: scale(1.07);
}

  
/* mnain Info Box */
.main-box {
  background-color: #f9f9f9;
  border-left: 5px solid #007acc;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.main-info {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.main-photo {
 width: 150px;
 height: 100px;
  border: 3px solid #007acc;
  border-radius: 0; 
  object-fit: contain;
}



.main-text {
  flex: 1;
  min-width: 250px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* optional spacing */
}

.view-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.view-btn:hover {
  background-color: #005f99;
  transform: scale(1.05);
}

@media (max-width: 768px){
.main-photo {
  max-width: 100%;
  height: auto;
  border: 3px solid #007acc;
  border-radius: 0; 
  object-fit: contain;
}
 
}

.dropdown-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.dropdown-form label {
  font-weight: bold;
  margin-top: 10px;
}

.dropdown-form select {
  padding: 10px;
  font-size: 16px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  width: 100%;
  max-width: 300px;
}

#terms {
  font-size: 18px; 
  padding: 50px 30px; 
  max-width: 900px; 
  margin: 40px auto;
  line-height: 1.7;
}

#terms h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

#terms ul {
  margin-top: 15px;
  padding-left: 20px;
}

#terms li {
  margin-bottom: 12px;
  font-size: 18px;
}

@media (max-width: 768px) {
#terms {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #007acc;
  border-radius: 8px;
}
#privacy {
  font-size: 18px;
  padding: 50px 30px;
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.7;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #007acc;
  border-radius: 8px;
}

}
#privacy {
    font-size: 18px; 
  padding: 50px 30px; 
  max-width: 900px; 
  margin: 40px auto;
  line-height: 1.7;
}
  

#privacy h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color:  #007bff;
text-align: center;
  
}

#privacy ul {
  margin-top: 15px;
  padding-left: 20px;
}

#privacy li {
  margin-bottom: 12px;
  font-size: 18px;
}


.brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit; /* keep the current text color */
  cursor: pointer;
}

.cta-btk {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3a46c2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}
.cta-btk:hover {
  background-color: #1babdb;
}

/* Notifications Section */
.notifications-section {
  background: linear-gradient(to bottom, #f9fbfd, #ffffff);
  padding: 60px 20px;
  margin: 120px auto; /* 👈 Adjust top margin here */
  max-width: 1100px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.notifications-header {
  text-align: center;
  margin-bottom: 40px;
}

.notifications-header h2 {
  font-size: 2.5rem;
  color: #007acc;
  margin-bottom: 10px;
}

.notifications-header p {
  font-size: 1.1rem;
  color: #555;
}

.notifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.notification-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 122, 204, 0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #007acc;
}

.notification-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 122, 204, 0.15);
}

.notification-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-top: 15px;
}

.notification-card p {
  color: #555;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
}

.notification-card a {
  color: #007acc;
  font-weight: bold;
  text-decoration: none;
}

.notification-card a:hover {
  text-decoration: underline;
}

.icon-box {
  font-size: 2.5rem;
  background-color: #e6f0ff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.jee {
  background-color: #dceeff;
}

.neet {
  background-color: #ffe6e6;
}

.cuet {
  background-color: #e6ffe6;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .notifications-header h2 {
    font-size: 2rem;
  }

  .notification-card {
    padding: 20px;
  }
}
.logo-video {
  height: 200px;
  width: auto;
  border-radius: 6px; /* optional */
}


.career-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.career-card {
  width: 300px;
  padding: 20px;
  border-radius: 100px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.career-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px #00000055;
}

.career-card ul {
  list-style-type: none;
  padding-left: 0;
}

.career-card li {
  margin-bottom: 12px;
  font-size: 15px;
}

.career-card a {
  color: #ffffff;
  text-decoration: underline;
}

.job {
  background: linear-gradient(135deg, #ff5722, #e64a19);
}

.admit {
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.result {
  background: linear-gradient(135deg, #4caf50, #388e3c);
}
.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab-button {
  background-color: #eee;
  border: none;
  padding: 5px 15px;
  margin: 2px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #555;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}

.tab-button:hover {
  background-color: #ddd;
}

.tab-button.active {
  background-color: #800000;
  color: #fff;
  box-shadow: 0 4px 10px rgb(128 0 0 / 0.6);
}



.home-content {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 40px;
      max-width: 2000px;
      width: 100%;
      gap: 30px;
    }



.home-text {
  flex: 1;
}

.home-text h1 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 20px;
}

.home-text p {
  font-size: 1.1rem;
  color: #e8ecef;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: #6366f1;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #4f46e5;
}

.logo-video {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .home-content {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 10px;
      max-width: 1000px;
      width: 100%;
      gap: 20px;
    animation: gradient 15s ease infinite;
    }

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }}
  .logo-video {
    display:none;
  }
}
