/* ===========================================
   ARENAVIRAR - CUSTOM STYLESHEET
   Author: ArenaVirar Design Team
   =========================================== */

/* ===========================================
   1. CSS VARIABLES & RESET
   =========================================== */
:root {
    --primary-color: #B91C1C;
    --primary-dark: #7F1D1D;
    --primary-light: #DC2626;
    --accent-color: #FACC15;
    --accent-dark: #EAB308;
    --secondary-color: #1E293B;
    --dark-bg: #0F172A;
    --light-bg: #FAFAF9;
    --soft-bg: #FFF8E7;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 12px 32px rgba(185, 28, 28, 0.25);
    --shadow-yellow: 0 12px 32px rgba(250, 204, 21, 0.3);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===========================================
   2. UTILITY CLASSES
   =========================================== */
.section-padding {
    padding: 90px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.min-vh-90 {
    min-height: 88vh;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section heading */
.section-heading {
    margin-bottom: 30px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    position: relative;
    padding: 6px 18px;
    background: rgba(185, 28, 28, 0.08);
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.title-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    z-index: -1;
    opacity: 0.6;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 4px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ===========================================
   3. TOP BAR
   =========================================== */
.top-bar {
    background: linear-gradient(90deg, var(--dark-bg), var(--secondary-color));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.88rem;
    border-bottom: 3px solid var(--accent-color);
}

.top-info {
    color: #E2E8F0;
}

.top-info i {
    color: var(--accent-color);
    margin-right: 5px;
}

.social-icon {
    color: var(--white);
    margin-left: 12px;
    transition: var(--transition);
    display: inline-block;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ===========================================
   4. NAVBAR
   =========================================== */
.main-navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1030;
}

.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
    overflow: hidden;
    position: relative;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 900;
    font-size: 1.4rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-enroll {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(185, 28, 28, 0.4);
    color: var(--white) !important;
}

.btn-enroll::after {
    display: none;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===========================================
   5. HERO SECTION
   =========================================== */
.hero-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.527) 0%, rgba(127, 29, 29, 0.377) 100%),
        url('../images/b.jpg') center/cover;
    color: var(--white);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(250, 204, 21, 0.15), transparent 60%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--primary-light);
    bottom: -80px;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #FF6B35;
    top: 40%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -40px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(250, 204, 21, 0.18);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin-bottom: 32px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--dark-bg);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-yellow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(250, 204, 21, 0.5);
    color: var(--dark-bg);
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin: 0;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: #CBD5E1;
    margin: 6px 0 0;
    font-weight: 500;
}

/* Hero Card / Form */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(-1deg);
    transition: var(--transition);
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-card-inner {
    background: var(--white);
    border-radius: calc(var(--radius-lg) - 4px);
    padding: 32px 28px;
    position: relative;
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-card-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.hero-form .form-control {
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.hero-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
    outline: none;
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(185, 28, 28, 0.4);
    color: var(--white);
}

/* ===========================================
   6. ABOUT SECTION
   =========================================== */
.about-section {
    background: var(--light-bg);
    position: relative;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 50%;
}

.about-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-yellow);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent-color);
}

.about-text {
    color: #FEE2E2;
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.feature-item {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image-card:hover .about-img {
    transform: scale(1.02);
}

.about-image-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--accent-color);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-yellow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dark-bg);
    z-index: 2;
}

.about-image-badge i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.about-image-badge span {
    font-size: 0.9rem;
    line-height: 1.2;
}

.btn-join {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-join:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.5);
    color: var(--white);
}

/* ===========================================
   7. COURSES SECTION
   =========================================== */
.courses-section {
    background: var(--white);
    position: relative;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #dfcccc;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.course-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-img {
    transform: scale(1.1);
}

.course-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-yellow);
}

.course-body {
    padding: 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 12px;
}

.course-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.course-desc {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.65;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.course-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.course-duration i {
    color: var(--primary-color);
}

.btn-know-more {
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-know-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(3px);
}

/* ===========================================
   8. STUDENT WORK SECTION
   =========================================== */
.student-work-section {
    background: linear-gradient(135deg, #FAFAF9 0%, #F1F5F9 100%);
}

.work-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover .work-img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
    opacity: 0;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-overlay-content {
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.work-card:hover .work-overlay-content {
    transform: translateY(0);
}

.work-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.work-author {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 14px;
}

.work-link {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.work-link:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
}

/* ===========================================
   9. BRAND SECTION
   =========================================== */
.brand-section {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brand-header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.brand-section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.brand-section .brand-header {
    display: table;
    margin: 0 auto;
}

.brand-logo-box {
    background: var(--white);
    height: 90px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    filter: grayscale(40%);
    opacity: 0.8;
}

.brand-logo-box:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.brand-logo-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.brand-control {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.brand-control:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.brand-control i {
    color: var(--white);
    font-size: 1.2rem;
}

/* ===========================================
   10. COUNSELING SECTION
   =========================================== */
.counseling-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.92)),
        url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=1920&q=80') center/cover fixed;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.counseling-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(185, 28, 28, 0.3), transparent 70%);
}

.counseling-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.counseling-subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.counseling-card {
    display: flex;
    flex-direction: column;
    background: var(--accent-color);
    border-radius: 50px;
    padding: 14px 24px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-yellow);
    overflow: hidden;
    position: relative;
}

.counseling-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.5);
}

