* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #77ccd0;
}

/* Header */
.header-box {
  width: 1000px;
  height: 300px;
  background-color: #add166;
  display: flex;
  justify-content: flex-start;
  margin: 30px auto;
}

.left-img img {
  height: 100%;
  width: auto;
}

.right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
}

.college-info h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.college-info p {
  font-size: 17px;
  color: #101010;
  line-height: 1.5;
}

/* Menu */
.nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-menu a:hover {
  color: #000;
}

/* About Page Marquee with Individual Image Scrolls */

.about-marquee-table {
  width: 1000px;
  height: 650px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-marquee-bg {
  background-image: url("rec -logo.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 10px;
}

.image-table {
  position: relative;
  z-index: 2;
  border-spacing: 20px;
  margin: auto;
}

.image-table td {
  width: 300px;
  height: 200px;
}

.image-table td marquee {
  display: block;
}

.image-table td img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.about-marquee-text {
  position: relative;
  z-index: 2;
  font-size: 22px;
  color: rgb(43, 4, 4);
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  text-shadow: 1px 1px 2px #000;
}

/* Service Table Styling */

.service-table-container {
  width: 1000px;
  margin: 30px auto;
  text-align: center;
}

.member-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(95, 8, 8, 0.2);
}

.member-table th,
.member-table td {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
}

/* Column Colors */
.col-serial,
.member-table td:nth-child(1) {
  background-color: #97b1cc;
}

.col-name,
.member-table td:nth-child(2) {
  background-color: #619667;
}

.col-age,
.member-table td:nth-child(3) {
  background-color: #d7ac89;
}

.col-gender,
.member-table td:nth-child(4) {
  background-color: #e1afe7;
}

.col-marks,
.member-table td:nth-child(5) {
  background-color: #797763;
}

/* Hover on name */
.hover-name:hover {
  background-color: #abd6ab;
  color: rgb(168, 132, 132);
  cursor: pointer;
  transition: 0.3s;
}
.col-serial {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: medium;
}
.col-age {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: medium;
}
.col-gender {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: medium;
}
.col-name {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: medium;
}
.col-marks {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: medium;
}

/* 🔥 Dropdown Menu Navbar */
.main-navbar {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-list li {
  position: relative;
}

.nav-list > li {
  margin: 0 10px;
}

.nav-list a {
  display: block;
  padding: 9px 12px;
  color: rgb(40, 37, 37);
  text-decoration: none;
  font-weight: bold;
}

.nav-list a:hover {
  background-color: #f5fcfd;
  transition: 0.3s;
  border-radius: 4px;
}

/* Dropdown submenu */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #e2e5e7;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(252, 250, 250, 0.2);
  z-index: 999;
}

.dropdown li a {
  padding: 10px 16px;
  color: #222;
  font-weight: normal;
}

.dropdown li a:hover {
  background-color: #948b8b;
}

/* Show dropdown on hover */
.nav-list li:hover > .dropdown {
  display: block;
}

/* 🎓 Pricing Section */
.pricing-section {
  width: 1000px;
  margin: 30px auto;
  text-align: center;
}

.pricing-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #0f0e0e;
}

.pricing-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h3 {
  color: #146c94;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  text-align: left;
}

.card ul li {
  margin: 8px 0;
  font-size: 14px;
}

.card button {
  background-color: #1678ef;
  color: rgb(5, 3, 3);
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
}

.card button:hover {
  background-color: #040708;
}
/* 📞 Contact Section */
.contact-section {
  width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  color: #076e9e;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map iframe {
  width: 100%;
  border-radius: 8px;
}

.contact-info {
  font-size: 16px;
  line-height: 1.6;
  color: #0e0d0d;
}

.contact-info i {
  color: #ec1a80;
  margin-right: 10px;
}

.contact-info a {
  color: #2d88b2;
  text-decoration: solid;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  width: 1000px;
  margin: 20px auto;
  text-align: center;
  font-size: 14px;
  color: #0b0b0b;
  border-top: 1px solid #ccc;
  padding: 10px 0;
}
