/* Reset and base styles */

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

body,
html {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

.apply-now-fixed {
    position: fixed;
    top: 50%;
    right: 2.5%;
    transform: rotate(-90deg) translateY(50%);
    transform-origin: right center;
    background-color: #c89f00;
    /* adjust to your mustard yellow */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image: url(/images/bg-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;
}

.hero::after {
    /* content: "";
    background-image: url(/images/fashion-image.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    bottom: 0;
    left: 3%;
    height: 600px;
    width: 600px;
    position: absolute;
    z-index: 3; */
    /* Add this */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
    background-color: #000;
    opacity: 0.7;
    /* adjust as needed */
    z-index: 1;
}

.hero>* {
    position: relative;
    z-index: 3;
    /* ensures content stays above the overlay */
}

.mobile-hero {
    display: none;
}

.left {
    margin-left: 20px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1 1 400px;
    color: white;
    min-width: 280px;
}

.text h1 {
    font-weight: 800;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    /* text-align: center; */
    color: #FFFFFF;
}

.highlight {
    color: #ffd639;
    font-weight: bold;
}

.badges {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 20px 100px;
    width: fit-content;
    clip-path: polygon(0% 0%, 20px 50%, 0% 100%, calc(100% - 0px) 100%, calc(100% - 50px) 50%, calc(100% - 0px) 0%);
    background: #bb8f31;
}


/* Right side form */

.right {
    flex: 0 0 480px;
    min-width: 280px;
    max-width: 100%;
}

.form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 3px;
    padding: 30px 30px;
    margin: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.form-card .logo {
    width: 140px;
    margin: 0 auto 20px;
    display: block;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
select {
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
}

input:focus,
select:focus {
    outline: none;
    border: 2px solid #1C2D5E;
}

input::placeholder {
    color: #666;
}

select {
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f7f7f7;
    border: none;
    border-radius: 8px;
    padding: 14px 40px 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    width: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23999" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M9.29 6.71a1 1 0 0 1 1.42 0L16 12l-5.29 5.29a1 1 0 1 1-1.42-1.42L13.17 12 9.29 8.12a1 1 0 0 1 0-1.41z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    cursor: pointer;
}

option {
    font-size: 11px;
}

select:invalid {
    color: #666;
}

.apply {
    background-color: #cc0000;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    font-variant: small-caps;
    width: 40%;
    margin: auto;
}

.terms {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    /* text-transform: lowercase; */
    color: #000000;
}

.terms a {
    color: #1C2D5E;
    text-decoration: underline;
}

.login {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    /* text-transform: lowercase; */
    color: #000;
}

.login a {
    color: #1C2D5E;
    text-decoration: underline;
}

.apply-side {
    position: absolute;
    top: 50%;
    right: 0;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: right top;
    background: #bb8f31;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    z-index: 3;
}


/* About Section */

.about-section {
    background: linear-gradient(to bottom, #1C2D5E 50%, #ffffff 50%);
    padding: 100px 20px;
}

.about-section .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
}

.text-content {
    flex: 1 1 50%;
    color: white;
    min-width: 280px;
}

.text-content h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #F5C764;
    margin-bottom: 20px;
}

.text-content p {
    font-weight: 400;
    font-size: clamp(12px, 1.3vw + 1px, 25px);
    line-height: 30px;
    letter-spacing: 0%;
    text-align: justify;
    color: #F5F5F5;
    margin-bottom: 20px;
}

.text-content strong {
    font-weight: 700;
}

.secondary {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px !important;
    letter-spacing: 0%;
    color: #3F4965 !important;
    margin-top: 80px;
}

.apply-btn {
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    font-variant: small-caps;
    background: #BB8F31;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.apply-btn span {
    margin-left: 8px;
}

.apply-btn:hover {
    background: #e0ac00;
}


/* Video Card */

.video-card {
    flex: 1 1 40%;
    max-width: 400px;
    min-width: 280px;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.video-wrapperr {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.thumbnail {
    width: 100%;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

video {
    width: 100%;
    /* ensures it fills container */
    display: none;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* course css */

.course-section {
    position: relative;
    background-image: url(/images/course.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    z-index: 0;
}

.course-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F5F5F5;
    /* Adjust opacity here */
    z-index: 1;
    opacity: 0.9;
}

.course-section>* {
    position: relative;
    z-index: 2;
}

.course-section .container {
    display: block;
}

.course-section h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C2D5E;
}

.course-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.left-panel {
    width: 45%;
}

.right-panel {
    width: 55%;
}

.course-list {
    list-style: none;
    padding: 0;
}

.course-list li {
    padding: 12px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #FFFFFF;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0%;
    color: #1C2D5E;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-list li.active,
.course-list li:hover {
    background: #bb8f31;
    color: white;
}

.course-title {
    color: #BB8F31;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0%;
    margin-bottom: 10px;
}

.right-panel .duration {
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0%;
    color: #2A3967;
}

.duration strong {
    font-weight: 700;
}

.right-panel h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #2A3967;
    margin-top: 20px;
}

.overview {
    margin-top: 10px;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #2A3967;
}

.career-outcomes ul {
    columns: 2;
    list-style-type: disc;
    margin-top: 10px;
    padding-left: 20px;
}

ul li::marker {
    color: #BB8F31;
    /* Change to your desired color */
}

.career-outcomes ul li {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #2A3967;
}

.right-panel .apply-btn {
    background: #1C2D5E;
    color: #BB8F31;
    margin-top: 20px;
    display: flex;
    width: max-content;
    text-decoration: none;
}


/* achivement css */

.achievements-section {
    padding: 100px 0;
}

.achievements-top {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 50px;
}

.achievements-top h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C2D5E;
}

.achievements-top p {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C2D5E;
    text-align: left;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #1C2D5E;
    color: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card img {
    height: 108px;
    display: flex;
    margin: 20px auto;
}

.card h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    height: 40px;
}

.card p {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}


/* why us section */


/* Why Us Section */

.why-us {
    background: #c59d43;
    color: white;
    padding: 60px 20px;
}

.facilities-top {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.why-us h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    margin: 0;
}

.why-us p {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    max-width: 700px;
    margin: 0;
}


/* Stats Section */

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin-bottom: 70px;
    text-align: center;
}

.stat {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    /* text-transform: lowercase; */
}

.stat img {
    height: 112px;
    width: 112px;
    margin-bottom: 20px;
}

.stat span {
    display: block;
    font-weight: 700;
    font-size: 50px;
    /* text-transform: lowercase; */
}

.brandSlider-section {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding: 0 16px;
}

.brandSlider-wrapper {
    overflow: hidden;
    position: relative;
}

.brandSlider-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4, 1.5, .6, 1);
    gap: 32px;
    padding-left: 16px;
    padding-bottom: 24px;
}

.brandSlider-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 110px;
    max-width: 220px;
    max-height: 120px;
    padding: 16px 20px;
    transition: box-shadow 0.2s;
}

