@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');




.custom-tour-link {
  display: flex;
  justify-content: center; /* Center on mobile */
  text-align: center;
  margin: 10px 0;
}

/* Desktop view */
@media (min-width: 768px) {
  .custom-tour-link {
    justify-content: flex-start;
    margin-left: 40%;
    text-align: left;
  }
}

/* Container & Section */
.contact_wrapper {
    padding: 80px 0;
    /*background-color: #f4f6f9;*/
}

.contact_card {
    display: flex;
    gap: 50px; 
    flex-wrap: wrap;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 30px;
}

/* Left: Contact Info */
.contact_info_wrapper {
    flex: 1 1 350px; 
    padding: 20px 30px;
}

.contact_info_wrapper h2 {
    font-size: 30px;
    color: rgb(54, 158, 135);
    margin-bottom: 25px;
}

.info_item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.info_item i {
    font-size: 22px;
    color: rgb(54, 158, 135);
    margin-top: 3px;
}

.info_item h4 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

.info_item p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.info_item p a:hover {
    color: rgb(54, 158, 135);
}

/* Social section */
.info_item.social {
    display: block; /* Stack heading and icons vertically */
    margin-top: 20px;
}

.info_item.social h4 {
    margin-bottom: 12px; /* spacing below heading */
}

.social_links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px; /* slightly larger */
    color: #555;
    transition: all 0.3s;
}

.social_links a:hover {
    color: rgb(54, 158, 135);
}

/* Right: Contact Form */
.contact_form_wrapper {
    flex: 1 1 450px;
    padding: 20px 30px;
    background: #f0faf5; 
    border-radius: 12px;
}

.contact_form_wrapper h2 {
    font-size: 30px;
    color: rgb(54, 158, 135);
    margin-bottom: 15px;
}

.contact_form_wrapper p {
    margin-bottom: 25px;
    color: #555;
}

.contact_form .form_group {
    margin-bottom: 18px;
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s;
}

.contact_form input:focus,
.contact_form textarea:focus {
    border-color: rgb(54, 158, 135);
    outline: none;
}

.btn_submit {
    width: 100%;
    padding: 14px;
    background-color: #f96c04;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_submit:hover {
    background-color: #f17e2cff;
    transform: translateY(-2px);
}

/* Map */
.map_container {
    margin-top: 40px;
}

.map_container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 991px) {
    .contact_card {
        flex-direction: column;
    }
    .map_container iframe {
        height: 300px;
    }
}

.logo img {
    width: 65px;
    transition: .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav {
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    width: 100%;
    z-index: 999;
}

.topNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topNav {
    color: #fff;
    padding: 12px 2rem;
    background-color: var(--secondory-color);
}

.topNav_content__left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topNav_content__left a {
    color: var(--white-color) !important;
    display: flex;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
}

/* Reduce extra gap only between Virtual Tour and Mandatory Disclosure */
.topNav_content__left.custom-tour-link {
    margin-right: 5px; /* optional: small space to the next block */
}

/* Or remove gap for the last block if needed */
.topNav_content__left:last-child {
    margin-left: 0;
}


.dropdown_menu {
    position: relative;
}

.dropdown_menu__list {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 200px;
    background-color: var(--white-color);
    z-index: 99;
    border: 1px solid #ccc;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease all;
}

.dropdown_menu__list a {
    text-transform: capitalize !important;
}

.dropdown_menu:hover .dropdown_menu__list {
    visibility: visible;
    opacity: 1;
    transition: .3s ease all;
}

.dropdown_menu__list ul {
    flex-direction: column !important;
    gap: 0 !important;
    justify-content: start !important;
    align-items: start !important;
}

.dropdown_menu__list ul li {
    width: 100%;
}

.dropdown_menu__list ul li a {
    width: 100%;
    color: var(--black-color) !important;
    display: block;
    padding: 10px;
    font-size: 15px !important;
    border-bottom: 1px solid #ccc;
}

.dropdown_menu__list ul li a:hover {
    background-color: var(--main-color);
    color: var(--white-color) !important;
}

.myNav_conetent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.topNav_content__left .global_btn:hover {
    background: #fff;
    color: #000 !important;
}

.myNav.sticky .menu ul li a {
    color: var(--black-color);
}

.myNav.sticky {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
    top: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, .54);
    background-color: var(--white-color);
}


