 
       .dashboard-counts {
            display: flex;
			justify-content: center;
			align-items: center;
			gap: 40px;
			margin: 100px auto; /* adds space from top */
			padding: 30px 20px;
			max-width: 900px;

			border-radius: 12px;

			flex-wrap: wrap;

        }

        .count-box {
            
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.2s ease;
        }

        .count-box:hover {
            transform: translateY(-5px);
        }

        .count-box h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }

        .count-box p {
            font-size: 36px;
            font-weight: bold;
            color: #007bff;
        }
		 .super-font {
            font-family: 'Roboto', sans-serif;
            font-size: 50px; /* You can adjust the size as per your design */
            font-weight: 900;
            color: #FFF; /* Choose your desired color */
            text-transform: uppercase; /* Makes all letters uppercase */
            letter-spacing: 4px; /* Spacing between letters */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow effect */
            background: linear-gradient(45deg, #ff6f61, #220025); /* Gradient background */
            -webkit-background-clip: text;
            background-clip: text;
        }
        /* Global Styles for Small Screens */
@media (max-width: 768px) {
	.whychoose
	{
		font-size:22px !important;
	}
	header
	{
		position:absolute;
	}
	.navbar .links {
		position:absolute;
	}
	.navbar .logo img {
		display:block;
		width:50px !important;
	}
	.super-font
	{
		display:none;
	}
    .dashboard-counts {
        height: 700px;
        flex-direction: column;
        gap: 30px;
    }

    .count-box {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .super-font {
        font-size: 30px; /* Reduce font size for smaller screens */
    }

    /* Adjust Features Section Layout */
    .features-container {
        flex-direction: column;
    }

    .count-box h3 {
        font-size: 18px;
    }

    /* Adjust Testimonial Cards */
    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-box {
        width: 90%;
        margin: 20px auto;
    }

    /* Adjust Form Popup */
    .form-popup .form-box {
        width: 90%;
    }

    /* Adjust Navbar */
    .navbar .links {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .navbar .hamburger-btn {
        display: block;
        margin-bottom: 10px;
    }

    .navbar .logo img {
        width: 70px;
    }

    .navbar .logo .super-font {
        font-size: 22px;
    }
}
		section {
    width: 100%;
    padding: 40px 0; /* You can control top-bottom spacing here */
}
		.whychoose
		{
			font-weight: 900; font-size: 36px; margin-bottom: 50px; color: #333; text-transform: uppercase; letter-spacing: 2px;
		}
		.timetable-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.timetable-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.timetable-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.timetable-section h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
}
.timetable-section ul {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  padding-left: 20px;
}
/* ===== Navbar Icons + Scroll Effect ===== */
.navbar {
    color: white;
    position: fixed;
    top: 0;
    left:70px;
    width: 1400px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.63);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.navbar .links li {
    display: inline-block;
    margin-left: 25px;
}

.navbar .links li a {
    color: blue;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.navbar .links li a:hover {
    color: #ff6f61;
}

/* Navbar icons style */
.material-symbols-rounded {
    vertical-align: middle;
    font-size: 20px;
}

/* Fix for mobile */

/* ===== Why Choose Section ===== */
.why-choose {
  padding: 80px 20px;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
}

.whychoose {
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.whychoose span {
  color: #ff6f61;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-box {
  flex: 1 1 240px;
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #ff6f61, #d46fdd);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Icon Style */
.icon {
  font-size: 50px;
  background: linear-gradient(45deg, #ff6f61, #d46fdd);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  transition: transform 0.5s ease, color 0.4s;
}

.feature-box:hover .icon {
  transform: rotate(10deg) scale(1.2);
}

/* Headings & Text */
.feature-box h4 {
  margin: 20px 0 10px;
  font-weight: 800;
  font-size: 20px;
  color: #333;
}

.feature-box p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .whychoose {
    font-size: 26px;
  }
  .feature-box {
    width: 90%;
    margin: auto;
  }
}
/* ===== Best Timetable Section ===== */
.best-timetable {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.best-timetable h2 {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-timetable h2 span {
  color: #ff6f61;
}

.best-timetable .intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Benefits Box */
.benefits {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.benefits:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefits h3 {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits h3 i {
  font-size: 28px;
  color: #ff6f61;
}

/* Benefits List */
.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits ul li {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.benefits ul li i {
  color: #ff6f61;
  font-size: 20px;
  transition: transform 0.4s, color 0.3s;
}

/* Hover Effects */
.benefits ul li:hover i {
  transform: rotate(20deg) scale(1.3);
  color: #d46fdd;
}

.benefits ul li:hover {
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .best-timetable h2 {
    font-size: 26px;
  }

  .benefits {
    padding: 25px;
  }

  .benefits ul li {
    font-size: 16px;
  }
}
/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #fff, #f7f8fc);
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title span {
  color: #ff6f61;
  position: relative;
  display: inline-block;
  animation: gradientText 3s infinite alternate;
  background: linear-gradient(90deg, #ff6f61, #ff9068, #d46fdd);
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  font-size: 30px;
  color: #ff6f61;
  margin-bottom: 15px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.testimonial-message {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-user h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.no-data {
  font-size: 18px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }
}
body {
      background: #f4f8fb;
      font-family: 'Poppins', sans-serif;
    }

    .card {
      border: none;
      border-radius: 18px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .card-header {
      background: linear-gradient(135deg, #023b42, #033e4b) !important;
      color: white;
      border-bottom: none;
    }

    .form-label {
      font-weight: 600;
      color: #444;
    }

    .form-control, .form-select {
      border-radius: 10px;
      border: 1px solid #ccc;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      border-color: #00bcd4;
      box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
    }


    .select2-container--default .select2-selection--single {
      height: 38px !important;
      padding: 6px 12px;
      border-radius: 10px;
      border: 1px solid #ced4da;
    }

    .select2-selection__rendered {
      line-height: 24px;
    }

    .select2-selection__arrow {
      height: 36px !important;
    }
    
    .card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .card-header {
      background: linear-gradient(135deg, #02393f, #03444d);
      color: white;
      text-align: center;
      font-weight: 600;
      font-size: 1.3rem;
      padding: 15px 0;
    }

    .form-label {
      font-weight: 500;
      color: #333;
    }

    .form-control, .form-select {
      border-radius: 8px;
      border: 1px solid #ccc;
      transition: 0.3s;
      font-size: 0.95rem;
      padding: 6px 10px;
    }

    .form-control:focus, .form-select:focus {
      border-color: #101d8b;
      box-shadow: 0 0 0 0.15rem rgba(0, 188, 212, 0.25);
    }

    .btn-custom {
      background: linear-gradient(135deg, #00262b, #140b8d);
      color: white;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background: linear-gradient(135deg, #011d22, #001e22);
      transform: translateY(-2px);
    }

    .select2-container--default .select2-selection--single {
      height: 38px !important;
      border-radius: 8px;
      border: 1px solid #ced4da;
    }

    .select2-selection__rendered {
      line-height: 36px;
      font-size: 0.95rem;
    }

    .select2-selection__arrow {
      height: 36px !important;
    }

    textarea {
      resize: none;
    }

    @media (min-width: 992px) {
      .card {
        max-width: 650px;
        margin: auto;
      }
    }
     body{
      background-image: url(images/hero-bg.jpg) ;
    }
.contact-card { 
  height: 100vh;
  max-width: 600px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card .card-header {
  background: linear-gradient(135deg, #009688, #00bcd4);
  color: #fff;
  text-align: center;
}

.form-control-sm {
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 8px;
}

.btn-sm {
  font-size: 15px;
  border-radius: 8px;
}

.message-success,
.message-error {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.message-success { color: #2e7d32; }
.message-error { color: #c62828; }

@media (max-width: 576px) {
  .contact-card {
    margin: 0 10px;
  }
}
