/* ========================================
   Adamas University Website Styles
   ======================================== */

/* ========== CSS Variables - Brand Colors ========== */
:root {
    /* Primary Brand Colors from Logo */
    --primary-blue: #1e5ba8;
    --primary-blue-light: #2c6bb3;
    --primary-blue-dark: #164a8a;
    --primary-green: #7ab51d;
    --primary-green-light: #8bc53f;
    --primary-green-dark: #669910;

    /* Background Colors (Specified) */
    --bg-beige: #d9c89e;
    --bg-brown: #9e5330;
    --bg-brown-dark: #7d4226;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Libre Baskerville', serif;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== Top Contact Bar ========== */
.top-contact-bar {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.top-contact-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-contact-bar .contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.top-contact-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact-bar .contact-item i {
    color: var(--primary-green-light);
}

.top-contact-bar a {
    color: var(--white);
}

.top-contact-bar a:hover {
    color: var(--primary-green-light);
}

/* ========== Navigation Bar ========== */
.main-navbar {
    background: linear-gradient(to right, var(--bg-beige), var(--bg-brown));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0px;
    transition: var(--transition-smooth);
    position: relative;
}

.main-navbar.sticky {
    position: fixed;
    top: 41px;
    /* Height of top contact bar */
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand img {
    height: 100px;
    width: auto;
    transition: var(--transition-smooth);
    position: absolute;
    top: 0;
    z-index: 99;
}

.main-navbar.sticky .navbar-brand img {
    height: 65px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    /* color: var(--gray-dark); */
    padding: 20px 18px;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Dropdown Styles */
.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 25px;
    color: var(--gray-dark);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: linear-gradient(to right, var(--primary-blue-light), var(--primary-blue));
    color: var(--white);
}

/* Apply Now Button */
.btn-apply {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(122, 181, 29, 0.3);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-apply:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 181, 29, 0.4);
    color: var(--white);
}

/* Hamburger Menu Customization */
.navbar-toggler {
    border: 2px solid #fff;
    /* border: 2px solid var(--primary-blue); */
    padding: 8px 12px;
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 91, 168, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Banner Wrapper */
.hero-form-wrapper {
    position: relative;
}

/* ========== Hero Banner / Carousel ========== */
.hero-banner {
    position: relative;
    background: url(../images/banner-1.png) center center no-repeat;
    /* background: linear-gradient(135deg, var(--bg-brown) 0%, var(--bg-brown-dark) 100%); */
    min-height: 600px;
    /* display: flex; */
    align-items: center;
    overflow: hidden;
    padding: 40px 0px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d9c89e" fill-opacity="0.15" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 80px 60px 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 2.6rem;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #fff;
    /* color: rgba(217, 200, 158, 0.9); */
    line-height: 1.7;
    max-width: 80%;
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(30, 91, 168, 0.35);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 91, 168, 0.45);
    color: var(--white);
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Floating Form */
.floating-form {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    width: 420px;
    max-width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 15;
    animation: slideInRight 1s ease;
}

.floating-form .container {
    padding: 0;
    max-width: 100%;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.floating-form h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.floating-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 10px;
    margin-bottom: 0px;
    transition: var(--transition-fast);
    background: var(--white);
}

.floating-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(30, 91, 168, 0.15);
    outline: none;
}

.floating-form .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(122, 181, 29, 0.35);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.floating-form .btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 181, 29, 0.45);
}

/* Carousel Specific Styles */
.carousel-item {
    min-height: 600px;
    transition: transform 0.8s ease-in-out;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 25px;
    z-index: 3;
    left: 20px;
    justify-content: center;
    margin: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 6px;
    transition: var(--transition-smooth);
}

.carousel-indicators button.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    width: 35px;
    border-radius: 6px;
}

/* Carousel Controls - Positioned at container edges */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(30, 91, 168, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
    backdrop-filter: blur(4px);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(30, 91, 168, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 22px;
    height: 22px;
}

/* ========== Inner Banner ========== */
.inner-banner {
    position: relative;
    background: linear-gradient(135deg, var(--bg-brown) 0%, var(--bg-brown-dark) 100%);
    padding: 100px 0 60px;
    color: var(--white);
    overflow: hidden;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d9c89e" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.inner-banner h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 14px;
    color: var(--bg-beige);
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--primary-green-light);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--primary-green-light);
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    content: '→';
    color: var(--bg-beige);
}

