/*
Theme Name: Admission India
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.4
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* Variables */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* === Color Variables === */
  --primary-bg-color: #FF9D01;
  /* Background color for Primary buttons or sections */
  --light-bg-color: #FAF0E6;
  /*    used in card and hover and layers  */
  --heading-color: #1a1a1a;
  /* Headings and strong text */
  --primary-color: #082E6E;
  /* primary color */
  --secondary-color: #FF9E0E;
  /*  secondary color  */
  --muted-text-color: #6B6B6B;
  /* Muted text color */
  --small-text-color: #707172;
  /* Small text or captions */
  --btn-color: #323230;
  /* Button text color */
  --secondary-border-color: #323230;
  /* Border color for secondary elements */
  --secondary-bg-color: #323230;
  /* Background color for secondary buttons or sections */
  --placeholder-grey-color: #888888;
  --tab-color: #2A2A2A;
  --landing-secondary-color: #489AE9;
  /* landing page secondary color for text and buttons */
  --landing-background-color: #ECF3FF;
  /* landing page background color for text and buttons */
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

p {
  color: var(--heading-color);
  font-size: 1rem;
}

.text-light p {
  color: #FFF !important;
}

/* === Headings === */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

/* === Links === */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--secondary-color);
}

a.text-light:hover {
  text-decoration: underline;
}

/* For links styled like buttons or primary actions */
a.primary-link {
  color: var(--btn-color) !important;
  text-decoration: underline;
  font-weight: 500;
}

.fa-file-arrow-down,
.fa-scale-balanced,
.fa-eye,
.fa-circle-question {
  color: var(--primary-color);
}

/* === Text Styles === */
.text-muted {
  color: var(--muted-text-color) !important;
}

.cursor-pointer {
  cursor: pointer;
}

small {
  color: var(--small-text-color) !important;
}

.sm-header {
  text-transform: uppercase;
  font-size: 11px;
}

