/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1c1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== DESKTOP / MOBILE VISIBILITY ===== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 130vh;
    overflow: visible;
    background: #fffceb url('/static/images/career.png') center center / cover no-repeat;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    min-height: 100vh;
    gap: 0;
}

/* Hero Copy / Left Side */
.hero-copy {
    padding-top: 60px;
    padding-bottom: 80px;
    align-self: center;
}

.hero-heading {
    font-family: 'Inter', sans-serif;
    font-size: 67px;
    font-weight: 500;
    color: #1c1d1f;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.hero-line-italic {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 500;
    color: #E27A01;
}

.hero-line {
    display: block;
    font-style: normal;
    font-weight: 400;
}

.hero-career {
    display: inline-block;
    position: relative;
    color: #E27A01;
    padding: 2px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-style: normal;
    z-index: 0;
}

.hero-career::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f49e0d;
    border-radius: 4px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: careerBgSlide 3s ease infinite;
}

.hero-career {
    animation: careerTextColor 3s ease infinite;
}

@keyframes careerBgSlide {
    0%, 10% {
        transform: scaleX(0);
    }
    30%, 80% {
        transform: scaleX(1);
    }
    95%, 100% {
        transform: scaleX(0);
    }
}

@keyframes careerTextColor {
    0%, 10% {
        color: #E27A01;
    }
    30%, 80% {
        color: #1c1d1f;
    }
    95%, 100% {
        color: #E27A01;
    }
}

/* Enroll Now button (Hero) */
.btn-enroll-hero {
    display: inline-block;
    background: #f59c00;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 34px;
    border: 2px solid #f59c00;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: 68px;
}

.btn-enroll-hero:hover {
    background: #ffda45;
    border-color: #ffda45;
    color: #000;
}

/* Tagline */
.hero-tagline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    max-width: 480px;
}

.tagline-bar {
    display: inline-block;
    width: 4px;
    min-height: 40px;
    background: #f49e0d;
    border-radius: 2px;
    flex-shrink: 0;
    align-self: stretch;
}

/* Hero Media / Right Side */
.hero-media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
}