/* Inner Banner with Form (Program Pages) */
.inner-banner-with-form {
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.inner-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 40px 60px 40px 20px;
    animation: fadeInUp 0.8s ease;
}

.inner-banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.inner-banner-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(217, 200, 158, 0.95);
    line-height: 1.7;
    max-width: 95%;
}

/* ========== Content Sections ========== */
.content-section {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Program Cards ========== */
.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.program-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.program-card-text {
    color: var(--gray-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-smooth);
    align-self: flex-start;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateX(5px);
    color: var(--white);
}

/* ========== Footer ========== */
.main-footer {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    background-color: #fff;
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: #FFF;
    /* color: var(--bg-beige); */
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFF;
    /* color: var(--bg-beige); */
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-green-light);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    /* color: var(--bg-beige); */
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-green-light);
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    /* margin-top: 40px; */
    text-align: center;
    font-size: 14px;
    color: #FFF;
    /* color: var(--bg-beige); */
}

/* ========== Scroll to Top Button ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(122, 181, 29, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(122, 181, 29, 0.4);
}

/* ========== Modal Styles ========== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

/* ========== Responsive Design ========== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 12px 20px;
    }

    .main-navbar {
        padding: 10px 0px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-banner {
        min-height: 550px;
    }

    .carousel-item {
        min-height: 550px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .floating-form {
        position: static;
        transform: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
        background: #f8f9fa;
        padding: 50px 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        border: none;
        animation: none;
    }

    .floating-form .container {
        padding-right: var(--bs-gutter-x, .75rem);
        padding-left: var(--bs-gutter-x, .75rem);
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .floating-form h3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .carousel-control-next {
        right: 25px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .inner-banner-with-form {
        min-height: 480px;
        padding: 60px 0;
    }

    .inner-banner-content {
        padding: 30px 20px;
    }

    .inner-banner-content h1 {
        font-size: 2.3rem;
    }

    .inner-banner-content p {
        font-size: 1.05rem;
        max-width: 100%;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .top-contact-bar .contact-info {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .navbar-toggler {
        order: 3;
    }

    .navbar-brand {
        order: 1;
    }

    .navbar-collapse {
        order: 4;
    }

    .btn-apply-mobile {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .hero-banner {
        min-height: 500px;
    }

    .carousel-item {
        min-height: 500px;
    }

    .hero-content {
        padding: 30px 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 14px 30px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .carousel-indicators button.active {
        width: 28px;
    }

    .floating-form {
        padding: 40px 0;
    }

    .floating-form .container {
        max-width: 100%;
    }

    .floating-form .form-control {
        padding: 12px 15px;
        margin-bottom: 14px;
        font-size: 14px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .inner-banner {
        padding: 80px 0 50px;
    }

    .inner-banner h1 {
        font-size: 2rem;
    }

    .inner-banner-with-form {
        min-height: 420px;
        padding: 50px 0;
    }

    .inner-banner-content {
        text-align: center;
        padding: 20px 15px;
    }

    .inner-banner-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .inner-banner-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .content-section {
        padding: 60px 0;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 14px;
    }

    .program-card-body {
        padding: 20px;
    }

    .footer-title {
        margin-top: 30px;
    }
}

/* ========== Utility Classes ========== */
.bg-beige {
    background-color: var(--bg-beige);
}

.bg-brown {
    background-color: var(--bg-brown);
}

.text-primary-blue {
    color: var(--primary-blue);
}

.text-primary-green {
    color: var(--primary-green);
}

/* ========== University Intro Section ========== */
.uni-intro-section {
    padding: 50px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    /* Premium Soft Mesh Gradient Background */
    background-image:
        radial-gradient(at 0% 0%, rgba(30, 91, 168, 0.05) 0%, transparent 50%),
        radial-gradient(at 100% 0%, rgba(122, 181, 29, 0.05) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(30, 91, 168, 0.05) 0%, transparent 50%),
        radial-gradient(at 0% 100%, rgba(122, 181, 29, 0.05) 0%, transparent 50%);
}