.brandSlider-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.brandSlider-dots {
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    user-select: none;
}

.brandSlider-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 7px;
    border-radius: 50%;
    background: #e1e7ef;
    transition: background 0.3s, box-shadow 0.3s;
    vertical-align: middle;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 2px solid #e1e7ef;
}

.brandSlider-dot.brandSlider-dot-active {
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(201, 165, 59, 0.15);
}

@media (max-width: 1100px) {
    .brandSlider-card {
        min-width: 140px;
        min-height: 70px;
        max-width: 160px;
        max-height: 80px;
        padding: 10px 8px;
    }
    .brandSlider-card img {
        max-height: 38px;
    }
    .brandSlider-carousel {
        gap: 18px;
    }
}

@media (max-width: 800px) {
    .brandSlider-card {
        min-width: 90px;
        min-height: 50px;
        max-width: 100px;
        max-height: 60px;
        padding: 6px 4px;
    }
    .brandSlider-card img {
        max-height: 24px;
    }
    .brandSlider-carousel {
        gap: 8px;
    }
}


/* Facilities Section */

.facilities-carousel-widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.facilities-carousel-widget {
    padding: 100px 0;
}

.facilities-carousel-main-container {
    margin: 0 auto;
}

.facilities-carousel-header-section {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.facilities-carousel-main-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C2D5E;
    margin-bottom: 16px;
}