/* mobileNav */
.mobileNav {
    position: fixed;
    right: -100%;
    transition: .4s ease;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    backdrop-filter: blur(1px);
    z-index: 999 !important;
}

.mobileNav.active {
    right: 0;
    transition: .4s ease;
}

.mobileNav_content {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--white-color);
}

.mob-logo img {
    width: 50px;
}

.mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 16px;
}

.cancel_menu i {
    font-size: 25px;
    cursor: pointer;
    color: var(--black-color);
}

.mobile_menu ul li a {
    display: flex;
    gap: 3px;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 12px 1rem;
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 500;
}

.dropdown--btn {
    position: relative;
}

.drop-btn.active .dropdown--btn-list {
    height: auto;
}

.dropdown--btn-list a {
    font-size: 14px !important;
}

.drop-btn.active .dropdown--btn-list a {
    padding: 7px 1rem !important;
    transition: .3s ease all;
}

.drop-btn.active .dropdown--btn {
    background-color: var(--main-color);
    color: var(--white-color) !important;
}

.dropdown--btn-list {
    height: 0;
    overflow: hidden;
}

.dropdown--btn::after {
    content: '\002B';
    position: absolute;
    right: 16px;
    font-weight: 400;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s ease;
    font-size: 28px;
}

.drop-btn.active .dropdown--btn::after {
    content: '\2212';
    transition: .3s ease;
}








/* fixed-btn */
.fixed-btn {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 99 !important;
    display: flex;
    gap: 3rem;
    flex-direction: column;
    transform: translateY(-50%);
}

.fixed-btn-box {
    margin-top: 5rem;
    margin-left: -4rem;
    transform: rotate(-90deg)
}

.fixed-btn-box a,
.fixed-btn-box button {
    background-color: var(--secondory-color);
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    border: 1px solid #ccc;
    padding: 3px 10px;
}

.myNav.sticky .logo img {
    width: 60px;
    transition: .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo {
    text-align: center;
}

.right-menu ul {
    justify-content: end !important;
    align-items: center;
}

.myNav {
    padding: 12px 2rem;
}

.menu ul {
    display: flex;
    gap: 2rem;
    height: 100%;
    align-items: center;
}

.menu ul li {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

/* banner_img */
.banner_img {
    position: relative;
}

.banner_box.slick-active {
    transition: 1s ease !important;
}

.banner_img::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 15, 15, 0.585) 100%, rgba(15, 15, 15, 0.34) 100%);
}

.banner_img img {
    width: 100%;
    transition: 6s ease;
    height: 1080px;
    object-fit: cover;
}

.banner_img {
    overflow: hidden;
}

.banner_box {
    position: relative;
    overflow: hidden;
}



.banner_content {
    position: absolute;
    left: 0;
    top: 60%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner_content h1 {
    font-size: 64px;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
}

.banner_content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.myBtn {
  margin-top: 2rem !important;
  display: flex;
  justify-content: center; /* aligns both buttons horizontally */
  align-items: center;
  gap: 15px; /* space between the buttons */
  flex-wrap: wrap; /* responsive for small screens */
}


.banner_content b {
    background-color: var(--secondory-color);
    padding: 2px 10px;
    border-radius: 100px;
    max-width: max-content;
    margin: 0 auto;
}

.banner_content .myBtn {
    margin: 0 auto;
    margin-top: 2rem;
}

.global_wrapper {
    padding: 60px 0 55px 0;
}

.global_content {
    margin-top: 3rem !important;
}

.about_img img {
    width: 100%;
    height: 470px;
    object-position: left;
    border-radius: 10px;
    object-fit: cover;
}

.about_img {
    margin-top: 2rem;
}

.about_img iframe {
    width: 100%;
    height: 470px;
    border-radius: 10px;
}

.ytp-cued-thumbnail-overlay-image {
    background-image: url('../images/about1.jpg') !important;
}

.dot-bg {
    border-top: 1px solid #ccc;
}

.about_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_content {

    text-align: center;
}

.about_content h2 span {
    color: var(--secondory-color);
}

.center_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.about_content h2 {
    font-size: 34px;
}

.about_content p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 1.64;
}

/* why */
.back_bg {
    background-color: #fff3f0;
}

.main_heading h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--secondory-color);
}

.main_heading p {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 12px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}


.why_img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.why_img {
    position: relative;
}

.why_img::after {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(43 28 4 / 89%) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.why_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}

.why_grid__box {

    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.why_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    color: #fff;
    background: var(--main-color);
}