.uni-intro-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 181, 29, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(30, 91, 168, 0.1);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-title {
    font-size: 35px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.intro-subtitle {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 600;
    font-style: italic;
    font-family: var(--font-body);
}

.intro-description p {
    font-size: 17px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.intro-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.intro-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border-top: 5px solid var(--primary-green);
    border-right: 5px solid var(--primary-green);
    z-index: -1;
    border-radius: 20px;
}

.intro-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border-bottom: 5px solid var(--primary-blue);
    border-left: 5px solid var(--primary-blue);
    z-index: -1;
    border-radius: 20px;
}

.intro-img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    width: 100%;
}

.intro-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .uni-intro-section {
        padding: 60px 0;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .intro-subtitle {
        font-size: 1.4rem;
    }

    .intro-image-wrapper {
        margin-top: 50px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .intro-title {
        font-size: 2rem;
    }

    .intro-subtitle {
        font-size: 1.2rem;
    }

    .intro-description p {
        font-size: 1rem;
        text-align: left;
    }
}

/* ========== Benefits Section - Professional Excellence Redesign ========== */
.benefits-section {
    background-color: #ffffff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.benefit-premium-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-premium-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary-blue);
    transition: all 0.4s ease;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.benefit-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(30, 91, 168, 0.1);
}

.benefit-premium-card:hover::after {
    height: 40%;
}

.benefit-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(30, 91, 168, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 91, 168, 0.05);
}