.hero-img {
    display: block;
    margin-top: 160px;
    max-height: 115vh;
    max-width: 650px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Admission Card (fixed on right side) */
.admission-card {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 120px;
}

.admission-body {
    background: linear-gradient(180deg, #7a3410 0%, #3e1800 100%);
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    color: #fff;
}

.admission-body h2 {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}

.admission-body h3 {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}

.admission-body .year {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffd946;
    line-height: 1;
    letter-spacing: -1px;
}

.btn-apply {
    background: #f49e0d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.3s;
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-apply:hover {
    transform: scale(1.05);
}

/* IACET Section */
.iacet-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.info-card-wrapper {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    margin-bottom: -80px;
    max-width: 100%;
    overflow: hidden;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 3;
    max-width: 100%;
}

.info-card-text {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.accent-bar-iacet {
    width: 5px;
    min-height: 100%;
    align-self: stretch;
    background: #ffc51b;
    border-radius: 30px;
    flex-shrink: 0;
}

.info-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.info-card p {
    font-size: 15px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.info-card-logo {
    flex-shrink: 0;
}

.iacet-logo {
    width: 140px;
    height: auto;
    display: block;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.featured-tag {
    font-size: 18px;
    font-weight: 300;
    color: #F49E0D;
    margin-bottom: 0;
}

.section-header h2 {
    font-size: 55px;
    font-weight: 500;
    color: #0e0e11;
    margin-bottom: 20px;
    letter-spacing: -2.75px;
    line-height: 1.1;
}

.section-header h2 .highlight {
    color: #f49e0d;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #a7a7a7;
}

/* Courses Section */
.courses-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.courses-header {
    margin-bottom: 24px;
}

.courses-title {
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-top: 150px;
    margin-bottom: 8px;
}

.courses-title em {
    font-style: normal;
    color: #f49e0d;
}

.courses-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 40px;

}

.courses-subtitle strong {
    color: #f49e0d;
    font-weight: 600;
}

.courses-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.filter-pills {
    display: flex;
    gap: 12px;
}

.pill {
    padding: 12px 36px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: rgba(217, 217, 217, 0.1);
    color: #fff;
}

.pill.active {
    background: #F49E0D;
    border: none;
    color: #fff;
}

.pill:hover:not(.active) {
    background: #E27A01;
    color: #fff;
}

.see-all {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.see-all:hover {
    text-decoration: underline;
}

/* Dark courses card area */
.courses-dark {
    background: #000000;
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
    z-index: 2;
}

.courses-dark::before {
    content: '';
    position: absolute;
    left: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: #E27A01;
    border-radius: 50%;
    filter: blur(400px);
    z-index: 0;
}

.courses-dark::after {
    content: '';
    position: absolute;
    right: -200px;
    bottom: -200px;
    width: 600px;
    height: 600px;
    background: #FFD946;
    border-radius: 50%;
    filter: blur(600px);
    z-index: 0;
}

.courses-dark > .container {
    position: relative;
    z-index: 1;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.program-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 340px;
    cursor: pointer;
    transition: background 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.program-card:hover img {
    opacity: 0;
}

.program-card:nth-child(odd):hover {
    background: #E27A01;
}

.program-card:nth-child(even):hover {
    background: #F49E0D;
}

.program-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, #1C1D1F 0%, #1C1D1F99 40%, #1C1D1F00 100%);
    transition: opacity 0.4s ease;
    border-radius: 0 0 14px 14px;
}

.program-card:hover .program-card-overlay {
    opacity: 0;
}

/* Orange square icon */
.program-card::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 5px solid #f49e0d;
    border-radius: 8px;
    z-index: 2;
    transition: all 0.4s ease;
}

.program-card:hover::after {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 255, 255, 0.45);
    border-width: 7px;
    border-radius: 20px;
    background: transparent;
}

.program-card h4 {
    position: absolute;
    bottom: 16px;
    left: 18px;
    right: 18px;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.35;
    z-index: 3;
}

.program-card h4 strong {
    font-weight: 500;
}

/* Accreditation Section */
.accreditation-section {
    padding: 60px 0;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

.accreditation-section h2 {
    font-size: 42px;
    font-weight: 500;
    color: #0e0e11;
    margin-bottom: 80px;
    letter-spacing: -2.75px;
    line-height: 1.1;
}

.accred-item {
    display: grid;
    grid-template-columns: 269px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.accred-logo {
    width: 269px;
    height: 123px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accred-logo img {
    max-width: 100%;
    height: auto;
}

.accred-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0e0e11;
    margin-bottom: 20px;
    line-height: normal;
}

.accred-content p {
    font-size: 14px;
    font-weight: 400;
    color: #1c1d1f;
    line-height: 1.6;
}

/* VR & AR Section */
.vr-section {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.vr-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 60%, #0d0d0d 100%);
}

/* Overlay colour blobs — deepest layer */
.vr-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.vr-overlay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SVG decorative background layer */
.vr-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-svg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1);
    transition: none;
}
/* On hover: slow zoom up to 1.2x, then stop */
.vr-banner:hover .vr-svg-img {
    animation: svgZoomIn 10s ease-out forwards;
}
/* Zoom animation keyframes — applied via JS on hover */
@keyframes svgZoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.vr-inner {
    display: flex;
    align-items: flex-end;
    position: relative;
    min-height: 480px;
    z-index: 2;
    justify-content: flex-end;
}


.vr-person-img {
    display: block;
    width: 550px;
    object-fit: cover;
    object-position: bottom;
    position: absolute;
    bottom: 0;
    left: 10%;
}

.vr-content {
    position: relative;
    z-index: 2;
    padding: 50px 20px;
    align-self: center;
}

.vr-tag {
    font-size: 14px;
    font-weight: 400;
    color: #f49e0d;
    margin-bottom: 10px;
}

.vr-heading {
    font-size: 42px;
    font-weight: 800;
    color: #F59C00;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.vr-heading span {
    color: #fff;
    font-weight: 280;
    font-style: italic;
}

.vr-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-enroll-vr {
    display: inline-block;
    background: #f49e0d;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 40px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-enroll-vr:hover {
    background: #e08e00;
    transform: scale(1.05);
}

/* Questions Section */
.questions-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.questions-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.questions-left {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.questions-image-card {
    width: 180px;
    height: 480px;
    background: linear-gradient(180deg, #f59c00 0%, #f59c00 100%);
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.questions-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.questions-text {
    padding-top: 20px;
}

.questions-text h2 {
    font-size: 42px;
    font-weight: 500;
    color: #1c1d1f;
    margin-top: 130px;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.questions-text p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
}

.questions-right {
    flex: 1;
    max-width: 380px;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 0;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 400;
    color: #1c1d1f;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #f59c00;
    box-shadow: 0 0 0 3px rgba(245, 156, 0, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #fff;
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.btn-submit-form {
    background: #f59c00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 5px;
    box-shadow: 0 5px 50px 0 #F49E0D80;
}

.btn-submit-form:hover {
    background: #e08e00;
    transform: scale(1.05);
}

.form-messages {
    margin-top: 14px;
}

.form-message {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.form-message-success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.questions-card {
    display: none;
}

.questions-content {
    display: none;
}

/* Top Programs Section */
.top-programs-section {
    padding: 60px 0 100px 0;
    background: #1C1D1F;
    position: relative;
    overflow: hidden;
}

.top-programs-section::before {
    content: '';
    position: absolute;
    width: 262px;
    height: 262px;
    top: 50%;
    left: -133px;
    background: #BB5503;
    border-radius: 50%;
    filter: blur(280px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.top-programs-section::after {
    content: '';
    position: absolute;
    width: 326px;
    height: 326px;
    top: 20%;
    right: -113px;
    background: #ffda45;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.top-programs-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.featured-tag-dark {
    font-size: 16px;
    font-weight: 400;
    color: #f59c00;
    margin-bottom: 2px;
}

.top-programs-header h2 {
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.top-programs-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

.top-programs-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 1;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFD946;
    border: none;
    color: #1C1D1F;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-prev {
    left: -22px;
}

.slider-next {
    right: -22px;
}

.slider-arrow:hover {
    background: #ffce00;
    transform: scale(1.1);
}

.top-programs-grid {
    display: flex;
    gap: 24px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.top-programs-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.top-program-card {
    background: #fff;
    border-radius: 10px;
    width: calc(25% - 18px);
    min-width: calc(25% - 18px);
    max-width: calc(25% - 18px);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.top-program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Top Program Card Background Images */
.top-program-image.bg-hr {
    background: url('/static/images/hr-home.png') center/cover no-repeat;
}

.top-program-image.bg-aba {
    background: url('/static/images/aba-home.png') center/cover no-repeat;
}

.top-program-image.bg-gba {
    background: url('/static/images/gba-home.png') center/cover no-repeat;
}

.top-program-image.bg-banking {
    background: url('/static/images/banking-home2.png') center/cover no-repeat;
}

.top-program-image.bg-neuro {
    background: url('/static/images/neuro-home.png') center/cover no-repeat;
}

.top-program-image.bg-hospital {
    background: url('/static/images/ha-home.png') center/cover no-repeat;
}

.program-person {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 200px;
    width: auto;
    object-fit: contain;
}

.program-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FFC51B;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
}

.program-image-text {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
}

.program-image-text strong {
    font-weight: 700;
}

.top-program-content {
    padding: 24px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-program-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.top-program-content p {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-view-courses {
    display: block;
    background: #F59C00;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border: 2px solid #F59C00;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.btn-view-courses:hover {
    background: #e08e00;
    border-color: #e08e00;
    color: #fff;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.reviews-section h2 {
    font-size: 42px;
    font-weight: 500;
    color: #0e0e11;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0;
    line-height: 1;
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score span {
    font-size: 16px;
    font-weight: 400;
    color: #424548;
    letter-spacing: 0;
}

.rating-info p {
    font-size: 16px;
    font-weight: 400;
    color: #424548;
    letter-spacing: 0;
}

.reviews-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 120px;
}

.reviews-left {
    flex-shrink: 0;
    width: 200px;
}

.quote-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.reviews-left h3 {
    font-size: 28px;
    font-weight: 500;
    color: #0e0e11;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.reviews-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    align-items: stretch;
    animation: scrollReviews 30s linear infinite;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
}

.review-card-inner {
    background: #fff;
    border-radius: 16px 16px 16px 0;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card-inner::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #fff;
}

.review-text {
    font-size: 12px;
    font-weight: 400;
    color: #424548;
    line-height: 1.5;
    margin-bottom: 10px;
}

.review-stars {
    color: #f49e0d;
    font-size: 12px;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-left: 8px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f5;
}

svg.reviewer-avatar {
    background: #e5e7eb;
    padding: 8px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 500;
    color: #0e0e11;
    margin: 0;
}

.reviewer-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #f9f9f9;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 500;
    color: #1c1d1f;
    margin-bottom: 60px;
    letter-spacing: -1.1px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 18px;
    font-weight: 300;
    color: #1c1d1f;
    line-height: 1.4;
}





/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.blog-header-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #0e0e11;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 8px;
}

.blog-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.see-all-link {
    font-size: 14px;
    font-weight: 500;
    color: #0e0e11;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.see-all-link span {
    font-size: 18px;
}

.see-all-link:hover {
    color: #f49e0d;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 41px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card a,
.blog-card a:hover,
.blog-card a:visited {
    text-decoration: none;
    color: inherit;
}

.blog-image {
    position: relative;
    height: 238px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, transparent 0%, rgba(226, 122, 1, 0.75) 100%);
}

.blog-image h3 {
    position: absolute;
    bottom: 24px;
    left: 25px;
    right: 100px;
    font-size: 20px;
    font-weight: 300;
    color: #f9f9f9;
    line-height: normal;
}

.blog-content {
    padding: 24px;
    background: #fafafa;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.blog-read-time {
    font-size: 12px;
    font-weight: 400;
    color: #A7A7A7;
}

.blog-date {
    font-size: 12px;
    font-weight: 400;
    color: #A7A7A7;
    margin-bottom: 0;
}

.blog-content h4 {
    font-size: 15px;
    font-weight: 400;
    color: #1E1E1E;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 6px;
}

.blog-content p {
    font-size: 12px;
    font-weight: 300;
    color: #A7A7A7;
    line-height: 1.4;
}

/* Blog Page Section */
.blog-page-section {
    padding: 120px 0 80px;
    background: #f5f5f5;
    min-height: 100vh;
}

.blog-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.blog-page-header .blog-header-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #1c1d1f;
    margin-bottom: 24px;
    line-height: 1.2;
    margin-top: 30px;
}

.blog-page-header .blog-subtitle {
    color: #A7A7A7;
}

.blog-page-section .blog-card {
    background: white;
}

.blog-page-section .blog-card .blog-content h4 {
    margin-bottom: 0;
    padding-top: 0;
}

/* Blog Featured Section - 3 Column Layout */
.blog-featured-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

/* Left Column - Small Cards */
.blog-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 2px solid #eee;
    padding-right: 24px;
}

.blog-card-small {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.blog-card-small .blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card-small .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-small .blog-image .blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, transparent 0%, rgba(226, 122, 1, 0.75) 100%);
}

.blog-card-small .blog-image h3 {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    z-index: 1;
}

.blog-card-small .blog-content {
    padding: 16px;
}

.blog-card-small .blog-content h4 {
    font-size: 13px;
    font-weight: 500;
    color: #1c1d1f;
    line-height: 1.4;
    margin-top: 10px;
}

/* Middle Column - Featured Card */
.blog-middle-column {
    display: flex;
    border-right: 2px solid #eee;
    padding-right: 24px;
}

.blog-card-featured {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-featured .blog-image {
    position: relative;
    height: 370px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-featured .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-featured .blog-image .blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, transparent 0%, rgba(226, 122, 1, 0.75) 100%);
}

.blog-card-featured .blog-image h3 {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: white;
    font-size: 35px;
    font-weight: 300;
    line-height: 1.3;
    z-index: 1;
}

.blog-card-featured .blog-content {
    padding: 20px;
    flex: 1;
}

.blog-card-featured .blog-content h4 {
    font-size: 35px;
    font-weight: 400;
    color: #1c1d1f;
    line-height: 110%;
    margin-top: 12px;
    
}

.blog-card-featured .blog-tag,
.blog-card-featured .blog-meta .blog-read-time,
.blog-card-featured .blog-meta .blog-date {
    font-size: 14px;
}

/* Right Column - Most Popular */
.blog-right-column {
    /* background: white; */
    border-radius: 16px;
    padding: 0 24px 24px 0px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); */
    height: fit-content;
}

.most-popular-title {
    font-size: 30px;
    font-weight: 400;
    color: #1c1d1f;
    margin-bottom: 15px;
    padding-bottom: 5px;
    /* border-bottom: 2px solid #FFD946; */
}

.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popular-post-item {
    padding-bottom: 30px;
    padding-left: 12px;
    border-bottom: 1px solid #eee;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.popular-meta-left {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #888;
}

.popular-meta-left .blog-tag {
    color: #1c1d1f;
    font-weight: 600;
}

.popular-post-item h4 {
    font-size: 14px;
    font-weight: 400;
    color: #1E1E1E;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.3s;
}

/* .popular-post-item h4:hover {
    color: #FFD946;
} */

/* Blog Meta Styles */
.blog-tag {
    background: transparent;
    color: #1c1d1f;
    font-size: 11px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.blog-meta .blog-read-time,
.popular-post-meta .blog-read-time {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

.blog-meta .blog-date,
.popular-post-meta .blog-date {
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-left: auto;
}


/* FAQ Section */
.faq-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.faq-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #1C1D1F;
    line-height: 1;
    margin-bottom: 20px;
}

.faq-left p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    cursor: pointer;
}

.faq-question span {
    font-size: 13px;
    font-weight: 500;
    color: #1c1d1f;
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 25px;
    height: 25px;
    background: #FFD946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-icon svg {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 16px 16px;
}

.faq-answer p {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1c1d1f;
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logo {
    height: 80px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    line-height: 1.6;
    max-width: 400px;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-contact-item a {
    font-size: 14px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #f49e0d;
}

.footer-links-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 130px;
    margin-top: 70px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: disc;
    padding-left: 18px;
}

.footer-links li {
    margin-bottom: 0;
    color: #aaa;
}

.footer-links a {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f49e0d;
}

.footer-form-wrapper {
    background: transparent;
    min-width: 450px;
    margin-left: auto;
    padding-left: 10px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-form-group label {
    font-size: 13px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
}

.footer-form-group input,
.footer-form-group select,
.footer-form-group textarea {
    background: #2a2b2d;
    border: 1px solid #3a3b3d;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.footer-form-group select {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.footer-form-group input::placeholder,
.footer-form-group textarea::placeholder {
    color: #666;
}

.footer-form-group input:focus,
.footer-form-group select:focus,
.footer-form-group textarea:focus {
    border-color: #f49e0d;
}

.footer-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.footer-form-group select option {
    background: #1c1d1f;
    color: white;
}

.btn-footer-submit {
    background: #f49e0d;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
    width: fit-content;
}

.btn-footer-submit:hover {
    background: #e08d00;
}

.footer-form-messages {
    margin-top: 16px;
}

.footer-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-message-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.footer-message-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer-bottom {
    background: #292929;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 300;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container,
    .header-inner {
        padding: 0 80px;
    }
    
    .admission-card {
        right: 20px;
    }
    
    .info-card {
        padding: 24px 32px;
        gap: 30px;
    }
    
    .iacet-logo {
        width: 120px;
    }
    
    .hero {
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .container,
    .header-inner {
        padding: 0 40px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .courses-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-wrapper {
        gap: 40px;
    }
    
    .admission-card {
        position: static;
        margin-top: 40px;
        width: 100%;
        max-width: 300px;
    }
    
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {    
    .hero-title h1 {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .courses-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .accred-item {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .footer-links-wrapper {
        gap: 15px;
        justify-content: space-between;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-left h2 {
        font-size: 28px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .questions-content {
        margin-left: 0;
    }
    
    .questions-card {
        display: none;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.highlight {
    color: #f49e0d;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Sticky Bottom Banner */
.sticky-bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #E27A01;
    padding: 10px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sticky-bottom-banner p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    margin: 0;
}

.sticky-bottom-banner .btn-enquire {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-bottom-banner .btn-enquire:hover {
    background: transparent;
    color: #fff;
}

/* Enquiry Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #1c1d1f;
}

.popup-title {
    font-size: 24px;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 24px;
    text-align: center;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popup-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1c1d1f;
}

.popup-form-group input,
.popup-form-group select {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #1c1d1f;
    background: #fff;
    transition: border-color 0.3s;
}

.popup-form-group input:focus,
.popup-form-group select:focus {
    outline: none;
    border-color: #f49e0d;
}

.popup-form-group input::placeholder {
    color: #999;
}

.btn-popup-submit {
    background: #f49e0d;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.btn-popup-submit:hover {
    background: #e08d00;
}

.popup-success-message {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    text-align: center;
}

.popup-success-message p {
    font-size: 14px;
    margin: 0;
}

/* Floating Contact Icons */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9998;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.floating-icons a:hover {
    transform: scale(1.1);
}

.floating-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Brochure Download Popup */
.brochure-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brochure-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.brochure-popup-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: brochurePopupSlideIn 0.3s ease;
}

@keyframes brochurePopupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brochure-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.brochure-popup-close:hover {
    color: #333;
}

.brochure-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #1c1d1f;
    margin: 0 0 8px 0;
    text-align: center;
}

.brochure-popup-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px 0;
    text-align: center;
}

.brochure-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brochure-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.brochure-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.brochure-form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.brochure-form-group input:focus {
    outline: none;
    border-color: #f9a825;
}

.brochure-form-group input::placeholder {
    color: #999;
}

.btn-brochure-submit {
    background: #f9a825;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.btn-brochure-submit:hover {
    background: #e08d00;
}

.brochure-success-message {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    text-align: center;
}

.brochure-success-message p {
    font-size: 14px;
    margin: 0 0 12px 0;
}

.btn-brochure-download {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-brochure-download:hover {
    background: #15803d;
    color: #fff;
}

.course-hero-title .highlight-light {
    color: #E27A01;
    font-weight: 400;
}