.why_content h3 {
    font-size: 19px;
    text-transform: capitalize;

    font-weight: 500;
}

.why_content p {
    margin-top: 5px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}




.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px;
    background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

.slick-dots {
    bottom: -3rem !important;
    width: 96% !important;
    line-height: 0 !important;
}

/* team_grid */
.team_grid {
    display: grid;
}

.team_box {
    position: relative;
    margin: 0 12px;
    display: flex !important;
}

.team_box:nth-child(even) .team_box__content {
    background-color: var(--secondory-color);
}

.team_box__img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}

.team_box__img,
.team_box__content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.slick-next,
.slick-prev {
    height: 34px !important;
    width: 34px !important;
    z-index: 99 !important;
    background-color: var(--secondory-color) !important;
    border-radius: 100px;
}

.team_box__content {
    background-color: var(--main-color);
    padding: 20px;
    color: #fff;
    width: 100%;
    height: auto;
}

.team_box__content h3 {
    text-transform: capitalize;
    font-size: 22px;
}

.team_box__content h6 {
    margin: 12px 0 !important;
    font-weight: 500;
    color: var(--secondory-color);
}

.team_box:hover img {
    opacity: .8;
    transition: .4s ease-in-out;
}

/* testimonials_box__img */
.testimonials_box__img img {
    height: 120px;
    width: 120px;
    object-fit: cover;
    padding: 2px;
    background-color: whitesmoke;
    border: 4px dashed var(--main-color);
    border-radius: 100px;
}

.testimonials_box {
    background-color: #fff;
    padding: 2rem;
    margin: 0 12px;
    border-radius: 10px;
    text-align: center;
}

.testimonials_box__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials_content p {
  margin-top: 12px;
  display: block; /* reset display */
  overflow: visible; /* show full content */
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}


/*.testimonials_content p {
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;}*/
    



.testimonials_content h6 {
    font-style: 22px;
    font-weight: 500;
    margin-top: 12px;

}

.testimonials_box:nth-child(even) {
    background-color: var(--main-color);
    color: #fff;
}

/* contact_wrapper__content */
.contact_wrapper__content {
    position: relative;
}

.contact_wrapper {
    padding: 100px 0;
}

.contact_wrapper__img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact_wrapper__img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--main-color);
    object-fit: contain;
}

.contact_form {
    border-radius: 10px;
    background-color: var(--secondory-color);
    color: #2c2b2b;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.389);
    width: 100%;
    padding: 2rem;
}

.form_input input,
.form_input textarea {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    outline: none !important;
}

.contact_form h3 {
    text-transform: capitalize;
    margin-bottom: 1.2rem !important;
}

/* blogs_box__img */
.blogs_box__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blogs_grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.blogs_box:nth-child(even) .blogs_box__content {
    background-color: var(--main-color);
}

.blogs_box__img {
    position: relative;
}

.blogs_box__img span {
    position: absolute;
    background-color: var(--main-color);
    color: #fff;
    padding: 2px 10px;
    font-size: 13px;
    font-weight: 500;
    left: 0;
    top: 0;
}

.blogs_box__content {
    background-color: var(--secondory-color);
    padding: 20px;
    color: var(--white-color);
}

.blogs_box__content h3 {
    font-size: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blogs_box__content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 12px 0 !important;
}

.blogs_box__content a {
    display: flex;
    gap: 5px;
    align-items: center;
    text-transform: capitalize;
    color: var(--white-color) !important;
    font-weight: 500;
}

.menu_icon {
    display: none;
}

.menu_icon i {
    font-size: 25px;
    color: #fff;
}

.myNav.sticky .menu_icon i {
    color: var(--black-color);
}

/* mission-vision-grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mission-vision-box:nth-child(2) {
    background-color: var(--white-color);
    color: #000;
}

.mission-vision-box:hover {
    transform: scale(1.015);
    transition: .3s ease-in;
    color: #fff;
    background: var(--secondory-color);
}

.mission-vision-box {
    background-color: #F96C04;
    transition: .43s ease-in;
    padding: 2rem;
    color: #fff;
    border-radius: 10px;
}

.mission-vision-box h3 {
    text-transform: capitalize;
}

.mission-vision-box p {
    margin-top: 10px;
    line-height: 26px;
}

.mission-vision-box ul {
    margin-top: 10px;
    padding-left: 20px !important;
}

.mission-vision-box ul li {
    margin-bottom: 6px;
    
}

/* programmes_wrapper */
.programmes_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .7594), rgba(0, 0, 0, .54)), url('../images/WhatsApp-Image-2025-03-01-at-10.19.48_1552754c-scaled.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    background-attachment: fixed;
    backdrop-filter: blur(5px);
    padding: 120px 0;
}