.benefit-icon-box i {
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.benefit-premium-card:hover .benefit-icon-box {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.benefit-premium-card:hover .benefit-icon-box i {
    color: var(--white);
}

.benefit-premium-card h4 {
    font-size: 1.1rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.benefit-premium-card p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 991px) {
    .benefits-section {
        padding: 80px 0;
    }

    .benefit-premium-card {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefit-premium-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .benefit-icon-box {
        width: 55px;
        height: 55px;
        margin-bottom: 25px;
    }
}


.bento-item:hover .benefit-icon {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

.bento-item:hover .benefit-icon i {
    color: var(--white);
}

/* Responsive Grid */
@media (max-width: 1199px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .item-large {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 20px;
    }

    .bento-item {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
        padding: 25px;
    }

    .item-large {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .benefits-section {
        padding: 50px 0;
    }
}

/* ========== Program Introduction Section ========== */
.program-intro-section .row {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-highlight-box {
    background-color: var(--primary-blue);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
        linear-gradient(30deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.1) 87.5%, rgba(255, 255, 255, 0.1)),
        linear-gradient(60deg, rgba(255, 255, 255, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.05) 75.5%, rgba(255, 255, 255, 0.05)),
        linear-gradient(60deg, rgba(255, 255, 255, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.05) 75.5%, rgba(255, 255, 255, 0.05));
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
    opacity: 0.3;
}

.intro-highlight-box h2 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.01em;
}

.intro-highlight-box p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.intro-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

.intro-point-item h5 {
    font-size: 1rem;
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.intro-point-item p {
    line-height: 1.5;
}

.intro-point-item i {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .intro-points-grid {
        grid-template-columns: 1fr;
    }

    .intro-highlight-box {
        min-height: auto;
    }
}

@media (max-width: 575px) {

    .intro-highlight-box,
    .col-lg-8.bg-white {
        padding: 40px 25px !important;
    }
}

/* ========== UGC Recognition Section - FULL CUSTOM REDESIGN ========== */
.ugc-custom-section {
    background-color: #f0f5fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background light spots to match reference bokeh */
.ugc-custom-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    opacity: 0.6;
    pointer-events: none;
}

.ugc-custom-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 2;
}

.ugc-custom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.ugc-custom-text-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Align blue box towards the center/right to meet the frame */
}

.ugc-custom-blue-box {
    background-color: #1e5ba8;
    color: #ffffff;
    padding: 85px 70px;
    border-radius: 200px 0 0 0;
    /* Dramatic rounded top-left to match image */
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 580px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.ugc-custom-blue-box:hover {
    transform: translateY(-8px);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.18);
}

/* Hover Light Spot matching reference image */
.ugc-custom-blue-box::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.ugc-custom-blue-box:hover::after {
    opacity: 0.6;
    transform: scale(1.8);
}

.ugc-custom-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.ugc-custom-para {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 440px;
}

.ugc-custom-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.ugc-custom-frame-shadow {
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.25));
}

.ugc-custom-black-frame {
    background-color: #1a1a1a;
    /* Darker black frame */
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #333333;
    display: inline-block;
    position: relative;
    max-width: 460px;
}

.ugc-custom-black-frame::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.ugc-custom-black-frame img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Handling without Bootstrap */
@media (max-width: 1100px) {
    .ugc-custom-title {
        font-size: 38px;
    }

    .ugc-custom-blue-box {
        padding: 60px 45px;
    }
}

@media (max-width: 991px) {
    .ugc-custom-flex {
        flex-direction: column;
        gap: 60px;
    }

    .ugc-custom-blue-box {
        margin-right: 0;
        border-radius: 80px 0 0 0;
        text-align: center;
        max-width: 100%;
    }

    .ugc-custom-para {
        max-width: 100%;
    }

    .ugc-custom-image-side {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .ugc-custom-section {
        padding: 60px 0;
    }

    .ugc-custom-blue-box {
        padding: 50px 25px;
        border-radius: 60px 0 0 0;
    }

    .ugc-custom-title {
        font-size: 32px;
    }

    .ugc-custom-black-frame {
        padding: 15px;
    }
}

/* ========== Program Details Redesign ========== */
.program-details-redesign {
    padding: 50px 0;
    background: #fff;
}

.pdr-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

.pdr-flex {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.pdr-overview {
    flex: 1.2;
}

.pdr-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.pdr-overview-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.pdr-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
}

.pdr-specializations {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pdr-specializations li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 10px 0;
    color: #333;
    border-bottom: 1px solid #eee;
}

.pdr-specializations li i {
    color: var(--primary-green);
    font-size: 18px;
}

/* Eligibility Box with Geometric Accents */
.pdr-eligibility-wrapper {
    flex: 0.8;
    display: flex;
    align-items: center;
}

.pdr-eligibility-box {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 91, 168, 0.2);
    width: 100%;
}

/* Geometric Corners - Subtle Triangles/Squares */
.geo-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.15;
}

.geo-top-left {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
}

.geo-bottom-right {
    bottom: 0;
    right: 0;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
}

.pdr-eligibility-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.pdr-eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
}

.pdr-eligibility-list li {
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pdr-eligibility-list li strong {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 8px;
}

.pdr-apply-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-blue);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pdr-apply-btn:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsiveness */
@media (max-width: 991px) {
    .pdr-flex {
        flex-direction: column;
        gap: 40px;
    }

    .pdr-eligibility-wrapper {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .program-details-redesign {
        padding: 60px 0;
    }

    .pdr-section-title {
        font-size: 28px;
    }

    .pdr-eligibility-box {
        padding: 35px 25px;
    }
}

/* ========== Who This Program Suits Section ========== */
.who-suits-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 50%, #f0f5fa 100%);
    position: relative;
    overflow: hidden;
}

.who-suits-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 91, 168, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.who-suits-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(122, 181, 29, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.who-suits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.who-suits-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
}

.who-suits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.who-suits-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(30, 91, 168, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.who-suits-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 91, 168, 0.12);
    border-color: var(--primary-blue);
}

.who-suits-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6dc2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(30, 91, 168, 0.25);
}

.who-suits-icon i {
    color: #fff;
    font-size: 26px;
}

.who-suits-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .who-suits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .who-suits-section {
        padding: 70px 0;
    }

    .who-suits-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .who-suits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-suits-card {
        padding: 30px 25px;
    }
}