.facilities-carousel-description-text {
    color: #1C2D5E;
    max-width: 600px;
    float: right;
    text-align: left;
    margin-top: -60px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

.facilities-carousel-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 90px;
}

.facilities-carousel-cards-container {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    width: fit-content;
}

.facilities-carousel-single-card {
    min-width: 380px;
    max-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}


/* .facilities-carousel-single-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
} */

.facilities-carousel-card-image-wrapper {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.facilities-carousel-card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.facilities-carousel-card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #1C2D5E;
    margin-top: 10px;
}

.facilities-carousel-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}


/* Custom Scrollbar Styles */

.facilities-carousel-scrollbar-wrapper {
    max-width: 1200px;
    margin: 50px auto 0;
}

.facilities-carousel-scrollbar-rail {
    width: 100%;
    height: 5px;
    background: #EDEDED;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.facilities-carousel-scrollbar-handle {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0, #667eea);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: grab;
    transition: background 0.2s ease;
    min-width: 40px;
    width: 200px !important;
}

.facilities-carousel-scrollbar-handle:hover {
    background: linear-gradient(90deg, #1e3f73, #5a6fd8);
}

.facilities-carousel-scrollbar-handle:active {
    cursor: grabbing;
    background: linear-gradient(90deg, #1a3566, #4d5cb8);
}

.facilities-carousel-scrollbar-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.4);
}


/* Navigation arrows */

.facilities-carousel-nav-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px;
}

.facilities-carousel-nav-button {
    background: #2c5aa0;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.facilities-carousel-nav-button:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.facilities-carousel-nav-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .facilities-carousel-single-card {
        min-width: 260px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .facilities-carousel-description-text {
        float: none;
        text-align: left;
        margin-top: 0;
        max-width: 100%;
        font-size: 15px;
    }
    .facilities-carousel-single-card {
        min-width: 240px;
        max-width: 280px;
    }
    .facilities-carousel-card-image-wrapper {
        height: 160px;
    }
    .facilities-carousel-scrollbar-wrapper {
        padding: 0 10px;
    }
    .facilities-carousel-nav-controls {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .facilities-carousel-single-card {
        min-width: 220px;
        max-width: 260px;
    }
}


/* testimonials section */

.testimonials {
    background-color: #1C2D5E;
}


/* .stuTesti_section {
  padding: 100px 0 0;
}

.stuTesti_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.stuTesti_title {
  color: #fff;
  font-weight: 700;
  font-size: 45px;
  line-height: 100%;
  letter-spacing: 0%;

}

.stuTesti_desc {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  max-width: 540px;
}

.stuTesti_sliderWrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 40px auto;
}

.stuTesti_slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4, 1.5, .6, 1);
  gap: 32px;
  will-change: transform;
}

.stuTesti_card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  min-width: max-content;
  max-width: 420px;
  flex: 0 0 32%;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  position: relative;
}

.stuTesti_img {
  height: 320px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.stuTesti_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 320px;
}

.stuTesti_content img {
  height: 60px;
  width: 60px;
}

.stuTesti_quoteIcon {
  font-size: 2.2rem;
  color: #c9a53b;
  font-weight: bold;
  margin-bottom: 0.1em;
  line-height: 1;
  display: inline-block;
}

.stuTesti_text {
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #3F4965;
  margin-bottom: 20px;
}

.stuTesti_author {
  font-weight: bold;
  color: #232b4d;
  font-size: 1.07rem;
  margin-bottom: 0.1em;
}

.stuTesti_meta {
  font-size: 0.97rem;
  color: #555;
} */


/* Dots */


/* .stuTesti_dots {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 100px;
}

.stuTesti_dot {
  display: inline-block;
  width: 42px;
  height: 6px;
  margin: 0 5px;
  border-radius: 3px;
  background: #e1e7ef;
  transition: background 0.3s, width 0.3s;
  vertical-align: middle;
}

.stuTesti_dot.stuTesti_active {
  background: #c9a53b;
  width: 60px;
} */


/* @media (max-width: 1200px) {
  .stuTesti_card {
    min-width: 320px;
  }
} */


/* @media (max-width: 900px) {
  .stuTesti_card {
    min-width: 260px;
    padding: 18px 8px;
  }

  .stuTesti_img {
    height: 150px;
  }

  .stuTesti_title {
    font-size: 2rem;
  }
} */


/* @media (max-width: 700px) {
  .stuTesti_header {
    flex-direction: column;
    align-items: center;
  }

  .stuTesti_desc {
    display: none;
  }

  .stuTesti_card {
    min-width: 90vw;
    max-width: 98vw;
  }

  .stuTesti_slider {
    gap: 16px;
  }

  .stuTesti_title {
    font-size: 20px;
    text-align: center;
  }

} */

.stuTesti_section {
    max-width: none;
    margin: 0;
    padding: 100px 0 100px 200px;
}

.stuTesti_header {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 220px;
}

.stuTesti_title {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
}

.stuTesti_desc {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: 540px;
}

.stuTesti_sliderWrapper {
    position: relative;
    overflow: hidden;
    margin-left: -200px;
    padding-left: 200px;
}

.stuTesti_slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(.4, 1.5, .6, 1);
    gap: 32px;
    will-change: transform;
    padding-right: 32px;
}