.programmes_box__img {
    overflow: hidden;
}

.programmes_box__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.programmes_box__content {
    background-color: var(--white-color);
    padding: 12px;
    background-color: var(--secondory-color);
    color: #fff;

}

.programmes_box__content h3 {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
}

.team_box__content h3 span {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
}

.slick-prev:before,
.slick-next:before {
    opacity: 1 !important;
}

.team_box__content p {
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
}

.programmes_box__content p {
    margin-top: 5px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
}

.programmes_box__content a {
    text-transform: capitalize;
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--white-color) !important;
    font-weight: 500;
    margin-top: 12px;
}

.programmes_box {
    overflow: hidden;
    position: relative;
}

.programmes_box:hover img {
    transform: scale(1.1);
    opacity: .8;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* clients_slider */
.clients_wrapper {
    padding: 30px 0;
}

.clients_slider {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.clients_box {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.clients_box img {
    width: 120px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

/* cta_wrapper */
.cta_wrapper {
    background-color: var(--secondory-color);
    padding: 50px 0;
}

.cta_wrapper__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.cta_wrapper__content .myBtn a,
.form_input button {
    background-color: var(--main-color);
}

.cta_wrapper__content h2 {
    font-size: 45px;
    font-weight: 500;
}

.cta_wrapper__content h6 {
    margin-top: 1rem;
    font-size: 30px;
}

.cta_wrapper__content p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 1rem !important;
    font-weight: 500;
    max-width: 868px;
    margin: 0 auto;
}


/* direction_grid */
.direction_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.direction_box {
    padding: 20px;
    border-radius: 10px;
    color: var(--white-color);
    background-color: var(--main-color);
    border: 1px solid #ccc;
}

.direction_box h3 {
    font-size: 22px;
}

.direction_box p {
    margin-top: 10px;
}

.direction_box:nth-child(even) {
    background-color: var(--secondory-color);
}


/* number-flex */
.number-flex {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 1rem;
}

.number-box {
    text-align: center;
    margin-bottom: 1rem;
    width: 20%;
}

.number-box:nth-child(even) h6 {
    color: var(--main-color);
}

.number-box:nth-child(odd) h6 {
    color: var(--secondory-color);
}

.number-box h6 {
    height: 140px;
    width: 140px;
    margin: 0 auto;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 140px;
    border-radius: 100px;
    border: 5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.34901960784313724), 0px 0px 30px inset; */

    box-shadow: 0 0 4px rgba(0, 0, 0, .4);
    border: 3px dashed;
    transition: .4s ease all;
    background: antiquewhite;
}

.number-box:hover h6 {
    transform: scale(1.05);
    transition: .4s ease all;
}

.number-box h3 {
    margin-top: 15px;
    font-size: 1rem;
}

.number-box p {
    color: #6d6d6d;
    margin-top: 5px;
    max-width: 280px;
}


/* Result cards container */
.student_result_section .result_box {
    display: flex !important; 
    margin: 0 12px; 
    border-radius: 10px; 
    overflow: hidden; 
    flex-direction: column;
}



/* Image container */
.student_result_section .student-img {
    width: 100%;
    height: 250px;
    background-color: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.student_result_section .student-img img {
    height: 250px !important; 
    width: 100% !important; 
    transition: .3s ease all;
}

.student_result_section .result_box:hover .student-img img {
    opacity: .8; 
    transition: .4s ease all;
}

/* Info area */
.student_result_section .student-info {
    background-color: var(--secondory-color); 
    display: flex !important; /* justify-content: center; */ 
    align-items: center; 
    flex-direction: column; 
    text-align: center; 
    padding: 12px; 
    height: 100%; 
    transition: .34s ease all;
}

.student_result_section .student-info h3 {
    font-size: 25px; 
    padding: 1rem;
    color: white;
}

.student_result_section .student-info p {
    margin-top: 3px; 
    font-size: 18px; 
    padding: 1.5rem;
    color: white;
}

/* Hover effect */
/*.student_result_section .student-info:hover {*/
/*    background-color: var(--main-color); */
/*    cursor: pointer; */
/*    color: var(--white-color); */
/*    transition: .4s ease all;*/
/*}*/

/* Responsive adjustments */
@media (max-width: 992px) {
    .student_result_section .student-img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .student_result_section .student-img {
        height: 200px;
    }

    .student_result_section .student-info h3 {
        font-size: 17px;
    }

    .student_result_section .student-info p {
        font-size: 14px;
    }
}



/* ===== Executive Visionaries (Exclusive Styling) ===== */
.executive_section .result_box {
    display: flex !important;
    margin: 0 12px;
    border-radius: 12px;
    overflow: hidden;
    flex-direction: column;
    background-color: var(--secondory-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.executive_section .result_box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Image only in executive section */
.executive_section .student-img img {
    height: 340px !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, opacity 0.3s ease;
    /*border-bottom: 0px solid #eee;*/
}

.executive_section .result_box:hover .student-img img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Info area */
.executive_section .student-info {
    background-color: var(--secondory-color);
    display: flex !important;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 16px 10px;
    height: auto;
    transition: all 0.3s ease;
}

.executive_section .student-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding: 0.5rem 0;
}

.executive_section .student-info p {
    margin-top: 1px;
    font-size: 14px;
    padding: 0.3rem 0;
    color: #fff;
    line-height: 1.0;
}




/* Responsive */
@media (max-width: 768px) {
    .executive_section .student-img img {
        height: 280px !important;
    }
    .executive_section .student-info h3 {
        font-size: 18px;
    }
    .executive_section .student-info p {
        font-size: 15px;
    }
}

/* tabs_wrapper */
.tabs_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('../images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.my-tabs .nav-link,
.my-tabs .nav-item {
    display: block;
    width: 100%;
    color: #fff !important;
}

.my-tabs .nav-link {
    border: 1px solid #ccc !important;
    padding: 10px !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;

}

.my-tabs .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: var(--main-color) !important;
    border-color: none !important;
}

.my-tabs .nav {
    flex-wrap: nowrap !important;
    gap: 12px;
    border-bottom: 0 !important;
}

.tabs_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tabs_grid__box {
    padding: 2rem;
    height: 100%;
    background-color: #00000042;
    backdrop-filter: blur(2px);
    border-radius: 10px;
    border: 1px solid #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .54);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    transition: .43s ease all;
    justify-content: center;
}

.tabs_grid__box:hover p {
    color: var(--main-color);
}

.tabs_grid__box:hover {
    background-color: var(--white-color);
    transition: .3s ease all;
}

.tabs_grid__box p {
    text-transform: capitalize;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
}

/* infrastructure_grid */
.infrastructure_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.infrastructure_grid__box {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ccc;
    transition: .43s ease all;
    /*cursor: pointer;*/
    background-color: floralwhite;
}

.infrastructure_grid__box:hover {
    transform: translateY(-5px);
    transition: .3s ease all;
    box-shadow: 0 0 4px rgba(0, 0, 0, .54);
}

.infrastructure_grid__box h6 {
    margin-top: 10px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
}

/* event_box */
.event_box {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 100%;
    background-color: #fff;
}

.event_box h3 {
    background-color: var(--secondory-color);
    text-align: center;
    padding: 12px;
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 1rem !important;
}

.event_slider__box {
    display: flex !important;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.date {
    height: 45px;
    width: 75px;
    background-color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white-color);
    border-radius: 5px;
}

.newslatter-box {
    background-color: whitesmoke;
    margin: 0 4px;
    padding: 10px 10px;
    position: relative;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--black-color);
}

.newslatter-box h6 {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--main-color);
    font-weight: 600;
}

.newslatter-box p {
    text-transform: capitalize;
    margin-top: 3px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--main-color);
    color: white;
    padding: 5px 20px;
}

.header button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.weekdays,
.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.weekdays div {
    background: #eee;
    padding: 5px 0;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.days div {
    padding: 5px 0;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
    color: #333;
}

.days div.today {
    border: 2px solid #2ecc71;
    color: #2ecc71;
    border-radius: 4px;
}

.days div.other-month {
    color: #ccc;
}

.banner-bottom-strip {
    background: var(--main-color);
    overflow: hidden;
}

.news {
    padding-right: 20px;
    padding-left: 100px;
    background-color: var(--secondory-color);
}

.news p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.news-content {
    position: relative;
    background-color: var(--main-color);
}

.news-content marquee {
    position: relative;
    z-index: 9;
}

.news-content ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 30px;
    padding-top: 5px;
}

.news-content ul li {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.news-content ul li:before {
    content: "";
    display: inline-block;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 6px;
}



/* offering_wrapper__grid */

.offering_wrapper {
    background-color: var(--main-color);
    padding: 40px 0 !important;
}

.offering_box {
    background-color: var(--white-color);
    height: 100%;
    padding: 20px;
    margin: 0 12px;
    text-align: center;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    border-radius: 10px;
    color: var(--black-color);
}

.offering_box h6 {
    text-transform: capitalize;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.exp-grid-box {
    padding: 24px;
    border-radius: 10px;
    color: #fff;
}

.exp-grid-box:nth-child(even) {
    background-color: var(--main-color);

}

.exp-grid-box h3 {
    text-transform: capitalize;
    font-size: 25px;
    margin-top: 12px;
}

.exp-grid-box p {
    margin-top: 12px;
}

.exp-grid-box:nth-child(odd) {
    background-color: var(--secondory-color);

}

.cta_bg {
    background: linear-gradient(rgba(0, 0, 0, .74), rgba(0, 0, 0, .4)), url('../images/enroll-school-image.jpeg') !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}





@media(max-width:1650px) {
    .menu ul li a {
        font-size: 16px;
    }
}

@media(max-width:1440px) {
    .testimonials_content h6 {
        font-size: 15px;
        font-weight: 600;
    }

    .about-dropdown {
        width: 250px !important;
        left: 0;
        transform: none;
    }

    .learning-dropdown {
        left: 50%;
        width: 300px !important;
        /* transform: none; */
    }

    .dropdown_menu__list {
        width: 300px;
    }

    .student-dropdown {
        right: 0;
        left: inherit;
        transform: none;
    }

    .testimonials_box {
        padding: 25px;
    }

    .team_box__content h3 {
        font-size: 18px;
    }

    .why_grid {
        gap: 10px;
    }

    .topNav,
    .myNav {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .team_box__img img {
        height: 100%;
    }

    .logo img {
        width: 55px;
    }

    .myNav.sticky .logo img {
        width: 50px;
    }

    .banner_content h1 {
        font-size: 50px;
    }

    .banner_img img {
        height: 750px;
    }

    .programmes_box__content h3 {
        font-size: 16px;
    }

    .programmes_box__content p {
        font-size: 12px;
    }



    .menu ul {
        gap: 1.2rem;
    }

    .menu ul li a {
        font-size: 14px;
    }
}

@media(max-width:1200px) {
    .team_box__content h3 {
        font-size: 20px;
    }

    .infrastructure_grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .myNav {
        padding: 1rem 0;
    }

    .clients_slider {
        justify-content: center;
    }

    .menu ul li a {
        font-size: 13px;
    }

    .about_content h2 {
        font-size: 24px;
    }

    .about_content p {
        font-size: 16px;
    }

    .why_content p,
    .team_box__content p,
    .testimonials_content p {
        font-size: 14px;
    }
}

@media(max-width:992px) {
    .key-box {
        margin-bottom: 24px;
    }

    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event_box {
        margin-bottom: 1rem;
        height: auto;
    }

    .myflex {
        flex-direction: column-reverse;
    }

    .blogs_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .direction_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .menu {
        display: none;
    }

    .mission-vision-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .team_box {
        flex-direction: column;
    }

    .team_box__img img {
        height: 260px;
    }

    .programmes_box {
        margin-bottom: 12px;
    }

    .myNav_conetent {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        width: 90px;
    }

    .myNav.sticky .logo img {
        width: 80px;
    }

    .banner_content {
        width: 75%;
        margin-left: 2rem;
    }

    .team_grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .contact_form h3 {
        font-size: 20px;
    }

    .form_input input,
    .form_input textarea {
        padding: 7px;
    }

    .center-box {
        margin: 0 50%;
        margin-top: 24px;
        width: 100%;
    }

    .menu_icon {
        display: block;
    }
}

@media(max-width:768px) {
    .global_content{
        display: block;
    }

    .number-box{
        width: 100%;
    }
    .key-box {
        margin-bottom: 12px;
    }

    .main_heading p {
        font-size: 15px;
        line-height: 25px;
    }

    .tabs_grid,
    .infrastructure_grid,
    .number-flex {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        display: grid;
    }

    .number-box h6 {
        height: 90px;
        width: 90px;
        font-size: 25px;
    }

    .tabs_grid__box {
        padding: 1rem;
    }

    .number-box h3 {
        font-size: 14px;
        margin-top: 7px;
    }

    .number-box p {
        font-size: 12px;
    }

    .tabs_grid__box p,
    .infrastructure_grid__box h6 {
        font-size: 12px;
    }

    .tabs_grid__box img,
    .infrastructure_grid__box img {
        width: 45px;
    }

    .my-tabs .nav-link {
        font-size: 14px;
        padding: 10px !important;
    }

    .my-tabs .nav {
        flex-wrap: wrap !important;
    }

    .banner_img img {
        height: 534px;
    }

    .direction_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .direction_box h3 {
        font-size: 18px;
    }

    .direction_box p {
        margin-top: 7px;
        font-size: 15px;
    }

    .cta_wrapper__content h6 {
        margin-top: 6px;
        font-size: 18px;
    }

    .cta_wrapper {
        padding: 30px 0;
    }

    .topNav,
    .myNav {
        padding-left: 12px;
        padding-right: 12px;
    }

    .topNav_content__left a {
        font-size: 12px;
    }

    .slick-next {
        right: 0 !important;
    }

    .slick-prev {
        left: 0 !important;
    }

    .why_img img {
        height: 320px;
    }

    .contact_wrapper__img img {
        height: auto;
    }

    .programmes_box__img img {
        height: 180px;
    }

    .programmes_box__content h3 {
        font-size: 20px;
    }

    .programmes_box__content p {
        font-size: 15px;
    }

    .programmes_box__content a {
        font-size: 16px;
        margin-top: 5px;
    }

    .about_img img {
        height: auto;
    }

    .team_box {
        flex-direction: column;
    }

    .team_box__img img {
        height: 270px;
    }

    .programmes_box {
        margin-bottom: 12px;
    }

    .team_box {
        margin: 0 4px;
    }

    .why_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .cta_wrapper__content h2 {
        font-size: 24px;
    }

    .cta_wrapper__content p {
        font-size: 15px;
        line-height: 25px;
        margin-top: 12px;
    }

    .center-box {
        margin: 0;
        margin-top: 0;
    }

    .global_wrapper {
        padding: 60px 0 5px 0;
    }

    .global_content {
        margin-top: 2rem !important;
    }

    .myBtn {
        margin-top: 1.2rem !important;
    }

    .banner_content {
        width: 95%;
    }

    .about_content {
        margin-top: 1rem;
    }

    .about_content p {
        margin-top: 5px;
        font-size: 14px;
    }

    .main_heading h2 {
        font-size: 24px;
    }

    .team_box__content {
        padding: 1rem;
    }

    .testimonials_box__img img {
        height: 70px;
        width: 70px;
    }

    .testimonials_box {
        padding: 1rem;
        margin: 0 7px;
    }

    .contact_form {
        padding: 1.2rem;

        margin-top: 1rem;
        position: inherit;
    }

    .blogs_box {
        margin-bottom: 20px;
    }

    .team_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .topNav p {
        font-size: 12px;
        padding: 5px;
    }

    .logo img {
        width: 65px;
    }

    .myNav.sticky .logo img {
        width: 50px;
    }

    .myNav {
        padding: 7px 0;
    }

    .mission-vision-box {
        padding: 1rem;
    }

    .mission-vision-box p {
        font-size: 14px;
        line-height: 24px;
    }

    .banner_content {
        margin-left: 0;
    }

    .banner_content h1 {
        font-size: 25px;
    }

    .banner_content p,
    .banner_content b {
        font-size: 14px;
    }



}

@media(max-width:576px) {


    .number-box h6 {
        height: 75px;
        width: 75px;
        font-size: 20px;
        border-radius: 10px;
    }

    .news {
        padding-left: 12px;
    }

    .blogs_box__content p {
        margin: 7px 0 !important;
        font-size: 13px;
    }

    .clients_box img {
        width: 80px;
    }

    .clients_wrapper {
        padding: 25px 0;
    }

    .team_box__content h3 {
        font-size: 20px;
    }

    .topNav {
        padding: 10px 0 !important;
    }

    .topNav_content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .offering_box h6 {
        font-size: 14px;
    }

    .offering_box img {
        width: 45px;
    }

    .offering_box {
        padding: 12px;
    }

    .exp-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .exp-grid-box img {
        width: 45px;
    }

    .exp-grid-box h3 {
        font-size: 20px;
    }

    .exp-grid-box p {
        margin-top: 6px;
        font-size: 14px;
    }

    .exp-grid-box {
        padding: 20px;
    }
}

.check-one{
    height: 280px;
}

.pathways_box {
    min-height: 350px;
}
.pathways_slider .slick-slide {
    margin: 0 15px;
}

/* Equal height for opportunities_box */
.opportunities_box {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee; /* optional border */
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Image fix on top */
.opportunities_box__image img {
    width: 100%;
    height: 250px; /* fix image height */
    object-fit: cover; /* crop karega but maintain karega design */
}

/* Content flexible */
.opportunities_box__content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Headings aur paragraph */
.opportunities_box__content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}


.opportunities_box__content ul {
    list-style-type: disc !important;
    margin: 10px 0 10px 20px !important; /* adds left space for bullets */
    padding-left: 20px !important;
}

.opportunities_box__content li {
    margin-bottom: 6px;
    line-height: 1.6;
    display: list-item !important; /* ensures bullets appear */
}

.hei-s{
    height: 267px !important;
}

.main-s{
    background-image: url(../images/icon/main-banner.webp);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
}

.team-box {
  border: 2px solid #0d2d62;   /* Border only */
  overflow: hidden;            /* Prevents stray white edges */
  background-color: #000; 
}


 .team-box img {
 height: 300px; 
  object-fit: cover;    /* crop nicely */
} 

.team-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-box .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #000;
}




/* carrer form */
/* Keep your theme; only small helpers for layout/clean look */
.sf_fieldset{border:1px solid #eee;border-radius:10px;padding:16px;margin:14px 0;background:#fff}
.sf_fieldset legend{font-weight:700;padding:0 8px}
.sf-grid{display:grid;gap:12px}
.sf-2{grid-template-columns:repeat(2,1fr)}
.sf-3{grid-template-columns:repeat(3,1fr)}
@media (max-width: 900px){.sf-2,.sf-3{grid-template-columns:1fr}}
.sf-inline{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.sf-stack{display:flex;flex-direction:column;gap:12px}
.sf-card{border:1px solid #f0f0f0;border-radius:8px;padding:12px;background:#fafafa;position:relative}
.sf-add{border:1px solid #ddd;background:#fff;padding:8px 12px;border-radius:6px;cursor:pointer;margin-top:8px}
.sf-remove{position:absolute;top:10px;right:10px;border:0;background:#fff;color:#666;padding:4px 8px;border-radius:6px;cursor:pointer}





/* Global Adjustments for Mobile */
@media (max-width: 768px) {
    .sf_fieldset {
        padding: 10px;
        margin: 10px 0;
    }

    .sf-grid {
        gap: 8px; /* Adjusting gap between form elements */
    }

    /* For 2-column grid on mobile */
    .sf-2 {
        grid-template-columns: 1fr;
    }

    /* For 3-column grid on mobile */
    .sf-3 {
        grid-template-columns: 1fr;
    }

    /* Stack cards for better layout */
    .sf-stack {
        gap: 8px;
    }

    .sf-card {
        padding: 10px;
        border: 1px solid #f0f0f0;
    }

    /* Smaller margin for buttons */
    .btn_submit, .sf-add {
        width: 100%; /* Ensure buttons are full-width on smaller screens */
        padding: 12px;
        margin-top: 12px;
    }

    /* Adjust form input fields to fit better */
    input[type="text"], input[type="email"], input[type="date"], input[type="tel"], input[type="number"], select {
        width: 100%;
        padding: 10px;
    }

    /* For better spacing between form elements */
    .form_group {
        margin-bottom: 10px;
    }
}

/* Smaller devices: 576px and below */
@media (max-width: 576px) {
    .sf_fieldset {
        padding: 8px;
    }

    .sf-grid {
        gap: 6px;
    }

    .sf-card {
        padding: 8px;
    }

    .sf-add {
        padding: 6px 10px;
    }

    .sf-remove {
        font-size: 12px;
        padding: 2px 6px;
    }

    .form_group input {
        font-size: 14px;
    }

    .contact_form h2 {
        font-size: 18px;
    }

    .contact_form p {
        font-size: 14px;
    }
     .contact_form
    {
        width: 100%;
        margin-right: 3%;
    }
}