/* ========== Program Highlights Section ========== */
.program-highlights-section {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Orange Patch - Right Side */
.ph-orange-patch {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 280px;
    background: linear-gradient(180deg, #005bab 0%, #003360 100%);
    border-radius: 0 0 0 100px;
    z-index: 1;
}

/* Grey Circular Background */
.ph-grey-circle {
    position: absolute;
    bottom: 50px;
    right: 25%;
    width: 200px;
    height: 200px;
    background: rgba(200, 210, 220, 0.3);
    border-radius: 50%;
    z-index: 0;
}

/* Small decorative corner accents */
.program-highlights-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(30, 91, 168, 0.15);
    pointer-events: none;
    z-index: 1;
}

.program-highlights-section::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 60px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid rgba(255, 107, 53, 0.25);
    pointer-events: none;
    z-index: 1;
}


.ph-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.ph-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ph-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ph-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.ph-content {
    flex: 1;
}

.ph-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* Large Main Title */
.ph-main-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 40px;
}

.ph-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 50px;
}

.ph-item {
    position: relative;
}

.ph-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.ph-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
}

/* Responsiveness */
@media (max-width: 991px) {
    .ph-flex {
        flex-direction: column;
        gap: 40px;
    }

    .ph-visual {
        max-width: 400px;
    }
}

@media (max-width: 575px) {
    .program-highlights-section {
        padding: 50px 0;
    }

    .ph-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ph-item h4 {
        font-size: 16px;
    }
}

/* ========== Admission Pathway Section - Unique Design ========== */
.admission-pathway-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pathway-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.pathway-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
}

.pathway-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
}

/* The dashed connecting line */
.pathway-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: transparent;
    border-top: 3px dashed var(--primary-blue);
    opacity: 0.4;
    z-index: 1;
}

/* Each step */
.pathway-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 180px;
}

/* Circular node with number */
.pathway-node {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6dc2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(30, 91, 168, 0.3);
    border: 4px solid #fff;
    transition: all 0.3s ease;
}

.pathway-node:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 91, 168, 0.4);
}

.node-number {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* Content box below node */
.pathway-content {
    /* background: #fff; */
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.pathway-content:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.pathway-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
}

/* Final step - green styling */
.pathway-node-final {
    background: linear-gradient(135deg, var(--primary-green) 0%, #5a9a1f 100%);
    box-shadow: 0 8px 25px rgba(122, 181, 29, 0.3);
}

.pathway-node-final:hover {
    box-shadow: 0 12px 35px rgba(122, 181, 29, 0.4);
}

.pathway-content-final {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, rgba(122, 181, 29, 0.05) 0%, #fff 100%);
}

.pathway-content-final h4 {
    color: var(--primary-green);
}

/* Responsiveness */
@media (max-width: 991px) {
    .pathway-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .pathway-line {
        display: none;
    }

    .pathway-step {
        flex: 0 0 45%;
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .admission-pathway-section {
        padding: 50px 0;
    }

    .pathway-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .pathway-step {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pathway-node {
        width: 60px;
        height: 60px;
    }

    .node-number {
        font-size: 18px;
    }
}

/* ========== Career Opportunities Section ========== */
.career-opportunities-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fdfcf8 0%, #f5f2e8 50%, #faf8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative geometric shapes via CSS */
.career-opportunities-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 91, 168, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -80px;
    pointer-events: none;
}

.career-opportunities-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(122, 181, 29, 0.04);
    border-radius: 50%;
    bottom: -60px;
    right: 10%;
    pointer-events: none;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.career-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 18px;
}

.career-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.career-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left side - Career List */
.career-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.career-pill {
    background: #ffffff;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 91, 168, 0.08);
}

.career-pill:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(122, 181, 29, 0.25);
    border-color: var(--primary-green);
}

.career-pill:hover .career-pill-icon {
    background: #ffffff;
    transform: scale(1.1);
}

.career-pill:hover .career-pill-icon i {
    color: var(--primary-green);
}

.career-pill:hover span {
    color: #ffffff;
}

.career-pill-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 91, 168, 0.2);
}

.career-pill-icon i {
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.career-pill span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

/* Right side - Image */
.career-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 91, 168, 0.15);
}