.stuTesti_card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    min-width: 620px;
    max-width: 400px;
    flex: 0 0 calc(50% - 22px);
    padding: 20px 20px 0;
    display: flex;
    gap: 22px;
    margin-bottom: 18px;
    position: relative;
    align-items: flex-end;
}

.stuTesti_img {
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.stuTesti_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stuTesti_quoteIcon {
    font-size: 5rem;
    color: #c9a53b;
    font-weight: bold;
    margin-bottom: 0.1em;
    line-height: 1;
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scaleX(-1);
}

.stuTesti_text {
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #3F4965;
    margin-top: 50px;
    margin-bottom: 20px;
}

.stuTesti_author {
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 0.1em;
    color: #3F4965;
}

.stuTesti_meta {
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 30px;
    color: #3F4965;
}


/* Dots */

.stuTesti_dots {
    text-align: center;
    margin-top: 15px;
}

.stuTesti_dot {
    display: inline-block;
    width: 42px;
    height: 6px;
    margin: 0 5px;
    border-radius: 3px;
    background: #e1e7ef;
    transition: background 0.3s, width 0.3s;
    vertical-align: middle;
}

.stuTesti_dot.stuTesti_active {
    background: #c9a53b;
    width: 60px;
}

@media (max-width: 1400px) {
    .stuTesti_card {
        flex: 0 0 calc(100% - 16px);
    }
}

@media (max-width: 1390px) {
    .stuTesti_header {
        gap: 110px;
    }
}

@media (max-width: 1290px) {
    .stuTesti_header {
        gap: 50px;
    }
}

@media (max-width: 1100px) {
    .stuTesti_card {
        min-width: 590px;
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .stuTesti_card {
        min-width: 260px;
        padding: 18px 8px;
        flex: 0 0 calc(100% - 16px);
    }
    .stuTesti_img {
        width: 70px;
        height: 90px;
    }
    .stuTesti_title {
        font-size: 20px;
        margin: 0 auto;
    }
    .facilities-carousel-scrollbar-wrapper {
        margin: 20px auto 0;
    }
    .stuTesti_desc {
        display: none;
    }
    .stuTesti_card {
        align-items: center;
    }
    .stuTesti_img {
        width: 111px;
        height: 141px;
    }
}

@media (max-width: 700px) {
    .stuTesti_section {
        padding: 48px 16px 0 16px;
    }
    .stuTesti_sliderWrapper {
        margin-left: 0;
        padding-left: 0;
        padding-right: 16px;
    }
    .stuTesti_slider {
        padding-right: 16px;
    }
    .stuTesti_header {
        flex-direction: column;
        align-items: flex-start;
    }
    .stuTesti_desc {
        margin-left: 0;
    }
    .stuTesti_card {
        min-width: 90vw;
        max-width: 98vw;
    }
    .stuTesti_slider {
        gap: 16px;
    }
}


/* apply-css */

.apply-section {
    padding: 100px 0;
}

.apply-section h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C2D5E;
    justify-content: center;
    display: flex;
}

.apply-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.apply-text {
    box-shadow: 0px 25px 25px 0px #00000033;
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.apply-1 {
    position: relative;
}

.apply-2 {
    position: relative;
}

.apply-3 {
    position: relative;
}

.apply-4 {
    position: relative;
}


/* .apply-1::after {
  content: "1";
  top: 20%;
  left: -22%;
  position: absolute;
  font-size: 150px;
  color: #1C2D5E;
} */

.apply-1::before {
    content: "1";
    position: absolute;
    top: 20%;
    left: -20%;
    font-size: 150px;
    color: #1C2D5E;
    z-index: 0;
}


/* Polygonal arrow */

.apply-1::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #1C2D5E;
    z-index: 1;
}

.apply-2::before {
    content: "2";
    position: absolute;
    top: 20%;
    left: -20%;
    font-size: 150px;
    color: #930083;
    z-index: 0;
}


/* Polygonal arrow */

.apply-2::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #930083;
    z-index: 1;
}