.white-nowrap {
  white-space: nowrap;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-80 {
  margin-top: 80px;
}

/* === Breadcrumbs === */
.breadcrumb {
  margin-bottom: 0px;
}

.breadcrumb-item a {
  font-weight: 300;
  color: var(--heading-color) !important;
  font-size: .875rem;
}

.breadcrumb-item.active {
  color: var(--primary-color) !important;
}

/* === Buttons === */
.btn-light {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* smooth hover transition */
}

.btn-light i {
  color: #FF9D01;
  font-size: 22px;
  transition: color 0.3s ease;
  /* smooth icon color change */
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  /* subtle glow */
  border-color: #FF9D01;
  /* highlight border */
  transform: translateY(-2px);
  /* lift effect */
  box-shadow: 0 4px 10px rgba(255, 157, 1, 0.3);
  /* soft glow */
}

.btn-light:hover i {
  color: white;
  /* icon turns white on hover */
}

.btn-primary {
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  padding: 10px 22px;
  color: var(--btn-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary {
  background-color: var(--secondary-bg-color) !important;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

/* Smooth hover effect - opacity only */
.btn-secondary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Pressed state - slightly more opacity + reset lift */
.btn-secondary:active {
  opacity: 0.75;
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.btn-outline-secondary {
  border: 1px solid var(--secondary-border-color);
  border-radius: 30px;
  padding: 8px 18px;
  color: var(--btn-color);
  font-weight: 600;
  font-size: 1 rem;
  line-height: 120%;
}

/* Hover Effect */
.btn-outline-secondary:hover,
.btn-outline-secondary.active {
  background-color: var(--secondary-bg-color) !important;
  color: #fff;
  /* make text visible on dark bg */
  transform: translateY(-2px);
  /* subtle lift */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  /* soft shadow */
}

/* Card css  */
.card {
  transition: all 0.3s ease;
  /* smooth transition for hover */
  border: 1px solid #eee;
}

/* Hover effect */
.card:hover {
  Xtransform: translateY(-2px);
  /* gentler lift */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.10);
  /* softer, tighter shadow */
}

.card-header {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eee;
}

.card-footer {
  border-top: 1px solid #eee;
}

hr {
  border: 0px;
  border-bottom: 1px solid #eee;
  opacity: 1 !important;
}


/* Parsley Errors */
.parsley-errors-list {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none;
  font-size: 12px;
}

.parsley-errors-list .parsley-required {
  font-size: 12px;
  color: #FF0000;
  list-style: none;
}

/* Own Carousal */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  padding: 0px 17px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
  left: -40px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -40px;
}

.owl-theme .owl-nav [class*=owl-] {
  background-color: #DBFFDD !important;
  border-radius: 50%;
  display: flex !important;
  font-size: 30px !important;
  box-shadow: 0px 0px 16px 0px #0000000F !important;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
  /* <-- Smooth transition added */
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;

}

.owl-stage-outer {
  padding: 5px 0px;
}

.badge-outline {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #707172;
  border-radius: 4px;
  padding: 4px 7px;
  border: 0.5px solid #748193;
}

.badge-outline-light {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #ffffff;
  border-radius: 4px;
  padding: 4px 7px;
  border: 0.5px solid #ffffff;
}


.badge-rank {
  background: linear-gradient(181.36deg, rgba(5, 59, 44, 0.25) -113.41%, rgba(255, 255, 255, 0.25) 98.84%);
  border-radius: 6px;
  padding: 2px 8px;
  color: white;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

i.active {
  color: black !important;
}

.review-user-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;

}

/* Header Navbar CSS  */
.nav-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.dropdown-item {
  font-size: 14px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.top-nav .contact-info {
  color: var(--heading-color);
}

.top-nav .search-form {
  padding-top: 15px;
}

/*
* Custom Float Field CSS
*/
.float-field {
  position: relative;
  margin-bottom: 20px;
}

.float-field input, .float-field select {
  width: 100%;
  padding: 10px 12px 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;  
}

/* Label */
.float-field label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #777;
  font-size: 16px;
  transition: 0.2s ease all;
  pointer-events: none;
  background: #fff;
  padding: 0 4px;
}

/* Default label up */
.float-field input + label, .float-field input + ul + label, .float-field select + label, .float-field select + ul + label {
  top: -8px;
  font-size: 12px;
  color: #666;
}

/* On focus OR when text present */
.float-field input:focus + label, .float-field.active label, 
.float-field input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #666;
}

.float-field input:focus, .float-field select:focus {
  border-color: #0d6efd;
}

/* Homepage CSS  */
.section-home-banner {  
  background-size: cover;
  height: 925px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.floating-notification {
  position: fixed;
  bottom: 50px;
  right: 60px;
  z-index: 99;
  cursor: pointer;
}

.left-side h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: var(--primary-color);
}

.left-side h1 {
  font-weight: 500;
  font-size: 58px;
  line-height: 130%;
  color: var(--primary-color);
}

.left-side h1 span {
  color: var(--secondary-color);
}

.home-section-card {
  padding: 1rem;
  border-radius: var(--bs-border-radius);
}

.home-section-card:hover {
  Xbackground-color: var(--secondary-color);
}

.section-study-goal {
  background-color: #FAFAFA;
  padding-top: 135px;
  padding-bottom: 60px;
  border-bottom: 1px solid #EDEDED
}

.study-goal-card {
  background-color: var(--light-bg-color);
  border-radius: 14px;
  padding: 30px;
  position: relative;
  overflow: visible;
  /* allow the white box to extend */
}

.section-top-colleges {
  background-color: #FAFAFA;
  padding-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EDEDED;
}

.section-stream-details {
  padding-top: 50px;
  padding-bottom: 30px;
}

.section-ad-banners {
  margin-top: 60px;
}

.section-info-blocks,
.section-top-place {
  padding-top: 50px;
  padding-bottom: 30px;
}

.section-news-events {
  background-color: var(--light-bg-color);
  position: relative;
  padding: 50px 0;
}

.section-help-footer {
  background-color: var(--light-bg-color);
  padding: 70px 0;
}

.section-subscribe-newsletter {
  position: relative;
}

.section-footer-navigation {
  background-color: #065942;
  padding: 40px 0;
}

.section-footer-navigation a,
.section-lower-footer a,
.section-lower-footer small {
  font-size: 13px;
}

.section-footer-navigation a:hover,
footer a:hover {
  text-decoration: underline !important;
  color: var(--primary-bg-color) !important;
}

.section-footer-navigation i,
.section-footer-navigation a.menu-item,
footer a {
  color: #FFF;
}

.section-footer-navigation i:last-of-type {
  display: none;
}

.section-footer-about {
  background-color: #004834;
  padding: 50px 0px;
}

.section-lower-footer {
  background-color: #002B1F;
  padding: 16px 0px;
}

.section-register-login {
  padding-top: 20px;
  padding-bottom: 40px;
}

.section-content-pages, .section-payment-status{
  position: relative;
  top: -50px;
}

.page-content {
  padding: 15px 0;
}

.page-content p:last-of-type {
  margin-bottom: 1rem !important;
}

footer hr {
  border-color: rgba(255, 255, 255, .1);
}

.social-icons a img {
  transition: all 0.3s ease;
  /* smooth transition for hover */
}

.social-icons a:hover img {
  transform: scale(1.2) translateY(-3px);
  filter: brightness(1.3) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* Blog CSS */
.section-blogs-list {
  padding-top: 20px;
  padding-bottom: 50px;
  position: relative;
  top: -90px;
}

.blog-image .wp-post-image {
  object-fit: cover;
  width: 100%;
  border-top-left-radius: var(--bs-card-border-radius);
  border-top-right-radius: var(--bs-card-border-radius);
}

.section-blogs-detail {
  position: relative;
  top: -60px;
}

.single-blog-content {
  padding: 40px;
}


/* Arrow box */
.arrow-imge-container {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FAFAFA;
  border-radius: 0 14px 0 40px;
  /* smooth outer curve */
  padding: 11px 8px 15px 11px;

}


/* Circle background behind arrow icon */
.icon-container {
  padding: 10px;
  border-radius: 50%;
  background-color: var(--light-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gif-icons {
  width: 76px;
  height: 76px;
  position: relative;
}

.gif-icons img {
  position: relative;
  z-index: 2;
  /* ensure image stays above */
}

.gif-icons::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: 1;
  /* places it behind the image */
}

/* Nav Tabs CSS  */
.nav-tabs {
  border-bottom: none;
}

.section-hp .tab-content {
  padding: 2rem 0;
}

#tabs-top-streams .nav-item {
  margin-right: 10px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-tabs .nav-item .nav-link:hover {
  background-color: var(--landing-background-color) !important;
  border: none !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

.join_now_card {
  position: relative;
  height: 357px;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  padding-top: 82px;
  padding-left: 46px;

}

.join_now_card_right {
  position: relative;
  height: 357px;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  padding-top: 82px;
  padding-left: 46px;
  overflow: visible;
}

.description-cont {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;

}

.description-cont h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 0px;


}

.join-now-btn {
  background-color: #FF9D01;
  /* main orange color */
  color: #000;
  /* black text */
  font-weight: 600;
  border: none;
  border-radius: 50px;
  /* pill shape */
  padding-left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.join-now-btn:hover {
  transform: translateY(-2px);
  background-color: #FFB84D;
}

.join-now-btn .arrow-circle {
  background-color: #FFB84D;
  /* lighter orange for arrow circle */
  color: #000;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.join_now_card_right .join-now-btn {
  background-color: #5B46A7;
  /* main orange color */
  color: #fff;
  /* black text */
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  border: none;
  border-radius: 50px;
  /* pill shape */
  padding-left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.join_now_card_right .join-now-btn .arrow-circle {
  background-color: #947BEB;
  /* lighter orange for arrow circle */
  color: #000;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.join_now_card_right .join-now-btn:hover {
  transform: translateY(-2px);
  background-color: #947BEB;
}

.join-girl-image {
  position: absolute;
  right: 4px;
  top: 0px;
}

.join-boy-image {
  position: absolute;
  right: 4px;
  top: -82px;
}



.top_exams_tags {
  margin-top: 50px;
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 40px 78px;
}

.top_exams_tags h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

.top_exams_tags a {
  backdrop-filter: blur(84px);
  background: #FFFFFF1A;
  border-radius: 28px;
  padding: 8px 8px 8px 15px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.top_exams_tags a i {
  backdrop-filter: blur(64px);
  background: #FFFFFF1F;
  border-radius: 50%;
  padding: 3px 5px;
  color: #ffffff;
  font-size: 14px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}

.top_exams_tags a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.news_article_card {
  display: flex;
  gap: 12px;
  align-items: start;
  cursor: pointer;

}

.news_article_card .collge_image {
  width: 105px;
  height: 85px;
  position: relative;

}

.news_article_card .collge_image img {
  height: 100%;
  border-radius: 20px;
  object-fit: cover;

}

.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.news-description {
  white-space: nowrap;
  /* Prevent wrapping to next line */
  overflow: hidden;
  /* Hide overflow text */
  text-overflow: ellipsis;
  /* Add "..." at the end */
  display: inline-block;
  /* Required for text-overflow to work properly */
  vertical-align: middle;
  /* Optional, for alignment */
}


.admissions-section {
  padding: 80px 0px;
}

.subscribe-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px 58px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: center;
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1324px;
}

input.form-control,
select.form-control {
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  outline: none !important;
  color: var(--muted-text-color);
}


input::placeholder {
  color: var(--muted-text-color);
}


/* BEGIN: College List CSS  */

.header-banner {
  background-color: var(--light-bg-color);
  padding: 25px 0px;
  height: 190px;
}

.header-banner .section-college-listing {
  position: relative;
  top: -80px;
  padding-bottom: 100px;
}

.college-info {
  border-bottom: 1px solid #EEE;
  padding-bottom: 10px;
}

.uparrow-icon {
  color: var(--primary-color);
  font-size: 50px
}

.photo-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #2A2A2A !important;
  border-radius: 30px !important;
  padding: 8px 10px !important;
}

.college-list-image {
  width: 100%;
  max-width: 150px;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.college-rank {
  background: linear-gradient(181.36deg, rgba(5, 59, 44, 0.14) -113.41%, rgba(255, 255, 255, 0.14) 98.84%);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
}

.college-rank small {
  font-size: 10px !important;
  text-align: center;
  white-space: pre;
}

.college-address address {
  color: var(--small-text-color) !important;
  margin-bottom: 0;
  padding-top: 5px;
}

.college-address address {
  font-size: 14px !important;
}

.college-vitals-2 span {
  font-size: 13px !important;
}

.college-vitals-3 h6 {
  font-size: .875rem;
}

.college-logo {
  width: 50px !important;
  height: 50px;
  object-fit: cover;
}

.icon-img {
  object-fit: cover;
}

.vertical-grey-line {
  background-color: #EEE;
  height: 30px;
  width: 1px;
}

#college-list .card-footer a {
  font-size: .875rem;
  font-weight: 500;
}

/* END: College List CSS  */

/* Accordian */
.accordion-button:not(.collapsed) {
  background-color: var(--bs-accordion-btn-bg) !important;
}

.accordion-button {
  font-weight: 600 !important;
  color: var(--heading-color) !important;
}

/*

.sort-select{
  border: 0.5px solid #ACACAC;
  padding: 12px 16px;
  border-radius: 30px;
  width: 100%;
  max-width: 200px;
  background-color: #ffffff;
  font-size: 15px;
  color: var(--heading-color);
  outline: none;
  appearance: none !important;
}

.checkbox-container{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-check-input[type=checkbox]{
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.form-check-label{
  color: var(--heading-color) !important ; 
  font-size: 15px !important;

}
.form-check-input[type=checkbox]:checked{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  outline: 0;
}

.form-check-input:focus {
  border-color: var(--secondary-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(255, 157, 1, 0.25);
}
*/

.mba-matches-card {
  background-color: #EAEAEA !important;
}

.card-bg-aqua,
.card-bg-aqua .card-header {
  background-color: #E8F6F3 !important;
}

.admission-chances-card {
  background-color: var(--light-bg-color) !important;
}

.planjounry-card {
  background-color: #FAE6E6 !important;
}

.light-green-card {
  background-color: #99FFB430 !important;
}

.light-purple-card {
  background-color: #A2AEFF42 !important;
}

.light-yellow-card {
  background-color: #FFF9D9 !important;
}

.light-grey-color {
  background-color: #F2EDE9 !important;
}

.light-blue-card {
  background-color: #F6FBFF !important;

}

/* College detail css start  */

.card hr.divider:last-child {
  display: none;
}

.card-body p:last-child,
.card-body p:last-of-type {
  margin-bottom: 0;
}

.section-college-detail {
  position: relative;
  top: -150px;
}

.section-college-detail p,
table td {
  color: var(--muted-text-color) !important;
  font-size: 1rem !important;
}

.section-college-detail ul li {
  Xcolor: var(--muted-text-color) !important;
  Xpadding: 5px 0px;
}

.college-header {
  height: 320px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.college-child-nav a.active {
  color: var(--secondary-color) !important;
  text-decoration: underline;
  font-weight: 600;
}

/* Dark glass overlay */
.college-overlay {
  position: absolute;
  inset: 0;
  background: #00000080;
  z-index: 1;
}

.college-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.detail-list .list-group-item::before {
  content: "•";
  position: absolute;
  left: 0px;
  top: 17%;
  transform: translateY(-50%);
  font-size: 20px;
  /* slightly larger for visibility */
  color: var(--muted-text-color);
  line-height: 1;
}

.step-list .list-group-item::before {
  content: "•";
  position: absolute;
  left: 0px;
  top: 30%;
  transform: translateY(-50%);
  font-size: 20px;
  /* slightly larger for visibility */
  color: var(--muted-text-color);
  line-height: 1;
}




/* 🔹 One-line ellipsis for heading */
.text-truncate-heading {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 🔹 Two-line ellipsis for description */
.text-truncate-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* show 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.apply_now_card {
  position: relative;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  padding: 16px;

}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* 👈 limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-progress-section {
  background: #EFFFFA;
  height: 287px;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 140px;


}

.progress {
  background-color: #FBBC0538 !important;
}



/* =================== Compare Page =================== */

.compare_section {
  padding-bottom: 100px;
}

.add-collge-card .icon-container {
  background-color: #ffffff;
  padding: 10px 15px;
}

.compare-table {
  border-collapse: collapse;
  /* important */

}

.compare-table tbody tr th.main-th {
  background-color: #FF9D0124;
  font-size: 14px !important;
  color: var(--heading-color) !important;
  font-weight: 500 !important;
  text-align: center !important;

}

.compare-table tbody tr th {
  background-color: #FBE3BB24;
  text-align: left !important;
  font-size: 14px !important;
  color: var(--heading-color) !important;
  font-weight: 400 !important;

}

.compare-table tbody tr td {
  background-color: #FFF5E424;
  text-align: left !important;
  font-size: 14px !important;
  color: var(--small-text-color) !important;
  font-weight: 400 !important;

}

.verses-card {
  background-color: var(--primary-color) !important;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  font-size: 14px;
}

.spacer-row td {
  padding: 0;
  border: none !important;
  height: 15px;
  background: transparent;

}

.spacer-row td::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: transparent;
}





/* ==========================landing page Top College Css Start =================== */
.landing-page-icon-container {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 6px 10px;
  color: #ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

}

.header-mobile-number {
  color: var(--heading-color) !important;
  font-size: 20px;
  font-weight: 500;

}

.landing-page-home-section {
  background-color: var(--landing-background-color);
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

.landing-page-home-section h4 {
  border-left: 10px solid var(--landing-secondary-color);
  padding-left: 10px;
}

.package-value {
  color: var(--landing-secondary-color) !important;
  font-weight: 700;
  font-size: 24px;
}

.location-icon {
  color: var(--primary-color) !important;

}

.get-started-section {
  margin-top: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-started-card {
  background-image: url(images/startedcardbg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 358px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50px;
  width: 100%;
  max-width: 1324px;

}

.start-now-image {
  position: absolute;
  left: 60%;
  transform: translateX(-40%);
  bottom: 0px;

}

footer.landing-footer {
  padding: 10px 0px;
  text-align: center;
  background-color: var(--landing-background-color);

}

footer.landing-footer p {
  color: var(--primary-color) !important;
}

.btn-blue {
  background-color: var(--landing-secondary-color) !important;
  border: 1px solid var(--landing-secondary-color) !important;
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
  /* smooth animation */
}

/* Hover state */
.btn-blue:hover {
  background-color: #ffffff !important;
  color: var(--landing-secondary-color) !important;
  transform: translateY(-2px);
  /* subtle lift effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blue-link {
  color: var(--landing-secondary-color) !important;
  text-decoration: underline !important;

}

.bottom-right-background {
  background-color: var(--primary-color);
  height: 50px;
  width: 50%;
  position: absolute;
  right: 0px;
  bottom: 60px;
}

.about-section {
  background-color: var(--primary-color);
  padding-top: 100px;
  position: relative;
  top: -60px;
  padding-bottom: 40px;
}

.about-right-circle-image {
  position: absolute;
  right: 0px;
  top: -233px;
  z-index: 9;
}

.about-girl-image {
  position: absolute;
  right: 0px;
  top: -193px;
}

.collge-campues-image {
  height: 100%;
  min-height: 850px;
  object-fit: cover;
  z-index: 99;
  border-radius: 20px;
}

.clp-streams-section {
  padding: 80px 0px;
  position: relative;

}

.academic-section {
  padding-bottom: 80px;
  padding-top: 20px;
  position: relative;

}

.excellence-right-image {
  position: absolute;
  bottom: 15px;
  right: 0px;
}

.fees-structure-section {
  padding: 80px 0px;
  background-color: #FAFAFA;
  position: relative;

}

.right-side-circle-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}

.fees-menu {
  color: var(--heading-color) !important;
  padding: 10px;
  border-radius: 5px;
  font-weight: 700;


}

.fees-menu:hover,
.fees-menu.active {
  background-color: var(--landing-background-color);
}

.stream-card {
  background-color: #EBF5FF !important;
}

.stream-card .arrow-imge-container {
  background-color: #ffff;


}

.stream-card .arrow-imge-container .icon-container {
  background-color: #EBF5FF;
  padding: 10px 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--landing-secondary-color);


}

.stream-card .gif-icons {
  position: relative;
}

.stream-card .gif-icons::before {
  content: " ";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  background-color: var(--landing-secondary-color);
}

.clp-testimonial-section {
  background-color: #FAFAFA;
  position: relative;
}

.quotes-image {
  position: absolute;
  top: 50px;
  right: 50px;
}

.clp-testimonial-carousal-container {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.clp-testonomial-description {
  background-color: var(--primary-color);
  height: 555px;
  border-radius: 0px 20px 20px 0px;
  display: flex;
  padding-right: 70px;
  position: relative;
}

.left-side-circle-image {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.testnomial-card {
  border-radius: 20px !important;
}

.testnomial-card img {
  width: 60px !important;
  height: 60px;
  object-fit: cover;
}

.btn-outline-light.owl-prev,
.btn-outline-light.owl-next {
  background-color: #ffffff;
  color: var(--landing-secondary-color) !important;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  /* smooth transition */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1);
}

.btn-outline-light.owl-prev:hover,
.btn-outline-light.owl-next:hover {
  background-color: var(--landing-secondary-color) !important;
  color: #ffffff !important;
  transform: scale(1.1);
  /* slight zoom on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* shadow pop */
}

.clp-top-recruiter-section {
  background-size: cover;
  background-position: top;
  height: 490px;
  display: flex;
  justify-content: center;
  align-items: end;

}

.clp-top-recruiter-container {
  position: relative;
  bottom: -50px;
}

.clp-top-recruiter-carousal-container {
  position: absolute;
  top: 45%;
  width: 80%;
  left: 15%;

}

.clp-top-recruiter-carousal {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;

}

.clp-top-recruiter-description {
  background-color: var(--primary-color) !important;
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  height: 395px;
  padding: 39px;
}

.clp-gallery-section {
  position: relative;
  background-color: var(--landing-background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  gap: 50px;
  padding-bottom: 80px;
  padding-top: 50px;

}

.clp-download-brochure {
  position: absolute;
  top: -50px;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  padding: 16px;
  width: 100%;
  max-width: 700px;
}

.clp_gallerytabs {
  background-color: #E2EBF4 !important;
  border-radius: 40px;
  padding: 10px;
  width: 100% !important;
  max-width: 400px !important;

}

.clp_gallerytabs .nav-item .nav-link {
  background-color: transparent !important;
  border-radius: 20px !important;
  padding: 10px !important;
  border-bottom: none !important;
  color: #000 !important;
}

.clp_gallerytabs .nav-item .nav-link:hover {
  background-color: #fff !important;
  border-bottom: none !important;
  color: #000 !important;

}

.clp_gallerytabs .nav-item .nav-link.active {
  background-color: #fff !important;
  border-radius: 20px !important;
  padding: 10px !important;
  border-bottom: none !important;
  color: #000 !important;
}

.clp-gallery-carosel-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}

#clp_gallery_tab_content {
  display: block !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  transition: background 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #007bff;
  /* Bootstrap blue */
}

footer.college-landing-footer {
  padding: 10px 0px;
  text-align: center;
  background-color: var(--primary-color);

}

footer.college-landing-footer p {
  color: #ffffff !important;
}

.tab-fees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  padding: 16px;
  width: 100%;
}



/****************** scroll tab css THEME **************************/
.scroll_tab_inner {
  border-bottom: 1px solid #EDEDED !important;
  text-align: center;
}

.scroll_tabs_theme_light li {
  padding: 0px 0px !important;
}

.scroll_tabs_theme_light .scroll_tab_left_button::before {
  content: "‹";
}

.scroll_tabs_theme_light .scroll_tab_right_button::before {
  content: "›";
}

.scroll_tabs_theme_light .scroll_tab_right_button,
.scroll_tabs_theme_light .scroll_tab_left_button {
  width: 38px !important;
  height: 38px !important;
  justify-content: center;
  align-items: center;
  background-color: #DBFFDD !important;
  border-radius: 50%;
  font-size: 30px !important;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.06) !important;
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
  /* Disable text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 999;
  display: none;
}

@media screen and (max-width:767px) {

  .navbar .gap-4,
  .navbar .gap-3,
  .navbar .gap-2 {
    gap: 0 !important;
  }

  .start-now-image {
    left: 68%;
    width: 200px;
  }

  .get-started-section {
    margin-top: 30px;
  }

  .get-started-card {
    padding-left: 10px !important;
  }

  .get-started-card h2 {
    font-size: 18px !important;
  }

  .package-value {
    font-size: 20px !important;
  }

  .header-mobile-number {

    font-size: 16px;
    font-weight: 500;

  }

  .section-study-goal {
    padding-top: 590px !important;
  }

  .top-recruiter-carousel-container {
    width: 100%;
  }
}


@media screen and (max-width:991px) {
  .dropdown-menu.megamenu {
    position: static;
  }
}

@media screen and (max-width:1024px) {

  .header .navbar-collapse {
    xbackground-color: var(--light-bg-color) !important;
  }

  .top-nav {
    padding-top: 15px;
  }

  .top-nav .search-form {
    position: relative;
    width: 65%;
  }

  .left-side h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .start-now-image {
    left: 68%;

  }

  .section-study-goal {
    padding-top: 1183px;
  }

  .join_now_card,
  .join_now_card_right {
    height: 237px;
    padding-top: 25px;
    padding-left: 20px;
  }

  .join-girl-image,
  .join-boy-image {
    position: absolute;
    right: -7px;
    top: unset;
    bottom: 0px;
    width: 233px;
  }

  .top-footer {
    padding-top: 400px;
  }

  .description-cont {
    width: 100%;
    max-width: 200px;
  }

  .home-search-box input.form-control {
    max-width: 244px;
  }

  .description-cont h3 {
    font-size: 16px;
    line-height: 130%;
  }

  .top-recruiter-carousel-container {

    left: 0%;

  }

  .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 0px;

  }

  .textonomial-carosel-container {
    left: 2%;
    bottom: -85%;
    transform: none !important;
  }

  .testonomial-description {
    height: 305px;
    border-radius: 0px 0px 20px 20px;
    padding-right: 0px;
  }

  .clp-top-recruiter-section {
    margin-top: 230px !important;
  }

  .collge-campues-image {
    min-height: 500px
  }

  .about-girl-image {
    display: none;
  }

  .bottom-right-background {
    display: none;
  }

  .about-section {
    background-color: var(--primary-color);    
    padding-top: 40px;
    position: relative;
    top: 0px;
    z-index: -1;
    margin-top: 40px;
  }

  .apply_now_card {
    height: 150px;
  }

  .mobile-accordion-header {
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgb(228, 228, 228);
    margin: 10px 0px;
  }

  .tab-content.active {
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgb(228, 228, 228);
  }

  .review-progress-section {
    margin-bottom: 210px;
  }

  .scroll_tabs_theme_light .scroll_tab_right_button,
  .scroll_tabs_theme_light .scroll_tab_left_button {
    display: flex !important;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1324px;
  }
}