.career-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.career-image-wrapper:hover .career-image {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .career-opportunities-section {
        padding: 60px 0;
    }

    .career-flex {
        flex-direction: column;
        gap: 40px;
    }

    .career-list {
        width: 100%;
        max-width: 600px;
    }

    .career-image-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .career-section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .career-opportunities-section {
        padding: 50px 0;
    }

    .career-section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .career-pill {
        padding: 14px 20px;
        gap: 14px;
    }

    .career-pill-icon {
        width: 42px;
        height: 42px;
    }

    .career-pill-icon i {
        font-size: 18px;
    }

    .career-pill span {
        font-size: 14px;
    }

    .career-flex {
        gap: 30px;
    }
}

/* ========== Program Structure Section ========== */
.program-structure-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdfcf8 0%, #f5f2e8 50%, #faf8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Geometric Background Elements */
.program-structure-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 91, 168, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.program-structure-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 181, 29, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
    pointer-events: none;
    z-index: 0;
}

/* Additional geometric shapes */
.ps-container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(30, 91, 168, 0.08);
    transform: rotate(45deg);
    top: 50%;
    right: 5%;
    pointer-events: none;
    z-index: 0;
}

.ps-container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(217, 200, 158, 0.06);
    border-radius: 50%;
    top: 20%;
    left: 8%;
    pointer-events: none;
    z-index: 0;
}

.ps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.ps-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 18px;
}

.ps-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.ps-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.ps-column {
    flex: 1;
}

.ps-accordion {
    background: #ffffff;
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ps-accordion:hover {
    box-shadow: 0 8px 24px rgba(30, 91, 168, 0.12);
}

.ps-accordion-header {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.ps-accordion-header:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.ps-accordion-header.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.ps-semester-label {
    letter-spacing: 0.5px;
}

.ps-accordion-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.ps-accordion-header.active .ps-accordion-icon {
    transform: rotate(180deg);
}

.ps-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.ps-accordion-content.active {
    max-height: 800px;
}

.ps-subject-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.ps-subject-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.ps-subject-table thead th {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 14px 20px;
    border: none;
}

.ps-subject-table thead th:last-child {
    text-align: center;
    width: 100px;
}

.ps-subject-table tbody {
    background: #fafafa;
}

.ps-subject-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e8e8e8;
}

.ps-subject-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.ps-subject-table tbody tr:hover {
    background: linear-gradient(to right, rgba(122, 181, 29, 0.08), rgba(122, 181, 29, 0.02));
    transform: translateX(3px);
}

.ps-subject-table tbody td {
    padding: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-dark);
    border: none;
}

.ps-subject-table tbody td:last-child {
    text-align: center;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 14px;
}

/* Elective Specialization Styles */
.ps-elective-row {
    margin-bottom: 0;
}

.ps-elective-full {
    width: 100%;
}

.ps-elective-note {
    background: linear-gradient(to right, rgba(30, 91, 168, 0.05), rgba(122, 181, 29, 0.05));
    padding: 20px 24px;
    margin-bottom: 0;
    border-left: 4px solid var(--primary-blue);
}

.ps-elective-note p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.ps-elective-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.ps-elective-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.ps-elective-table thead th {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    padding: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border: none;
}

.ps-elective-table thead th:last-child {
    border-right: none;
}

.ps-elective-table tbody {
    background: #fafafa;
}

.ps-elective-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e8e8e8;
}

.ps-elective-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.ps-elective-table tbody tr:hover {
    background: linear-gradient(to right, rgba(122, 181, 29, 0.06), rgba(122, 181, 29, 0.02));
}

.ps-elective-table tbody td {
    padding: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-dark);
    border-right: 1px solid #e8e8e8;
    vertical-align: top;
}

.ps-elective-table tbody td:last-child {
    border-right: none;
}

.ps-elective-table tbody td:empty {
    background: #f5f5f5;
}

/* Table Responsive Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 991px) {
    .table-responsive {
        margin: 0 -10px;
        padding: 0 10px;
    }
}

/* ========== Program Fee Section ========== */
.program-fee-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.pf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.pf-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 18px;
}

