@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* header start */
.themecolor-darkblue {
    background-color: #2A1671;
}

.headcolor {
    color: #2A1671;
    font-weight: bold;

}

.themecolor-lightblue {
    background-color: #F1F5F9;
}

/* Navbar Logo */
.headerlogo {
    max-width: 80px;
}

/* Navbar */
.navbar {
    padding: 10px 0;
}

.nav-size {
    font-size: 13px;
    padding: 0 10px !important;   
}
.nav-item a{
    font-size:16px !important;
    font-weight:bold !important;
}

.bground {
    background-color: white;
    padding: 10px 11px;
    color: #2A1671;
    border-radius: 50px;
    font-size: 20px;
}

/* Buttons */
.nav-form {
    background-color: #2A1671;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.nav-form:hover {
    background-color: white;
    color:  #2A1671;
    border: 1px solid #2A1671;
}

.hover-slide-down .divborder {
  position: relative;
  border: 1px solid white;
  border-radius: 49px;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  z-index: 0;
  color: #222; /* Dark text */
  background-color: transparent;
}

.hover-slide-down .divborder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background-color: #ffffff; /* Solid white background */
  transition: height 0.5s ease;
  z-index: -1;
}

.hover-slide-down .divborder:hover::before {
  height: 100%;
  color: #222; /* Dark text */
}

.hover-slide-down .divborder:hover span {
  color: #2A1671;
}

.icon-img {
    height: 30px;
}

/* Icons */
.form-img {
    height: 30px;
    background-color: #F1F5F9;
    padding: 3px;
    border-radius: 50%;
}

.calldiv {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap:6px;
   
}

.fade-animaition{
    animation: fadeInUp 0.8s ease-in-out; /* Animation applied on load */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    animation: fade-in-left 0.8s ease ;
  }
  @keyframes fade-in-left {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .fade-out-down {
    animation: fade-out-down 0.4s ease ;
  }
  @keyframes fade-out-down {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(20px);
    }
  }

  .fade-in-down{
    animation: fade-in-down 0.4s ease ;
  }

  @keyframes fade-in-down {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-20px);
    }
  }

  .grow{
    animation: grow 2s ease;
  }
  @keyframes grow {
    from { transform: scale(0); }
    to { transform: scale(1); }
  }

  .fade-in-left {
    animation: fade-in-left 0.4s ease ;
  }
  @keyframes fade-in-left {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .fade-in-right{
    animation: fade-in-right 0.4s ease ;
  }

  @keyframes fade-in-right {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }


.divborder {
    padding: 7px;
    align-items: center;
    font-size: 12px;
    max-width: 176px;
}

.icon-img {
    height: 25px;
}

.bground {
    font-size: 16px;
    padding: 7px 8px;
}






/* header end */

/* main saction start */

.main-img {
    background-image: url("/public/assets/images/college/main-banner-2.JPG");
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat;
    min-height: 714px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


//* Content Wrapper */
.main-content {
    margin-top: 0;
    text-align: center;
    width: 100%;
    padding: 140px 20px;  /* Top & bottom spacing + left/right padding */
    box-sizing: border-box;
}

/* Heading */
.main-h1 {
    font-weight: bold;
    color: #fff;
    font-size: 50px;
    line-height: 1.2;
     margin-top: 100px;        
    margin-bottom: 20px;
}

/* Paragraph */
.main-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-h1 {
        font-size: 40px;
    }
    .main-content p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 160px 15px 50px 15px;  
    }
    .main-h1 {
        font-size: 28px;
        margin-top: 160px; 
    }
    .main-content p {
        font-size: 14px;
    }
}



/* Form */
.main-form {
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0,0,0,0.3);
}

/* =====================
   Responsive Styles
===================== */
@media (max-width: 991px) {
    .main-content {
        padding: 100px 20px;       
    }

    .main-h1 {
        font-size: 36px; 
    }

    .main-content p {
        font-size: 16px;
    }
}

/* @media (max-width: 575px) {
    .main-img {
        min-height: 300px;          
        background-size: cover;
        background-position: center top;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .main-content {
        padding: 40px 0;         
    }

    .main-h1 {
        font-size: 15px;
        line-height: 1.25; 
        margin-bottom: 10px;
        
    }

    .main-content p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .main-form {
        padding: 10px;
        border-radius: 10px;
        width: 100%;
        max-width: 90%;
        font-size: 13px;
    }
}  */





