/* ===================================
   ADAMAS University - Hybrid Learning
   Custom Stylesheet
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-blue: #1E5BA8;
    --secondary-green: #7CB342;
    --accent-green: #8BC34A;
    --text-dark: #000000;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

/* === BREADCRUMBS === */
.breadcrumb-nav {
    padding: 10px 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Light background breadcrumbs (for white sections) */
.breadcrumb-light .breadcrumb-item a {
    color: #1a237e;
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: #ffd54f;
    text-decoration: underline;
}

.breadcrumb-light .breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: #6c757d;
}

/* Dark background breadcrumbs (for hero sections) */
.breadcrumb-dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-dark .breadcrumb-item a:hover {
    color: #ffd54f;
}

.breadcrumb-dark .breadcrumb-item.active {
    color: #ffd54f;
}

/* === TOP BAR === */
.navbar-nav {
    align-items: center;
}

.top-bar {
    background: #23394c;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar-item {
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-item:hover {
    color: #ffd54f !important;
}

.top-bar-item i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .offcanvas.offcanvas-end {
        border-left: 0px;
    }

    .navbar-nav {
        align-items: normal;
    }

    .top-bar-content {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .programs-title {
        font-size: 1.8rem;
    }

    .owl-theme .owl-dots .owl-dot span {
        display: none;
    }

    .nav-item {
        border-bottom: 1px dashed #333;
    }

    .mrg {
        display: none;
    }

    .p-5 {
        padding: 0rem !important;
    }
}

/* === PROGRAM SUB-NAV === */
.program-sub-nav {
    background: linear-gradient(135deg, #23394c 0%, #03192c 100%);
    padding: 0;
    position: sticky;
    top: 79px;
    /* Height of main navbar */
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.sub-nav-list::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.sub-nav-item {
    display: flex;
    align-items: center;
}

.sub-nav-link {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.sub-nav-link:hover {
    color: #ffd54f;
    background: rgba(255, 255, 255, 0.05);
}

.sub-nav-item:not(:last-child)::after {
    content: '|';
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

@media (max-width: 991px) {
    .program-sub-nav {
        top: 65px;
    }

    .sub-nav-link {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    /* Offset for both navbars */
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    /* overflow-x: hidden; - Disabling to ensure position: sticky works */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* === NAVIGATION === */
.navbar {
    padding: 0.8rem 0;
    transition: var(--transition);
    background: #dff9b5 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1020;
    width: 100%;
}

.navbar-brand img {
    position: absolute;
    border-radius: 0px 0px 30px 30px;
    transition: var(--transition);
    padding: 10px;
    top: 0px;
    height: 100px !important;
    background: #8dc73f;
}



.nav-link {
    color: #000000 !important;
    font-weight: 500;
    font-size: 17px;
    padding: 13px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: #23394c !important;
}

.nav-link.active {
    color: #23394c !important;
    font-weight: 600;
}

.btn-apply {
    background: #8dc73f;
    color: white !important;
    padding: 5px 10px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
    transition: var(--transition);
}

.btn-apply:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
    transform: translateY(-1px);
}

.btn-login {
    background: #dc3545;
    color: white !important;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
}

.btn-login:hover {
    background: #c82333;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* === NAVIGATION DROPDOWN === */
.navbar .dropdown-menu {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 250px;
}

.navbar .dropdown-item {
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: transparent;
}

.navbar .dropdown-item:hover {

    color: rgb(0, 0, 0);
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* Desktop: Dropdown opens on hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
    }
}

/* Mobile: Dropdown opens with smooth accordion transition */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        display: block !important;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        border: none;
        box-shadow: none;
        background: #f1f8e9;
        /* Light green to match theme */
        border-radius: 8px;
        margin: 0;
        padding: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease, visibility 0s 0.4s;
    }

    .navbar .dropdown-menu.show {
        visibility: visible;
        max-height: 500px;
        /* Adjust if menu is extremely long */
        opacity: 1;
        margin: 0.5rem 1rem;
        padding: 0.5rem 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.3s ease, padding 0.3s ease, visibility 0s;
    }

    .navbar .dropdown-item {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .navbar .dropdown-item:hover {
        background: #8dc73f;
        color: white;
    }
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    background-image: url('../images/background-bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 30px 0 60px;
    overflow: hidden;
    /* Ensure video doesn't overflow */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 58.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 56%);
    /* Adjusted for better visibility over video */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: "Quicksand", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Accreditation Badges */
.accreditation-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.5rem;
    color: #f39c12;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.badge-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
    padding: 10px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-consultation {
    background: transparent;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid white;
    transition: var(--transition);
}

.btn-consultation:hover {
    background: rgb(0, 0, 0);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Enquiry Form */
.enquiry-form {
    background: #dff9b5;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Hero Content After Banner Section */
.hero-features-section {
    background: #f8f9fa;
    padding: 40px 0;
    position: relative;
}

.hero-features-section .hero-content {
    color: #000000;
}

.hero-features-section .hero-title {
    color: #141516;
    /* Primary Blue from theme */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-features-section .hero-subtitle {
    color: #444444;
    font-size: 1.2rem;
    opacity: 1;
}

.hero-features-section .badge-item {
    background: #f8fcf0;
    /* Very light green */
    border: 1px solid #dff9b5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-features-section .badge-text strong {
    color: #23394c;
}

.hero-features-section .badge-text span {
    color: #666666;
}

.hero-features-section .btn-consultation {
    border: 2px solid #1e5ba8;
    color: #1e5ba8 !important;
}

.hero-features-section .btn-consultation:hover {
    background: #1e5ba8;
    color: #ffffff !important;
}

.form-title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.phone-link {
    color: #f39c12;
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    color: #e67e22;
    text-decoration: underline;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 91, 168, 0.15);
}

.enquiry-form .form-check-input {
    border-color: #ddd;
}

.enquiry-form .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.enquiry-form .form-check-label {
    color: #555;
    font-size: 0.9rem;
}

.btn-submit {
    background: #23394c;
    color: white !important;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #8dc73f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes admissionPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* === WHY CHOOSE US SECTION === */
.why-choose-section {
    position: relative;
    background-image: url('../images/why-choose-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-title {
    font-family: "Quicksand", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.why-choose-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.stats-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-circle {
    width: 180px;
    height: 180px;
    border: 3px dashed #ff6b35;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

/* === ABOUT UNIVERSITY PAGE IMPROVEMENTS === */

.about-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.journey-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.journey-list {
    list-style: none;
    padding-left: 0;
}

.journey-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #333;
}

.journey-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background-color: #1a237e;
    border-radius: 50%;
}

.mission-vision-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
}

.mv-image img {
    width: 80px;
    margin-bottom: 1.5rem;
}

.mv-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.mv-title span {
    width: 4px;
    height: 30px;
    background-color: #dc3545;
}

.mv-title h4 {
    margin: 0;
    font-weight: 700;
    color: #1a237e;
}

.mv-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.success-subtitle {
    color: #dc3545;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid #ddd;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number-large {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
}

.stat-label-small {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.leadership-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.leader-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid #f8f9fa;
}

.leader-name {
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.leader-designation {
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-dark {
    background: #1a237e;
    color: white;
    padding: 5rem 0 2rem;
}

.footer-dark h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-dark h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #dc3545;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white !important;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icon:hover {
    background: #dc3545;
    transform: translateY(-3px);
}

/* About University Specific Styles */
.about-university-headline {
    font-family: "Quicksand", sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 0;
}

h5.about-university-headline {
    font-size: 2rem;
    font-weight: 500;
}

.about-university-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1.2rem;
}

.btn-university-overview {
    display: inline-flex;
    align-items: center;
    background: #8b9dc3;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-university-overview:hover {
    background: #7a8cb3;
    transform: translateX(5px);
}

.btn-university-overview i {
    transition: var(--transition);
}

.btn-university-overview:hover i {
    transform: translateX(5px);
}

/* === NEW-GEN DEGREE SECTION === */
.newgen-section {
    background: #ffffff;
}

.newgen-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newgen-circle-text {
    position: absolute;
    top: -20px;
    left: -30px;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.circle-text-top,
.circle-text-bottom {
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b7355;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.newgen-circle-frame {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 3px solid #c4a57b;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.newgen-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leaf-decoration {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 80px;
    z-index: 1;
}

.newgen-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newgen-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #c4a57b;
    letter-spacing: 1px;
}

.newgen-title {
    font-family: "Quicksand", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    color: #000000;
}

.newgen-description {
    font-size: 1rem;
    color: #242424;
    margin-bottom: 1rem;
}

.newgen-services {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.newgen-service-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px dashed #88bc4f;
    border-radius: 12px;
    background: white;
    transition: var(--transition);
}

.newgen-service-card:hover {
    border-color: #88bc4f;
    box-shadow: 0 4px 15px rgba(196, 165, 123, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #8bbf52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content {
    flex: 1;
}

.service-rating {
    color: #c4a57b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.service-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* === WHO ARE THESE PROGRAMS FOR SECTION === */
.programs-for-section {
    background: url(../images/hpg.jpg) center no-repeat;
    min-height: 500px;
    position: relative;
    background-size: cover;
}

.programs-for-section .row {
    min-height: 500px;
}

.programs-content-box {
    background: white;
    padding: 2rem;
    margin: 0rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.programs-title {
    font-family: "Quicksand", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.programs-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.2rem;
}

.programs-description strong {
    color: #8b2e5f;
}

.programs-list {
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

.programs-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.programs-list li strong {
    color: #23394c;
    font-weight: 700;
}

.programs-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-programs-primary {
    background: #8b2e5f;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-programs-primary:hover {
    background: #6d2449;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 46, 95, 0.3);
}

.btn-programs-secondary {
    background: #8b2e5f;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-programs-secondary:hover {
    background: #6d2449;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 46, 95, 0.3);
}

.btn-programs-apply {
    background: #f4b41a;
    color: #000000 !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-programs-apply:hover {
    background: #d99e15;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 180, 26, 0.4);
}

.programs-image-section {
    background-image: url('../images/student-working.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .programs-content-box {
        margin: 2rem 1rem;
    }

    .programs-image-section {
        min-height: 300px;
    }
}



/* === ABOUT NEW SECTION === */
.about-new-section {
    background: #f8f9fa;
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #23394c 0%, #8dc73f 100%);
    border-radius: 20px;
    top: -20px;
    left: -20px;
    z-index: 0;
}

.about-main-image {
    height: 391px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-new-title {
    font-family: "Quicksand", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.about-feature-icon {
    border: 1px dashed #ffffff;
    width: 60px;
    height: 60px;
    background: #8dc73f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgb(141 199 63);
}

.about-feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-feature-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #272727;
    margin-bottom: 0.5rem;
}

.about-feature-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 20px;
    margin: 0;
}


/* === SECTION COMMON STYLES === */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}


.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--bg-white);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-content h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-illustration {
    text-align: center;
    padding: 2rem;
}

.about-illustration img {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* === ProgramS SECTION === */
.Programs-section {
    background: var(--bg-light);
}

.Program-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.Program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.Program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.Program-card:hover::before {
    transform: scaleX(1);
}

.Program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.Program-card:hover .Program-icon {
    transform: rotate(5deg) scale(1.1);
}

.Program-icon i {
    font-size: 2.5rem;
    color: white;
}

.Program-title {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.Program-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.Program-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.Program-highlights li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.Program-highlights i {
    color: var(--secondary-green);
    margin-right: 0.5rem;
}

.btn-Program {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.btn-Program:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* === WHY ADAMAS SECTION === */
.why-section {
    background: white;
}

.why-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(10deg);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-description {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* === LEARNING MODEL SECTION === */
.learning-model-section {
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15);
    background: var(--gradient-secondary);
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 0 2rem;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.timeline-content h5 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === ADMISSION SECTION === */
.admission-section {
    background: white;
}

.admission-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.admission-card:hover {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.admission-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.admission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: var(--transition);
}

.admission-card:hover .admission-icon {
    transform: rotateY(360deg);
}

.admission-icon i {
    font-size: 2rem;
    color: white;
}

.admission-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.admission-description {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #23394c 0%, #03192c 100%);
    color: white;
}

.cta-title {

    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.btn-cta {
    background: var(--secondary-green);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    background: #8BC34A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 10px;
}

.form-grid .form-control {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    height: auto;
    margin-bottom: 10px;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(179deg, rgb(0 0 0) 0% 0%, rgb(3 3 4) 100%);
    color: white;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 1rem;
    margin-top: 0.3rem;
    color: var(--accent-green);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright a:hover {
    color: white;
}

/* === FAQ SECTION === */
.faq-section {
    background: #ffffff;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item .accordion-button {
    background: white;
    color: #000000;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1E5BA8 0%, #2979C8 100%);
    color: white;
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
    padding: 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    background: white;
    border-top: 1px solid #e0e0e0;
}

/* === STICKY ADMISSION HELPLINE BUTTON === */
.sticky-helpline-btn {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white !important;
    padding: 15px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.sticky-helpline-btn i {
    font-size: 1.2rem;
    transform: rotate(90deg);
}

.sticky-helpline-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.5);
}

/* Mobile: Show only icon */
@media (max-width: 767px) {
    .sticky-helpline-btn {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        writing-mode: horizontal-tb;
        justify-content: center;
    }

    .sticky-helpline-btn span {
        display: none;
    }

    .sticky-helpline-btn i {
        transform: rotate(0deg);
        font-size: 1.3rem;
    }
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top-btn {
    position: fixed;
    bottom: 15%;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #003b70;
    color: #dff9b5;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 21, 56, 0.4);
}

.scroll-top-btn.show {
    display: flex;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
    }

    .timeline-icon i {
        font-size: 1.5rem;
    }

    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }

    .timeline-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .Program-card,
    .why-card,
    .admission-card {
        margin-bottom: 1.5rem;
    }
}

/* Form Highlight Animation */
@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 213, 79, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 213, 79, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 213, 79, 0);
        transform: scale(1);
    }
}

.highlight-form {
    animation: highlightPulse 2s ease-out;
    border: 2px solid #ffd54f;
    /* Gold border */
}

/* Shake Animation */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Aesthetic Custom Alert */
.custom-alert {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    background: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 6px solid #1E5BA8;
}

/* Consultation Button Style */
.btn-consultation {
    border-radius: 50px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;

    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-consultation:hover {
    background-color: #1E5BA8;
    color: white;
    box-shadow: 0 5px 15px rgba(30, 91, 168, 0.3);
    transform: translateY(-2px);
}

.custom-alert.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.custom-alert i {
    color: #1E5BA8;
    font-size: 1.5rem;
}

.custom-alert span {
    font-weight: 700;
    color: #1a2a3a;
    font-size: 1.05rem;
    font-family: "Quicksand", sans-serif;
    letter-spacing: -0.01em;
}

.custom-alert .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #adb5bd;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-left: 10px;
    transition: color 0.3s;
}

.custom-alert .close-btn:hover {
    color: #495057;
}

/* === FIXED NAVBAR FALLBACK === */
.fixed-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* === PARTNERS MARQUEE SECTION === */
.partners-marquee-section {
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.partners-marquee-container {
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.partners-marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
}

.partner-logo-item {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px dashed #ccc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.partner-logo-item:first-child {
    border-left: 1px dashed #ccc;
}

.partner-logo-item img {
    max-width: 100%;
    filter: grayscale(0);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.partner-logo-item:hover img {
    filter: grayscale(0);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* Pause on hover */
.partners-marquee-container:hover .partners-marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .partner-logo-item {
        width: 180px;
        padding: 15px 25px;
    }

    @keyframes marquee-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 7));
        }
    }
}

/* === HOSTEL FEE SECTION === */
.hostel-fee-section {
    background-color: #f8f9fa;
}

.hostel-fee-table {
    border-collapse: collapse;
    width: 100%;
}

.hostel-fee-table thead th {
    background-color: #dff9b5;
    color: #000;
    font-weight: 700;
    vertical-align: middle;
    font-size: 0.85rem;
    padding: 10px 10px;
    border: 1px solid #000;
}

.hostel-fee-table tbody td {
    vertical-align: middle;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 10px;
    border: 1px solid #dee2e6;
}

.hostel-fee-table tbody tr:hover {
    background-color: #fff9c4;
}

.hostel-notes {
    border-left: 5px solid #ffde00 !important;
}

.hostel-notes h5 {
    color: #22384b;
    font-weight: 700;
}

.hostel-notes ul {
    list-style-type: none;
    padding-left: 0;
}

.hostel-notes ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hostel-notes ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffde00;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .hostel-fee-table thead th {
        font-size: 0.75rem;
        padding: 10px 5px;
    }

    .hostel-fee-table tbody td {
        font-size: 0.85rem;
    }
}

/* === CLUB ADAMAS PAGE STYLES === */
.club-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: #fff;
    border-bottom: 4px solid #ffde00;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.club-icon {
    font-size: 2.5rem;
    color: #22384b;
    margin-bottom: 20px;
    display: none;
}

h4.fw-bold {
    font-size: 1.2rem;
}

.service-item {
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    border-left: 5px solid #ffde00;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mentor-badge {
    background: #22384b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 15px;
}

.section-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ffde00;
}

.text-center.section-header::after {
    left: 50%;
    transform: translateX(-50%);
}

/* === CAMPUS LIFE SECTION === */
.campus-life-section {
    background: #dff9b5 !important;
    padding: 40px 0;
    color: #000000;
    overflow: hidden;
}

.campus-life-section .section-title {
    color: #000000 !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.campus-life-section .section-description {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.campus-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.campus-tab-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    color: rgba(0, 0, 0, 0.7);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.campus-tab-btn:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.7);
}

.campus-tab-btn.active {
    background: #ffc107;
    /* Gold/Yellow from screenshot */
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.campus-content-wrapper {
    position: relative;
    min-height: 400px;
}

.campus-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.campus-tab-content.active {
    display: block;
}

.campus-card {
    background: #c1df90;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.campus-icon-box {
    width: 120px;
    height: 120px;
    background: #8dc73f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px dashed #70a32d;

}

.campus-icon-box i {
    font-size: 3rem;
    color: #ffffff;
}

.campus-text-content h3 {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.campus-text-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .campus-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .campus-tabs-nav {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .campus-tab-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .campus-text-content h3 {
        font-size: 1.8rem;
    }
}

.btn-read-more {
    display: inline-block;
    background: #8dc73f;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* === STICKY WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    right: 0px;
    bottom: 150px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #333333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0px
    }

    .hero-buttons {
        display: block;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 120px;
    }

    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }
}