.pf-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.pf-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.pf-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.pf-table thead th {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 18px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pf-table thead th:last-child {
    border-right: none;
}

.pf-table thead th.pf-label-col {
    text-align: left;
    min-width: 280px;
}

/* Super header row */
.pf-table thead tr.pf-super-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #5a9a1f 100%);
    border-bottom: 2px solid var(--primary-blue);
}

.pf-table thead th.pf-payment-type {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px 16px;
    border-right: none;
}

/* Yearly table spacing */
.pf-yearly-table-wrapper {
    margin-top: 40px;
}

.pf-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e8e8e8;
}

.pf-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.pf-table tbody tr:hover {
    background: linear-gradient(to right, rgba(30, 91, 168, 0.04), rgba(30, 91, 168, 0.02));
}

.pf-table tbody td {
    padding: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-dark);
    text-align: center;
    border-right: 1px solid #e8e8e8;
}

.pf-table tbody td:last-child {
    border-right: none;
}

.pf-table tbody td.pf-label {
    text-align: left;
    font-weight: 500;
    color: var(--gray-dark);
}

/* Highlighted rows */
.pf-table tbody tr.pf-highlight {
    background: linear-gradient(to right, rgba(122, 181, 29, 0.08), rgba(122, 181, 29, 0.04));
}

.pf-table tbody tr.pf-highlight:hover {
    background: linear-gradient(to right, rgba(122, 181, 29, 0.12), rgba(122, 181, 29, 0.06));
}

.pf-table tbody tr.pf-highlight td {
    color: var(--primary-green);
    font-size: 15px;
}

/* Yearly fee rows */
.pf-table tbody tr.pf-yearly {
    background: linear-gradient(to right, rgba(30, 91, 168, 0.08), rgba(30, 91, 168, 0.04));
}

.pf-table tbody tr.pf-yearly td {
    color: var(--primary-blue);
    font-size: 15px;
}

.pf-table tbody tr.pf-yearly-amount {
    background: linear-gradient(to right, rgba(30, 91, 168, 0.08), rgba(30, 91, 168, 0.04));
    border-bottom: 2px solid var(--primary-blue);
}

.pf-table tbody tr.pf-yearly-amount td {
    color: var(--primary-blue);
    font-size: 15px;
}

.pf-table tbody td.pf-label-secondary {
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
}

.pf-table tbody td.pf-merged {
    font-size: 16px;
    font-weight: 700;
}