.apply-3::before {
    content: "3";
    position: absolute;
    top: 20%;
    left: -20%;
    font-size: 150px;
    color: #2E3386;
    z-index: 0;
}


/* Polygonal arrow */

.apply-3::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #2E3386;
    z-index: 1;
}

.apply-4::before {
    content: "4";
    position: absolute;
    top: 20%;
    left: -20%;
    font-size: 150px;
    color: #C81A54;
    z-index: 0;
}


/* Polygonal arrow */


/* .apply-4::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #C81A54;
  z-index: 1;
} */

.apply-text img {
    width: 100px;
    height: 100px;
    margin: 20px auto;
}

.apply-text h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    max-width: 194px;
    margin: 0 auto;
    height: 50px;
}

.apply-1 h4 {
    color: #1B2C5B;
}

.apply-2 h4 {
    color: #900081;
}

.apply-3 h4 {
    color: #2C3181;
}

.apply-4 h4 {
    color: #C81B54;
}

.apply-text p {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto;
    max-width: 194px;
    color: #3F4965;
}

.apply-text a {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    width: 164px;
    overflow-wrap: break-word;
    color: #3F4965;
    text-decoration: underline;
}

.footer {
    background-color: #1C2D5E;
    color: white;
    padding: 40px 20px 0;
    border-bottom: 16px solid #BB8F31;
}

.footer-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
    padding-top: 50px;
    border-top: 1px solid #fff;
}

.footer-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left .logo {
    max-width: 200px;
    height: auto;
}

.contact-text p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.contact-left {
    width: 65%;
}

.contact-left strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #F9CA66;
}