@media (max-width: 575px) {
    .main-img {
        min-height: 300px;          
        background-size: cover;
        background-position: center top;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .main-content {
        padding: 40px 0;         
    }

    .main-h1 {
        font-size: 15px;
        line-height: 1.25; 
        margin-bottom: 10px;
    }

    .main-content p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .main-form {
        padding: 10px;
        border-radius: 10px;
        width: 100%;
        max-width: 90%;
        font-size: 13px;
    }
}

/* ✅ Extra small devices: width ≤ 400px */
@media (max-width: 400px) {
    .main-img {
        min-height: 260px;
        padding: 15px;
    }

    .main-h1 {
        font-size: 13px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .main-content p {
        font-size: 12px;
        line-height: 1.3;
    }

    .main-form {
        max-width: 95%;
        font-size: 12px;
        padding: 8px;
    }
}

/* ✅ Ultra-small phones: width ≤ 320px */
@media (max-width: 320px) {
    .main-img {
        min-height: 240px;
        padding: 10px;
    }

    .main-h1 {
        font-size: 11px;
    }

    .main-content p {
        font-size: 11px;
    }

    .main-form {
        padding: 6px;
        border-radius: 8px;
        font-size: 11px;
    }
}





.btn-color {
    background-color: #2A1671;
    color: white;
    width: 100%;
}

.btn-color:hover {
    background-color: #2A1671;
    color: white;
}


/* Testimonial card styling */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin: 20px 0px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Avatar */
.testimonial-avatar {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #f1f1f1;
}

/* Name and position */
.testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #888;
}

/* Quotation text */
.testimonial-card p:last-child {
    font-style: italic;
    color: #444;
    margin-top: 10px;
}

/* main saction end */



/* Courses start */

.Courses-section {
    background-color: #F1F5F9;
    padding: 80px 0;
}

.card-img-overlay {
    top: inherit !important;
    background: linear-gradient(to top, #040404, transparent);
}

.overlay-icon-img {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 49px;
    object-fit: contain;
    padding: 8px;
    display: block;
    margin: auto;
}
.coursesbox {
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
    transform: scale(0.95);
}

.coursesbox:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.MBBS-img {
   
}

.mbbs-card-box:hover .MBBS-img {
    transform:  /* Zoom only image */
}

/* Courses end */

/* lp start */
/*
.lp-section {
    padding: 80px 0;
}   */

.lp-subheading {
    background-color: #040404;
    padding: 5px 10px;
    color: white;
}

.lp-img {
    height: 550px;
    object-fit: contain;
}

.lp-number {
    font-size: 30px;
    font-weight: bold;
}

.lp-box {
    background-color: #F1F5F9;
    text-align: center;
    padding: 15px 0;
    border: 0.5px solid #F1F2F6;
    border-radius: 20px;
}

/* lp end */

/* our service start */

/* Card Wrapper */
.content-box {
    display: flex;
    flex-direction: column;        
    align-items: center;           
    justify-content: space-between;
    padding: 20px 15px;
    min-height: 350px;             
    border: 2px solid #ddd;
    border-radius: 10px;
    background: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.content-box:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Image */
.content-box img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.content-box:hover img {
    transform: scale(1.1);
}

/* Text Section */
.content-text {
    flex-grow: 1;                  
    display: flex;
    flex-direction: column;
    justify-content: center;       
    text-align: center;
}

/* Heading */
.content-text h3 {
    font-size: 1.4rem;
    color: #2a1671;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Paragraph */
.content-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* our service end */


/* video section start */



.youtube-section {
  background-color: #f9f9f9;
}

.youtube-card {
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.youtube-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.youtube-img {
  position: relative;
  overflow: hidden;
  height: 400px; /* updated to match image height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee; 
  width: 100%; 
  border-radius: 32px 32px 0 0; 
}

.youtube-img img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  border-radius: inherit; 
  transition: transform 0.4s ease;
}

.youtube-card:hover img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #fff;
  opacity: 0.85;
  transition: 0.3s ease;
}

.youtube-card:hover .play-icon {
  color: #29f309;
  opacity: 1;
}

.youtube-content {
  padding: 20px;
  text-align: center;
}

.youtube-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #2A1671;
}

.youtube-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 0;
}





/* video section end */



/* top-ranking start */









/* top-ranking start */
.top-ranking {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #F1F5F9;
}

/* Apply button */
.btn-apply {
    background: #2A1671;
    color: white;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-apply:hover {
    background: #0d6efd; /* hover color */
    color: white;
}

/* College images */
.ranking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* College heading */
.ranking-heading {
    color: #2A1671;
    font-weight: bold;
}

/* College box */
.rankiingbox {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    margin-bottom: 32px; /* gap between boxes */
}

.rankiingbox:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
}

/* Smooth fade-in animation for sections */
.top-ranking .row {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Best Medical Colleges for MBBS start */
.MBBS-h5 {
    font-size: 18px;
}

.MBBS-img {
    height: 250px;
    object-fit: cover;
}

/* Accordion styling */
.accordion-button:not(.collapsed)::after {
    content: "\f068"; /* FontAwesome plus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    background-image: none;
}

.accordion-button::after {
    content: "\f067"; /* FontAwesome minus */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    background-image: none;
}

.accordion-button:not(.collapsed) {
    background-color: #2A1671;
    color: white;
}

.accordion-button:focus {
    box-shadow: 0px 0px 7px white;
}
/* top-ranking end */



/* top-ranking end */


/* Best Medical Colleges for MBBS start */

.MBBS-h5 {
    font-size: 18px;
}

.MBBS-img {
    height: 250px;
    object-fit: cover;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068";
    /* Unicode for FontAwesome plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    background-image: none;
}

.accordion-button::after {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    background-image: none;
}

.accordion-button:not(.collapsed) {
    background-color: #2A1671;
    color: white;
}

.accordion-button:focus {
    background-color: none;
    box-shadow: var(0px 0px 7px white)
}

/* Best Medical Colleges for MBBS end */
/* Tab Container */
/* Style the tab */
/* Base styles */
.tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 30%;
    height: 450px;
    padding: 0px;
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 17px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #2A1671;
    color: white;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #2A1671;
    color: white;
}

/* Style the tab content */
.tabcontent {
    float: left;
    padding: 10px 12px;
    border: 1px solid #ccc;
    width: 70%;
    border-left: none;
    height: 450px;
}

.carouselcardbox {
   /*width: 18rem;*/
    margin: 20px auto;
    padding: 12px 10px;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carouselcardbox:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mbbs-card-box {
    overflow: hidden; /* ensures image stays within card bounds when scaled */
}

.MBBS-img {
    transition: transform 0.3s ease;
    transform: scale(1);
}

.mbbs-card-box:hover .MBBS-img {
    transform: scale(1.1); /* Zoom only image */
}


.carouselcardimg {
    min-height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.carouselcardtitle {
    font-size: 18px;
    padding: 12px 0px;

}

/* Best Countries to Study Abroad end */

/********************* about us section start *************************/

/* ====== ABOUT PAGE BANNER SECTION ====== */
.aboutus-seciton {
    position: relative; 
    background-image: url("/public/assets/images/college/main-banner.JPG");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 450px;
    display: flex;
    align-items: flex-end; /* pushes content to bottom */
    justify-content: center;
    color: #fff;
}

/* ====== ABOUT PAGE CONTENT POSITION ====== */
.about-position {
    position: absolute;
    bottom: 10px; 
    left: 0;
    width: 100%;
    padding: 0 20px;
}

/* ====== BREADCRUMB COLOR ====== */
.breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

/* ====== DIRECTOR MESSAGE SECTION ====== */
.DirectorMessage {
    padding: 40px 0;
    background-image: url('/img/about-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



@media (max-width: 767px) {
    section.DirectorMessage .row {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    section.DirectorMessage .col-md-7,
    section.DirectorMessage .col-md-5 {
        width: 100% !important;
        max-width: 100% !important;
    }

    section.DirectorMessage img {
        margin-top: 20px !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}





/* ====== ABOUT PAGE IMAGE STYLING ====== */
.aboutmainimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 767px) {
    .aboutus-seciton {
        height: 250px;
        align-items: flex-end;
    }

    .about-position {
        bottom: 20px;
        text-align: center;
        padding: 0 10px;
    }

    .about-position h1 {
        font-size: 20px;
    }

    .about-position .breadcrumb {
        justify-content: center;
        font-size: 12px;
    }
}


/*

@media (max-width: 767px) {
    .DirectorMessage .row {
        display: flex;
        flex-direction: column-reverse; 
    }

    .DirectorMessage .col-md-5,
    .DirectorMessage .col-md-7 {
        width: 100%;
        max-width: 100%;
    }

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

*/



/* Objectives section start */

.Objectives-icon {
    max-width: 80px;
}

/* Objectives section end */
/********************* about us section end *************************/

/********************* Courses-college-listing page start  *************************/

.college-listing-img {
    height: 100%;
    width: 100%;

}

.text-size-listing {
    font-size: 14px;
}

.filter-sidebar {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.filter-text {
    color: #5C5454;
}

.college-details-link{
    color:  #5C5454;
    text-align: center;
}

/********************* Courses-college-listing page end  *************************/

/********************* service page start  *************************/
.service-box {
    background-color: #F1F2F6;
    padding: 15px;
}

.content-title {
    font-size: 18px;
}

.offer-img {
    max-width: 60px;
}

.paralax {
    background-image: url('/img/servicepara.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
}

.paralax h2 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

.Preparationimg {
    max-width: 100%;
    text-align: center;
}

.Preparation-section {
    padding: 40px 0;
    background-color: #F1F5F9;
}

/********************* service page end  *************************/
/********************* blog page start  *************************/

.blog-title {
    font-size: 35px;
}

.blog-img {
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
}

.blog-href {
    background-color: #2A1671;
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    margin: 30px 0;
}

.admin-text-size {
    margin: 15px 0;
    gap: 18px;

}

.search-sidebar {
    margin-top: 50px;
}

/********************* blog page end  *************************/
/********************* college-details start  *************************/

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #2E1A63;
    /* Dark purple */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
}

.info-text {
    font-size: 14px;
    max-width: 250px;
}

.info-text strong {
    font-weight: 600;
}

/* Make tabs container scrollable on small screens */
.college-details-tab {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: start;
}

/* Ensure each tab is properly spaced */
.college-details-item {
    flex: 1 1 auto;
}

/* Hide scrollbar but allow scrolling */
.college-details-tab::-webkit-scrollbar {
    display: none;
}

/********************* college-details end  *************************/

/********************* contact-us start  *************************/

.contact-icon {
    background-color: #2A1671;
    font-size: 15px;
    color: white;
    padding: 10px;
    border-radius: 50px;
}

.input-field {
    height: 50px;
    border-radius: 10px;
}

/********************* contact-us end  *************************/
/* footer start */
.footer {
    background: #2A1671;
    background-size: cover;
    padding: 80px 0 0px;
}

.footer-icon {
    font-size: 16px;
    border: 1px solid white;
    padding: 10px;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease-in-out;
    /* Smooth transition for all properties */
}

.footer-icon:hover {

    color: #2A1671;
    background-color: white;
    transform: scale(1.1);
    /* Adds a slight zoom effect */
}

.footer-newsletter {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.subscription-form {
    display: flex;
    border: 2px solid #ffffff;
    /* White border as specified */
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    /* Maximum width for larger screens */
}

.subscription-form input[type="email"] {
    padding: 10px;
    font-size: clamp(10px, 2vw, 12px);
    /* Responsive font size */
    border: none;
    outline: none;
    flex: 1;
    /* Takes remaining space */
    min-width: 0;
    /* Prevents overflow */
}

.subscription-form button {
    padding: 10px 15px;
    font-size: clamp(10px, 2vw, 16px);
    /* Responsive font size */
    background-color: #2A1671;
    /* Darker purple as per the second button style */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    font-size:15px;
    /* Prevents text wrapping */
}

.subscription-form button:hover {
    background-color: #6A0DAD;
    /* Slightly lighter purple on hover */
}

.text-size {
    font-size: 16px;
    color: #000000;
}

.font-size {
    font-size: 14px;
    color: white;
}

.modal-content {
  border-radius: 16px !important;
  border: none;
  background: #ffffff;
}

.whatsapp_popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp_popup a {
  color: #fff;
  text-decoration: none;
}

.whatsapp_popup i {
    font-size: 40px;
}

/* Optional bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.form-control,
.form-select {
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

textarea.form-control {
  resize: none;
}

.Enquiryform-body {
  padding: 20px;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  background: #fff;
}

.Enquiryform-form {
    line-height: 15px;
}

.input-group-text {
  background-color: #f8f9fa;
  border: none;
  border: 1px solid #dee2e6;
  border-radius: 12px 0 0 12px;
  color: #2A1671;
  font-size: 1.1rem;
}

.input-group .form-control,
.input-group .form-select {
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

input::placeholder {
  color: gray !important;
  opacity: 0.5 !important;
}

select.form-select {
  color: #6c757d; /* default text color */
}

select.form-select option {
  color: #000; /* text color for options */
  background-color: #fff; /* default background */
}

/* Selected option only when dropdown is open in some browsers */
select.form-select option:checked {
  color: #fff;               /* selected option text color */
  background-color: #0d6efd; /* selected option background */
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
}
.form-label{
    color:#95a5a6;
}
.btn-apply {
  background-color: #2A1671;
  color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  font-weight: 500;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-apply2 {
  background-color: #2A1671;
  color: #fff;
  border-radius: 12px;
  padding: 10px 15px;
  font-weight: 500;
  border: none;
  transition: background-color 0.3s ease;
  height:45px;
}

.btn-apply2:hover {
  background-color: #0b5ed7;
  color:white;
}
.Enquiry-modal-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-apply:hover {
  background-color: #0b5ed7;
}



/* ✅ Improved Mobile Footer Layout */
@media (max-width: 767px) {

  /* General layout fixes */
  .footer {
    padding: 40px 15px 20px;
  }

  .footer .row {
    text-align: center;
  }

  /* Columns stack neatly with equal spacing */
  .footer .col-md-2,
  .footer .col-md-4,
  .footer .col-sm-6 {
    margin-bottom: 30px;
  }

  /* Logo center alignment */
  .footer img.headerlogo {
    display: block;
    margin: 0 auto 10px;
    width: 100px;
    height: auto;
  }

  /* Reduce text width for better readability */
  .footer p.font-size {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
  }

  /* Social icons centered */
  .footer ul.d-flex {
    justify-content: center !important;
  }

  /* Footer headings spacing */
  .footer h5 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 16px;
  }

  /* List items cleaner */
  .footer ul.list-unstyled li {
    margin-bottom: 6px;
  }

  /* Newsletter form full width */
  .subscription-form {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    border: 1px solid #fff;
  }

  .subscription-form input[type="email"],
  .subscription-form button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .subscription-form button {
    margin-top: 8px;
  }

  /* Quick links list stacked neatly */
  .footer ul.list-inline {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .footer ul.list-inline li {
    display: block;
  }

  /* Copyright smaller spacing */
  .footer .text-size {
    font-size: 13px;
  }

  /* WhatsApp button adjust */
  .whatsapp_popup {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }

  .whatsapp_popup i {
    font-size: 32px;
  }
}




  
/* footer end */




/* Responsive Design */

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

    .nav-size {
        font-size: 11px;
        padding: 0 7px !important;   
    }
    
    .nav-form{
        font-size: 10px;
    }


}

@media screen and (max-width: 1024px) {
    .bground {
        background-color: white;
        padding: 7px 8px;
        color: #2A1671;
        border-radius: 50px;
        font-size: 13px;
    }

    .calldiv {
        font-size: 14px;
    }

    .content-box img {
        max-width: 70px;
        height: auto;
    }
  .nav-item a {
        font-size: 13.5px !important;
    }

    .ranking-icon-text {
        font-size: 11px;
    }

    .btn-apply {
        font-size: 9px;
    }

    .blog-body {
        padding: 10px 0;
    }
    .Courses-section{
        padding: 40px 0;
    }
    .lp-section{
        padding: 40px 0;
    }

    .nav-size {
        font-size: 11px;
        padding: 0 7px !important;   
    }
    
    .divborder{
            min-width: 154px;
    }

    .filter-text{
        font-size: 14px;
    }
   
    .text-size-listing {
        font-size: 10px;
    }
     .filter-text{
    font-size: 10px;
    }
    .headeing-size{
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    
    .form-div{
        flex-wrap: wrap;
        justify-content: center;
    }

    .admin-text-size {
        font-size: 15px;
        margin: 10px 0;
        gap: 18px;
    }

    .main-h1 {
        font-size: 20px;
    }

    /* .nav-form {
        justify-content: start;
        min-width: 200px;
    } */

    .content-title{
        font-size: 14px;
    }

    .headerlogo {
        max-width: 80px;
    }

    .divborder {
        padding: 7px;
        align-items: center;
        font-size: 12px;
        max-width: 130px;
    }

    .icon-img {
        height: 25px;
    }

    .content-box img {
        max-width: 60px;
        height: auto;
    }

    .videobg {
        height: auto;
        padding: 20px;
    }

    .video-bgdiv {
        min-width: 150px;
        font-size: 12px;
        padding: 8px;
    }

    .video-div,
    .video-div:last-child {
        justify-content: center;
    }

    .top-ranking {
        padding-top: 30px;
    }

    .tab-container {
        flex-direction: column;
    }

    .tab-menu {
        width: 100%;
        display: flex;
        overflow-x: auto;
    }

    .tab-menu li {
        flex: 1;
        text-align: center;
    }

    .carousel-container {
        flex-direction: column;
    }

    .carousel-track {
        justify-content: center;
    }

    .prev,
    .next {
        display: none;
        /* Hide arrows on mobile */
    }

    .tab {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
    }

    .tab button {
        flex: 1;
        text-align: center;
        font-size: 16px;
        padding: 10px;
        min-width: 150px;
    }

    .tabcontent {
        width: 100%;
        height: auto;
        float: none;
        border-left: 1px solid #ccc;
    }

    

    .carouselcardtitle {
        font-size: 14px;
    }

    .text-size {
        font-size: 12px;
    }

    .ranking-heading {
        font-size: 17px;
    }

   .ranking-heading>a{
       color:#2a1671 !important;
   }
    .ranking-icon-text {
        font-size: 11px;
    }

    .no-js .owl-carousel,
    .owl-carousel.owl-loaded {
        display: inline-block !important;
    }

    .text-size-listing {
        font-size: 14px;
    }
     .filter-text{
    font-size: 14px;
    }
    .headeing-size{
        font-size: 22px;
        margin: 35px 0 8px;
    }

}

@media (min-width: 577px) and (max-width: 768px) {
    .subscription-form {
        max-width: 375px;
    }

    .subscription-form input[type="email"] {
        font-size: 12px;
    }

    .subscription-form button {
        font-size: 10px;
        padding: 8px;
    }

    .text-size {
        font-size: 12px;
    }

    .ranking-heading {
        font-size: 25px;
    }

    .ranking-icon-text {
        font-size: 11px;
    }

    .admin-text-size {
        font-size: 14px;
        gap: 10px;
    }

    .blog-title {
        font-size: 22px !important;
    }

    .popular-post-size {
        font-size: 11px;
    }

    .popular-post-size-text {
        font-size: 11px;
    }

    .info-text{
        max-width: 125px;
    }
}

@media (max-width: 576px) {

    .DirectorMessage{
        padding: 20px 0;
    }
    .Preparation-section{
        padding: 20px 0;
    }
    .content-box {
        flex-direction: column;
        text-align: center;
    }

    .content-text {
        margin-left: 0;
        margin-top: 10px;
    }

    .content-box img {
        max-width: 60px;
    }

    .ranking-heading {
        font-size: 19px;
        margin: 10px 0;
        font-weight:bold;
    }
    .text-service-heading{
        text-align:center;
        font-size: 30px;
    }
    .text-size{
        font-size: 15px;
    }
      .ranking-icon-text {
        font-size: 11px;
    }

    .btn-apply {
        font-size: 14px;
        padding: 10px 60px;
    }

    .admin-text-size {
        font-size: 12px;
        gap: 10px;
    }

    .blog-title {
        font-size: 19px;
    }

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

    .info-text {
        max-width: 165px;
    }

    .content-title{
        font-size: 18px;
    }
    .paralax h2{
        font-size: 23px;
    }

    .paralax P{
        font-size: 13px;
    }

}