/* Total row */
.pf-table tbody tr.pf-total {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.pf-table tbody tr.pf-total td {
    color: #ffffff;
    font-size: 16px;
    padding: 20px 16px;
}

.pf-table tbody tr.pf-total:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

.pf-table tbody td.pf-grand-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pf-section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .pf-table thead th {
        font-size: 13px;
        padding: 14px 12px;
    }

    .pf-table tbody td {
        font-size: 13px;
        padding: 12px;
    }

    .pf-table thead th.pf-label-col {
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .program-fee-section {
        padding: 50px 0;
    }

    .pf-section-title {
        font-size: 26px;
    }

    .pf-table thead th {
        font-size: 12px;
        padding: 12px 8px;
    }

    .pf-table tbody td {
        font-size: 12px;
        padding: 10px 8px;
    }

    .pf-table tbody td.pf-grand-total {
        font-size: 18px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .program-structure-section {
        padding: 50px 0;
    }

    .ps-row {
        flex-direction: column;
        gap: 20px;
    }

    .ps-section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .program-structure-section {
        padding: 40px 0;
    }

    .ps-section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .ps-accordion-header {
        padding: 14px 18px;
        font-size: 16px;
    }

    .ps-subject-list {
        padding: 18px;
    }

    .ps-subject-list li {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 50%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative FAQ Background Elements */
.faq-section::before {
    content: '?';
    position: absolute;
    font-size: 300px;
    font-weight: 700;
    color: rgba(30, 91, 168, 0.03);
    top: -80px;
    right: -50px;
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: 0;
}

.faq-section::after {
    content: '?';
    position: absolute;
    font-size: 200px;
    font-weight: 700;
    color: rgba(122, 181, 29, 0.04);
    bottom: -60px;
    left: -30px;
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Additional decorative elements */
.faq-container::before {
    content: '?';
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    color: rgba(30, 91, 168, 0.04);
    top: 50%;
    right: -60px;
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: -1;
    transform: rotate(15deg);
}

.faq-container::after {
    content: '?';
    position: absolute;
    font-size: 100px;
    font-weight: 700;
    color: rgba(122, 181, 29, 0.05);
    top: 30%;
    left: -50px;
    font-family: var(--font-heading);
    pointer-events: none;
    z-index: -1;
    transform: rotate(-20deg);
}

/* Additional background circles */
.faq-accordion-wrapper::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(30, 91, 168, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: -30px;
    pointer-events: none;
    z-index: -1;
}

.faq-accordion-wrapper::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(122, 181, 29, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 15%;
    left: -20px;
    pointer-events: none;
    z-index: -1;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(30, 91, 168, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before,
.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question:hover {
    background: linear-gradient(to right, rgba(30, 91, 168, 0.04), #ffffff);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: #ffffff;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-dark);
    line-height: 1.5;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #ffffff;
}

.faq-icon {
    font-size: 16px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px;
    border-top: 2px solid rgba(30, 91, 168, 0.1);
}

.faq-answer p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-icon {
        font-size: 14px;
    }

    .faq-section::before {
        font-size: 200px;
        top: -50px;
        right: -30px;
    }

    .faq-section::after {
        font-size: 150px;
        bottom: -40px;
        left: -20px;
    }
}

/* ========== Anchor Navigation Menu ========== */
.anchor-nav-wrapper {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: sticky;
    top: 104px;
    /* Adjusted for sticky top-bar (41px) + navbar (~63px) */
    z-index: 999;
    border-bottom: 1px solid #eee;
    transition: var(--transition-smooth);
}

.anchor-nav-wrapper.is-sticky {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anchor-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.anchor-nav-links::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.anchor-link {
    display: inline-block;
    padding: 15px 25px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.anchor-link:hover {
    color: var(--primary-blue);
}

.anchor-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.anchor-link.active {
    color: var(--primary-blue);
}

.anchor-link.active::after {
    width: 100%;
}

@media (max-width: 991px) {
    .anchor-nav-wrapper {
        top: 111px;
        /* Mobile adjustment for combined sticky header */
    }

    .anchor-nav-links {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .anchor-link {
        padding: 12px 18px;
        font-size: 12px;
    }
}

/* ========== Thank You Section ========== */
.thank-you-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(122, 181, 29, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(30, 91, 168, 0.05) 0%, transparent 40%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.success-icon {
    font-size: 80px;
    color: var(--primary-green);
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-title {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    line-height: 2;
}

.btn-primary-custom:hover {
    background: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 91, 168, 0.2);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 0;
    }

    .thank-you-content {
        padding: 30px 20px;
    }

    .thank-you-title {
        font-size: 24px;
    }

    .thank-you-message {
        font-size: 16px;
    }
}

/* ========== Mission List Styles ========== */
.mission-list {
    margin-top: 20px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.mission-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mission-item:hover {
    transform: translateX(5px);
}

.mission-icon {
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-text {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* Ensure equal height cards and vertical alignment */
.card.h-100 {
    display: flex;
    flex-direction: column;
}

.card-body.p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body.p-4 .text-muted {
    flex: 1;
}

/* ========== Core Values Section ========== */
.core-value-item {
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: var(--transition-smooth);
}

.core-value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 91, 168, 0.1);
    border-color: rgba(30, 91, 168, 0.1);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(122, 181, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    font-size: 28px;
    transition: var(--transition-smooth);
}

.core-value-item:hover .value-icon-wrapper {
    background: var(--primary-green);
    color: var(--white);
    transform: rotateY(360deg);
}

.core-value-item h5 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 12px;
}

.core-value-item .text-muted {
    line-height: 1.4;
    font-size: 13px;
}

@media (max-width: 991px) {
    .core-value-item {
        padding: 20px 15px;
    }
}