.card-label {
    background: var(--dark-bg);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.card-number {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: var(--font-display);
}

.card-number i {
    margin-right: 6px;
    font-size: 1rem;
}

/* ===========================================
   11. PLACEMENT SECTION
   =========================================== */
.placement-section {
    background: var(--light-bg);
}

.placement-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
    aspect-ratio: 3/4;
}

.placement-card::before {
    content: 'Congratulations';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
}

.placement-card::after {
    content: '★';
    position: absolute;
    top: 50px;
    right: 24px;
    color: var(--accent-color);
    font-size: 2rem;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.placement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(185, 28, 28, 0.35);
}

.placement-card img {
    width: 70%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    border-radius: var(--radius-sm);
}

.placement-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    text-align: center;
    color: var(--white);
}

.placement-info h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.placement-info p {
    font-size: 0.85rem;
    color: #FEE2E2;
    margin: 0;
}

.custom-indicators {
    bottom: -50px;
}

.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: var(--border-color) !important;
    border: none !important;
    margin: 0 4px !important;
    opacity: 1 !important;
}

.custom-indicators button.active {
    background: var(--primary-color) !important;
    width: 32px !important;
    border-radius: 6px !important;
}

.placement-control {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.placement-control:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.placement-control i {
    color: var(--white);
    font-size: 1.3rem;
}

/* ===========================================
   12. FAQ SECTION
   =========================================== */
.faq-section {
    background: var(--white);
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px;
    border: none;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    background: none;
    content: "+";
    font-size: 1.6rem;
    font-weight: 300;
    width: auto;
    height: auto;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    color: var(--white);
    transform: rotate(0);
}

.faq-accordion .accordion-body {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* ===========================================
   13. CONTACT SECTION
   =========================================== */
.contact-section {
    background: linear-gradient(135deg, #FAFAF9 0%, #F1F5F9 100%);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-red);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 50%;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-yellow);
}

.contact-info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-info-item p {
    font-size: 0.92rem;
    color: #FEE2E2;
    margin: 0;
    line-height: 1.6;
}

.contact-info-item p a {
    color: #FEE2E2;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item p a:hover {
    color: var(--accent-color);
}

.contact-form-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-input {
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
    outline: none;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(185, 28, 28, 0.4);
    color: var(--white);
}

/* ===========================================
   14. FOOTER
   =========================================== */
.footer-section {
    background: var(--dark-bg);
    color: #CBD5E1;
    padding: 70px 0 30px;
}

.footer-section .brand-name {
    color: var(--white);
}

.footer-section .brand-tagline {
    color: #94A3B8;
}

.footer-text {
    font-size: 0.93rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.93rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-contact li {
    color: #CBD5E1;
    font-size: 0.93rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 0.88rem;
}

.footer-bottom strong {
    color: var(--accent-color);
}

.footer-bottom a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ===========================================
   15. FLOATING ICONS
   =========================================== */
.floating-icon {
    position: fixed;
    bottom: 130px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.whatsapp-float {
    left: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse-shadow-green 2s infinite;
}

.call-float {
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    animation: pulse-shadow-red 2s infinite;
}

.floating-icon:hover {
    transform: scale(1.1) rotate(8deg);
    color: var(--white);
}

@keyframes pulse-shadow-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-shadow-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.6);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(185, 28, 28, 0);
    }
}

.float-tooltip {
    position: absolute;
    background: var(--dark-bg);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
}

.call-tooltip {
    left: auto;
    right: 70px;
}

.floating-icon:hover .float-tooltip {
    opacity: 1;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
.cu-lg-wdth{
width: 310px; 
height: 64px;
}

/* ===========================================
   16. RESPONSIVE
   =========================================== */
@media (max-width: 1199px) {
    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 50px 0 60px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 18px;
        border-radius: var(--radius-md);
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
    }

    .about-card,
    .contact-info-card,
    .contact-form-card {
        padding: 32px 24px;
    }

    .btn-join {
        position: static;
        transform: none;
        margin-top: 20px;
        display: inline-flex;
    }

    .about-image-card {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .top-bar {
        font-size: 0.78rem;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-card-title,
    .course-title,
    .contact-info-title,
    .contact-form-title {
        font-size: 1.4rem;
    }

    .counseling-card {
        padding: 12px 18px;
    }

    .card-number {
        font-size: 1.15rem;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .placement-control,
    .brand-control {
        width: 36px;
        height: 36px;
    }

    .placement-card img {
        width: 75%;
    }

    .footer-section {
        padding: 50px 0 20px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom .text-md-start,
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .brand-section-title {
        font-size: 0.95rem;
    }

    .placement-card::before {
        font-size: 0.75rem;
        padding: 4px 16px;
    }
}
@media(max-width:424px)
{
	.cu-lg-wdth {
    width: 255px;
    height: 50px;
}
}
@media (max-width: 324px) {
    .cu-lg-wdth {
        width: 224px;
        height: 45px;
    }
}