.school-card {
  height: 380px;
  /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
}

.additional-details {
  /* min-height: 60px; 
    display: flex;
    justify-content: center;
    align-items: center; */
  gap: 10px;
}


.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.shortlist-btn,
.read-more-btn {
  /* padding: 8px 15px; */
  text-align: center;
  width: 120px;
  background-color: #3f74ac;
  color: #fff;
  /* border: 2px solid #007bff;  */
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}


.shortlist-btn:hover,
.read-more-btn:hover {
  background-color: #0056b3;

  color: #fff;
}

.school-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
}


/* add */

.header-top-social a i {
  display: inline-block;
  transition: transform 0.5s ease;
}

.header-top-social a i:hover {
  transform: rotate(360deg);
}

.tab-section {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
  box-sizing: border-box;
}

.tab-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tabs-container {
  overflow-x: hidden;
  flex: 1;
  position: relative;
}

.tabs {
  gap: 30px;
  transition: transform 0.3s ease;
}

.tab-button {
  text-decoration: none;
  color: #052631;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding: 5px 10px;
  border: none;
  background-color: #eff3f3;
  border-radius: 100px;
  margin: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tab-button.active {
  color: #fff;
  font-weight: bold;
  background-color: #1d5babd9;
}

.column {
  padding: 20px;
  border: 1px solid #ccc;
  margin: 10px 0;
  border-radius: 4px;
}

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.header-section h3 {
  margin: 0;
  font-size: 16px;
}

.header-section a {
  text-decoration: none;
  color: #007bff;
  font-size: 16px;
  transition: color 0.3s;
}

.header-section a:hover {
  color: #0056b3;
}

.scroll-box {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 5px;
}

/* List Styling */
.scroll-box ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.scroll-box li {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #333;
}

.scroll-box li:last-child {
  border-bottom: none;
}

.scroll-box::-webkit-scrollbar {
  width: 6px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

/* Tab Content Styling */
.tab-content {
  display: none;
  padding: 20px;

  text-align: left;

  border-radius: 5px;
}

.tab-content.active {
  display: block;
}

.choose-area {
  padding: 30px 0;
}

/* School card styles */

/* Additional details section styles */
.additional-details {

  text-align: left;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.additional-details p {
  margin: 0;
  color: #666;
  font-size: 16px;
}




.feature-area {
  /* padding: 15px 0;
    margin-top: 25px; */
}

.feature-item {
  text-align: center;
  padding: 10px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgb(33 33 33 / 91%);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  height: 150px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 2px solid gray;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon img {
  width: 70px;
  height: 70px;
}

.feature-title {
  font-size: 16px;
  margin-top: 25px;
  color: #333;
}

@media (max-width: 768px) {
  .feature-area {
    padding: 10px 0;
  }

  .feature-item {
    padding: 8px;
    margin: 5px auto;
  }

  .feature-icon img {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 12px;
  }
}

.scroll-box::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.scroll-box::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.wrapper header {
  font-size: 20px;
  color: #19232b;
}

.wrapper .poll-area {
  margin: 10px 0 0px 0;
}

.poll-area label {
  display: block;
  margin-bottom: 10px;
  padding: 12px 15px;
  transition: all 0.2s ease;
}

.poll-area label:hover {
  border-color: #ddd;
}

label.selected {
  border-color: #6665ee !important;
}

label .row {
  display: flex;
  pointer-events: none;
  justify-content: space-between;
}

label .row .column {
  display: flex;
  align-items: center;
}

label .row .circle {
  height: 19px;
  width: 19px;
  display: inline-block;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

label.selected .row .circle {
  border-color: #6665ee;
}

label .row .circle::after {
  content: "";
  height: 11px;
  width: 11px;
  background: #6665ee;
  border-radius: inherit;
  position: absolute;
  left: 2px;
  top: 2px;
  display: none;
}

.poll-area label:hover .row .circle::after {
  display: block;
  background: #e6e6e6;
}

label.selected .row .circle::after {
  display: block;
  background: #6665ee !important;
}

label .row span {
  font-size: 14px;
  font-weight: 500;
}

label .row .percent {
  display: none;
}

label .progress {
  height: 2px;
  width: 100%;
  position: relative;
  background: #f0f0f0;
  margin: 0px 0 0px 0;
  border-radius: 30px;
  display: none;
  pointer-events: none;
}

label .progress:after {
  position: absolute;
  content: "";
  height: 100%;
  background: #ccc;
  width: calc(1% * var(--w));
  border-radius: inherit;
  transition: all 0.2s ease;
}

label.selected .progress::after {
  background: #6665ee;
}

label.selectall .progress,
label.selectall .row .percent {
  display: block;
}

.contact-section {
  text-align: center;
  background: linear-gradient(to bottom, #1760bf, #e6f0ff);
  color: white;
  padding: 40px 20px;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #f0f8ff;
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.meeting-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.meeting-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.or {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.call-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00796b;
  font-size: 18px;
}

.phone-number {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 20px;
  }

  .contact-section p {
    font-size: 14px;
  }

  .meeting-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .phone-number {
    font-size: 14px;
  }
}

.short-btn {
  @media (max-width:768px) {
    margin-right: 14px;
  }
}

.progress-container {
  margin-top: 20px;
  height: 1px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #4CAF50;
  width: 0%;
  transition: width 0.5s ease;
}

/* location */
.location-icon {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-icon:hover {
  color: #ff5733;
}

.location-link {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-link:hover {
  color: #1377e1;
}

/* poll design css ashwini */
.login-area {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff; */
  box-shadow: 0px 4px 10px rgb(0 0 0 / 95%);
  background-color: #24408114;
  margin-top: 2px;
}

@media (max-width:768px) {
  .login-area {
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 70%);
    background-color: #fff;
    margin-top: 2px;
    margin-bottom: 33px;
  }
}


#student-form {
  max-width: 500px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}

#students-info {
  margin-bottom: 20px;
}

.student {
  margin-bottom: 15px;
}

label {
  display: block;
  /* font-weight: bold; */
  margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  margin-top: -5px;
}

input::placeholder {
  color: #888;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.content-list li i {
  color: #28a745;
  margin-right: 8px;
  font-size: 18px;
}

/* School Management Section */
.school-management {
  position: relative;
  background: linear-gradient(350deg, #6bb5ff, #7f75c0);
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.5s ease-in-out;
  animation: slideInRight 1.5s ease-in-out;
  margin: auto;
}

.school-management:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.animated-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  animation: pulseText 2s infinite alternate;
}

/* Text Pulse Animation */
@keyframes pulseText {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    align-items: center;
  }

  .category-dropdown,
  .location-search {
    width: 100%;
    max-width: 100%;
  }

  .location-search .input-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .location-search input {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {

  .category-dropdown label,
  .location-search label {
    font-size: 16px;
  }

  .category-dropdown select,
  .location-search input {
    padding: 17px 9px;
    font-size: 14px;
    width: 345px;
  }

  .search-button {
    font-size: 14px;
  }
}



.school-category {
  padding: 5px;
  width: 602px;
  padding: 11px 0 0 12px;
  height: 62px;
}

.school-day-category {
  margin: -1px -10px 0px -192px;
  height: 62px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .school-category {
    width: 100%;
    padding: 10px;
    height: auto;
  }

  .school-day-category {
    margin: 0;
    height: auto;
    padding: 10px;
  }
}

@media (max-width: 425px) {
  .school-category {
    padding: 8px;
    font-size: 14px;
  }

  .school-day-category {
    padding: 8px;
    font-size: 14px;
  }
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}

.tab-button {
  background: linear-gradient(168deg, #39b9b3, #421d70);
  color: #fff;
  border: none;

  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tab-button:hover {
  background: linear-gradient(135deg, #f39597, #8f112c);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tab-button.active {
  background: #ff9800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.tab-button:focus {
  outline: 3px solid #ffd700;
}

@media (max-width: 768px) {
  .tab-button {
    width: 90%;
    text-align: center;
  }
}


.scroll-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.scroll-controls button {
  pointer-events: all;
  background-color: #4d6d857d;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.scroll-left {
  margin-left: 10px;
}

.scroll-right {
  margin-right: 10px;
}

.read-more:hover {
  background-color: #0056b326;
  transform: scale(1.05);
}

.read-more:active {
  transform: scale(1);
}

.tabs-container .tab-panel {
  display: none;
}

.tabs-container .tab-panel.active {
  display: block;
}

.latest-news {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tab {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.tab.active {
  background-color: #0e549f;
  color: #fff;
  border-color: #0e549f;
}

.card-top h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #00224D;
  line-height: 1.5;
}

.card-top p {
  font-size: 15px;
  margin-bottom: 10px;
}

.cards-container {
  display: flex;
  gap: 15px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.cards-container::-webkit-scrollbar {
  height: 8px;
}

.cards-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.card-top {
  flex: 0 0 273px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #afcfff;
  border-radius: 1.5em;
  background: linear-gradient(to bottom right, #C4E1F6, #f0f8fe4a);
  color: #2158a6;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  backdrop-filter: blur(12px);
}

.read-more {
  height: fit-content;
  width: fit-content;
  padding: 0.25em 1em;
  border: 2px solid white;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  overflow: hidden;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.2s ease;
  background: #0d4b9261;
  color: white;
}

.blog-area {
  padding: 40px 0;
  /* background-color: #edf4ff42; */
}

.site-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #423f8b;
  letter-spacing: 1px;

}

.gradient-text {
  background: #423f8b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1rem;
  color: #7f8c8d;
  margin-top: 10px;
  max-width: 600px;
  margin: 10px auto 0 auto;
  line-height: 1.6;
  text-align: center;
}

.blog-item {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.blog-item-img:hover img {
  transform: scale(1.1);
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
}

.blog-item-img:hover .blog-overlay {
  opacity: 1;
}

.blog-overlay h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-overlay p {
  font-size: 0.9rem;
  margin: 0;
}

.blog-item-info {
  padding: 20px;
}

.blog-item-info p {
  color: #606060;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .site-title {
    font-size: 2rem;
  }

  .blog-item-info p {
    font-size: 0.95rem;
  }
}

.course-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f7fc;
  padding: 20px;
  border: 1px solid #ffffff;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0px 100px 0px;
}

.course-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.course-banner-image img {
  width: 166px;
  height: 113px;
}

.course-banner-text {
  text-align: center;
  flex: 1;
  padding-right: 160px;
}

.course-banner-text h2 {
  margin: 0;
  font-size: 29px;
  color: #5287ad;
}

.course-banner-text .highlight {
  font-weight: bold;
  color: #f9a825;
  display: block;
  margin-top: 5px;
}

.course-banner-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.course-banner-button .btn-try-now {
  display: inline-block;
  padding: 10px 20px;
  background-color: #194a6cfa;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.course-banner-button .btn-try-now:hover {
  background-color: #817a6e;
}

@media (max-width: 768px) {
  .course-banner-content {
    flex-direction: column;
    align-items: center;
  }

  .course-banner-text {
    margin: 10px 0;
  }

  .course-banner-button {
    position: relative;
    transform: none;
    right: 0;
    top: 0;
    margin-top: 10px;
  }
}