.contact-no p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-no a {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-form {
    /* Match the footer background */
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-form input,
.footer-form select {
    padding: 10px;
    background-color: transparent;
    border: 1px solid #fff;
    color: white;
    border-radius: 3px;
    font-size: 14px;
}

.footer-form input::placeholder,
.footer-form select {
    color: white;
    background-color: transparent;
}

.footer-form input:focus,
.footer-form select:focus {
    border-color: #bb8f31;
}

.footer-form button {
    background-color: #bb8f31;
    color: white;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
}

.footer-form select {
    color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292.4' height='292.4'%3E%3Cpath fill='white' d='M287 69.4l-14.2-14.3L146.2 181.8 19.6 55 5.4 69.4l140.8 140.8c5.5 5.5 14.3 5.5 19.8 0L287 69.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.footer-form select option {
    color: black;
    /* Options text inside dropdown */
}

.footer-link strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #F9CA66;
}

.footer-link p {
    margin-bottom: 15px;
}

.footer-center-link {
    flex: 2;
    display: flex;
    justify-content: space-between;
    min-width: 300px;
    margin-bottom: 20px;
    gap: 70px;
}

.footer-link ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 6px 0;
    font-size: 14px;
    cursor: pointer;
}

.footer-link li a {
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
}

.footer-bottom p {
    text-align: center;
    margin-top: 50px;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    background-color: white;
    color: #1C2D5E;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #f5a623;
    color: #0d1a3b;
}

.footer-hashtag h2 {
    text-align: center;
    font-weight: 800;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #BB8F31;
    margin-top: 40px;
}

.mobile-course {
    display: none;
}

.footer-accordion {
    display: none;
}


/* Navigation Bar */

.nav {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.nav .logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav .apply-now {
    margin-left: auto;
}

.nav .apply-btn {
    background: #2ab72a;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(187, 143, 49, 0.08);
}

.nav .apply-btn:hover {
    background: #e0ac00;
}


/* Responsive Breakpoints */


/* Medium devices (tablets) */

@media (max-width: 1240px) {
    .hero {
        padding: 30px;
    }
    .hero::after {
        width: 450px;
        height: 450px;
    }
    .text h1 {
        font-size: 40px;
    }
    .left {
        flex: 1 1 350px;
    }
    .badges {
        margin-left: 50px;
    }
    .badge {
        padding: 18px;
        font-size: 18px;
    }
    .right {
        flex: 0 0 310px;
    }
    .footer-hashtag h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero::after {
        display: none;
    }
    .badges {
        display: none;
    }
    .left {
        margin-left: 0;
    }
    .footer-hashtag h2 {
        font-size: 50px;
    }
}

@media (max-width: 801px) {
    .hero {
        padding: 40px 20px;
    }
    .content {
        flex-direction: column;
        justify-content: center;
    }
    .left {
        flex: 0;
    }
    .course-content {
        flex-direction: column;
    }
    .left-panel {
        width: 100%;
    }
    .right-panel {
        width: 100%;
    }
    .achievements-top {
        flex-direction: column;
        gap: 20px;
    }
    .facilities-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .stats {
        gap: 30px;
        margin-bottom: 40px;
    }
    .stat img {
        width: 52px;
        height: 52px;
    }
    .stat {
        font-size: 12px;
    }
    .stat span {
        font-size: 25px;
    }
    .footer-hashtag h2 {
        font-size: 28px;
        margin-top: 20px;
    }
    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* optional, adds spacing between cards */
    }
    .card {
        max-width: 170px;
    }
    .about-section {
        display: none;
    }
    .mobile-about {
        display: block !important;
    }
    .about-section {
        padding: 40px 15px;
    }
    .text-content h2 {
        font-size: 25px;
        text-align: center;
    }
    .text-content p {
        font-size: 12px;
        line-height: 20px !important;
        text-align: center;
    }
    .secondary {
        margin-top: 40px;
        margin-bottom: 20px !important;
    }
    .apply-btn {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    .course-section {
        padding: 40px 15px;
    }
    .course-section h2 {
        font-size: 25px;
    }
    .career-outcomes ul {
        columns: 1;
    }
    .right-panel .apply-btn {
        justify-content: center;
    }
    .achievements-section {
        padding: 40px 15px;
    }
    .achievements-top {
        margin-bottom: 30px;
    }
    .achievements-top h2 {
        font-size: 22px;
        text-align: center;
    }
    .achievements-top p {
        font-size: 15px;
        text-align: center;
    }
    .why-us h2 {
        font-size: 20px;
        text-align: center;
    }
    .why-us p {
        text-align: center;
        font-size: 14px;
    }
    .apply-section h2 {
        font-size: 20px;
    }
    .apply-text h4 {
        max-width: 150px;
    }
    .footer-left {
        justify-content: center;
    }
    .contact-left {
        width: 100%;
        text-align: center;
    }
    .footer-center {
        gap: 40px;
        justify-content: center;
        margin-bottom: 20px;
    }
    .footer-link p {
        text-align: left;
    }
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    .mobile-icon {
        display: flex !important;
        justify-content: center;
    }
    .social-icons {
        display: none;
    }
    .footer-bottom {
        margin-top: 40px;
    }
    .footer-bottom p {
        margin-top: 20px;
    }
    .apply-now-fixed {
        display: none;
    }
    .contact-text p {
        font-size: 14px;
        text-align: left;
    }
    .contact-detail {
        display: none;
    }
    .contact-no p {
        margin-top: 10px;
    }
    .contact-no a {
        font-size: 14px;
    }
    .card img {
        height: 80px;
    }
    .card p {
        font-size: 14px;
    }
    .card h3 {
        font-size: 15px;
        height: 50px;
    }
    .facilities-carousel-widget {
        padding: 50px 16px;
    }
    .stuTesti_section {
        padding: 50px 16px;
    }
    .stuTesti_dots {
        margin-bottom: 0;
    }
    .facilities-carousel-main-title {
        font-size: 20px;
    }
    .facilities-carousel-slider-viewport {
        margin-top: 40px;
    }
    .video-card {
        margin: 0 auto;
    }
    .apply-1::after {
        content: "";
        position: absolute;
        top: 100%;
        /* position below the element */
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid #1C2D5E;
        /* dark blue like image */
        z-index: 1;
    }
    .apply-2::after {
        content: "";
        position: absolute;
        top: 100%;
        /* position below the element */
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid #930083;
        /* dark blue like image */
        z-index: 1;
    }
    .apply-3::after {
        content: "";
        position: absolute;
        top: 100%;
        /* position below the element */
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid #2E3386;
        /* dark blue like image */
        z-index: 1;
    }
    .footer-link ul {
        text-align: center;
    }
    .stuTesti_author {
        font-size: 12px;
    }
    .stuTesti_meta {
        font-size: 12px;
    }
    .stuTesti_text {
        font-size: 14px;
        line-height: 100%;
    }
    ul.course-list {
        display: flex;
        overflow: scroll;
    }
    .course-list span {
        display: none;
    }
    .course-list li {
        font-size: 15px;
    }
    .desktop-h1 {
        display: none;
    }
    .mobile-hero {
        display: block;
    }
    .mobile-hero h3 {
        font-weight: 700;
        font-size: 25px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        margin: 30px auto;
    }
    .mobile-hero p {
        font-weight: 700;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        color: #fff;
    }
    .mobile-hero p span {
        color: #F5C96A;
    }
    .main-title {
        text-align: center;
        padding: 20px;
    }
    .main-title h1 {
        font-weight: 700;
        font-size: 25px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #1C2D5E;
    }
    .tabs {
        display: flex;
        box-shadow: 0px 4px 4px 0px #00000021;
        max-width: max-content;
        margin: 20px auto;
    }
    .tab {
        flex: 1;
        padding: 18px 30px;
        background: #fff;
        border: none;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        transition: all 0.2s ease;
        position: relative;
        color: #3F4965;
        border-radius: 6px;
    }
    .tab.active {
        background: #BB8F31;
        color: #FFFFFF;
        font-weight: 600;
    }
    /* .tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #1976d2;
  } */
    .tab:hover:not(.active) {
        background: #e9ecef;
        color: #495057;
    }
    .tab-content {
        display: none;
    }
    .tab-content.active {
        display: block;
    }
    .accordion-item {
        border-bottom: 1px solid #e9ecef;
        padding: 20px 0;
    }
    /* .accordion-item:last-child {
    border-bottom: none;
  } */
    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        background: white;
        transition: background-color 0.2s;
    }
    .accordion-header:hover {
        background: #f8f9fa;
    }
    /* .accordion-header.active {
    background: #e3f2fd;
  } */
    .accordion-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #1C2D5E;
        max-width: 80%;
    }
    .toggle-btn {
        width: 32px;
        height: 32px;
        border: 1px solid #1C2D5E;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #1C2D5E;
        cursor: pointer;
        transition: all 0.2s;
    }
    .toggle-btn:hover {
        border-color: #1976d2;
        color: #1976d2;
    }
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: white;
    }
    .accordion-item.expanded .accordion-content {
        max-height: 1200px;
    }
    /* .content-body {
    padding: 0 20px 20px 20px;
  } */
    .duration {
        font-weight: 400;
        font-size: 14px;
        line-height: 40px;
        letter-spacing: 0%;
        color: #2A3967;
        margin-bottom: 16px;
    }
    .duration span {
        font-weight: 700;
    }
    .section-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0%;
        margin-bottom: 8px;
        color: #2A3967;
    }
    .section-text {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        margin-bottom: 16px;
        color: #2A3967;
    }
    .career-list {
        list-style: none;
        margin-bottom: 20px;
    }
    .career-item {
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0%;
        color: #2A3967;
        padding: 3px 0;
        padding-left: 12px;
        position: relative;
    }
    .career-item::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #BB8F31;
        font-size: 15px;
    }
    .apply-btnn {
        width: 100%;
        background: #1C2D5E;
        color: #EEB851;
        border: none;
        padding: 12px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background-color 0.2s;
    }
    .apply-btn:hover {
        background: #1565c0;
    }
    .info-icon {
        width: 16px;
        height: 16px;
        border: 1px solid #dee2e6;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #6c757d;
        flex-shrink: 0;
    }
    .mobile-course {
        display: block;
        margin: 0 15px;
    }
    .desktop-course {
        display: none;
    }
    .footer-link {
        display: block;
    }
    .footer-accordion {
        max-width: 400px;
        display: block;
    }
    .footer-accordion-item {
        margin-bottom: 20px;
    }
    .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: #00000033;
    }
    .footer-accordion-header:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 10px;
    }
    .footer-accordion-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #F9CA66;
    }
    .footer-accordion-icon {
        font-size: 20px;
        font-weight: bold;
        color: #F9CA66;
        transition: transform 0.3s ease;
        width: 20px;
        text-align: center;
    }
    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .footer-accordion-content.expanded {
        max-height: 500px;
    }
    .footer-accordion-list {
        padding: 0 0 16px 16px;
        list-style: none;
        background: #00000033;
    }
    .footer-accordion-list li {
        padding: 8px 0;
        font-weight: 700;
        font-size: 12px;
        line-height: 25px;
        letter-spacing: 0%;
        text-transform: capitalize;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .stuTesti_quoteIcon {
        font-size: 30px;
    }
}

.mobile-about {
    display: none;
}

.mobile-icon {
    display: none;
}

#stuTesti_slider {
    cursor: grab;
}

#stuTesti_slider:active {
    cursor: grabbing;
}

.facilities-carousel-nav-controls {
    display: none;
}

[data-fcw-container="viewport"].dragging {
    cursor: grabbing;
    user-select: none;
}

[data-fcw-container="viewport"] {
    cursor: grab;
}

.career-font {
    font-size: 1.5rem !important;
    font-style: italic;
    margin: 20px 0;
}

.footer-link {
    width: 100% !important;
}

@media (min-width: 769px) {
    .career-font {
        font-size: 2.5rem !important;
    }
    .footer-link {
        width: 40% !important;
    }
}