/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    display: none;
    /* hide default bootstrap caret */
}

.navbar .dropdown-arrow::after {
    content: "\f107";
    /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 6px;
}

/* Base links */
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Default (Desktop) - Less space */
.nav-item .dropdown-arrow {
    margin-left: -25px !important;
    /* bring arrow closer */
    padding-left: 0 !important;
}

/* Mobile (screen width below 768px) - More space */
@media (max-width: 767px) {
    .nav-item .dropdown-arrow {
        margin-left: 1px !important;
        /* add some spacing */
        padding-left: 4px !important;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

/* Dropdown effect on desktop */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px !important;
    }

    .navbar-brand h2 {
        font-size: 18px !important;
        margin: 0;
    }

    .navbar-brand {
        gap: 6px;
    }
}

/* ===== Base Styles ===== */

/* ===== Base Styles ===== */

/* ===== Section Layout ===== */
.training-section {
    padding: 60px 20px;
    background: #ffffff;
    /* White section */
}

.training-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* ===== Intro Column ===== */
.training-intro h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000;
}

.training-intro h1 span {
    color: #b22222;
    /* Firebrick Red highlight */
}

.training-intro p {
    color: #000;
    font-size: 1rem;
}

/* ===== Image Column ===== */
.training-image {
    text-align: center;
}

.training-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
}

.training-image img:hover {
    transform: scale(1.05);
}

.btn-enroll {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 30px;
    background: linear-gradient(90deg, #b22222, #4169e1);
    /* Red → Blue */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(65, 105, 225, 0.35);
    /* Royal Blue shadow */
}

/* ===== Info Column ===== */

/* ===== Info Column (3rd column smaller height) ===== */
.training-info {
    max-height: 350px;
    /* smaller height than others */
    overflow-y: auto;
    /* scroll if content exceeds */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
}


.training-info h2 {
    margin-top: 15px;
    color: #4169e1;
    /* Royal Blue headings */
}

.training-info p {
    margin: 8px 0;
    color: #000;
}

.training-info ul {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.training-info ul li {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #000;
}

.training-info ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #b22222;
    /* Red checkmarks */
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .training-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .training-info {
        text-align: left;
    }
}

/* ===== Animations ===== */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

.zoom-in {
    animation: zoomIn 1s ease forwards;
}


/* mock-exams.css
   Primary colors: #b22222 (red) and #4169e1 (blue)
   If you change class-name prefix, update selectors accordingly.
*/

/* Base variables */
:root {
    --mp-red: #b22222;
    --mp-blue: #4169e1;
    --mp-bg: #f6f8fb;
    --mp-card-bg: linear-gradient(180deg, rgba(65, 105, 225, 0.03), rgba(178, 34, 34, 0.02));
    --mp-radius: 12px;
    --mp-ease: cubic-bezier(.2, .9, .2, 1);
    --mp-font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

body {
    font-family: var(--mp-font);
    margin: 0;
    background: linear-gradient(180deg, #f8fbff, #eef4ff);
    color: #0b1320
}

/* Section wrapper */
.mp-section {
    padding: 28px 16px
}

.mp-wrap {
    max-width: 1100px;
    margin: 0 auto
}

/* header */
.mp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.mp-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--mp-blue)
}

.mp-topnav {
    display: flex;
    gap: 8px
}

.mp-tab {
    background: transparent;
    border: 1px solid rgba(10, 20, 40, 0.06);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .25s var(--mp-ease)
}

.mp-tab:hover {
    transform: translateY(-3px)
}

.mp-active.mp-tab,
.mp-tab.mp-active {
    background: linear-gradient(90deg, var(--mp-red), var(--mp-blue));
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.12)
}

/* Panels */
.mp-main {
    display: block
}

.mp-panel {
    display: none
}

.mp-panel.mp-active {
    display: block;
    animation: mpFadeIn .38s ease both
}

@keyframes mpFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* card */
.mp-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--mp-radius);
    padding: 16px;
    box-shadow: 0 10px 30px rgba(11, 19, 32, 0.06);
    border: 1px solid rgba(10, 20, 40, 0.04)
}

/* top row */
.mp-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.mp-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700
}

.mp-ready {
    color: var(--mp-blue);
    background: rgba(65, 105, 225, 0.08)
}

.mp-live {
    color: var(--mp-red);
    background: rgba(178, 34, 34, 0.06)
}

.mp-info {
    display: block;
    color: #5a6b86
}

/* actions */
.mp-actions {
    display: flex;
    gap: 8px;
    align-items: center
}

.mp-btn {
    border: 1px solid rgba(11, 19, 32, 0.06);
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .18s var(--mp-ease), box-shadow .18s;
    box-shadow: 0 6px 18px rgba(11, 19, 32, 0.03)
}

.mp-btn:hover {
    transform: translateY(-3px)
}

.mp-ghost {
    background: transparent
}

.mp-primary {
    background: linear-gradient(90deg, var(--mp-blue), var(--mp-red));
    color: #fff;
    border: none;
    box-shadow: 0 8px 26px rgba(65, 105, 225, 0.12)
}

/* QA area */
.mp-qa {
    margin-top: 14px
}

.mp-qmeta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

#mp-question {
    font-size: 1.05rem;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(65, 105, 225, 0.02), rgba(178, 34, 34, 0.02));
    border: 1px solid rgba(11, 19, 32, 0.03)
}

.mp-options {
    display: grid;
    gap: 10px;
    margin-top: 12px
}

.mp-options .mp-opt {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(11, 19, 32, 0.06);
    cursor: pointer;
    transition: transform .15s var(--mp-ease), background .15s
}

.mp-options .mp-opt:hover {
    transform: translateY(-4px)
}

.mp-options .mp-opt.mp-selected {
    outline: 3px solid rgba(65, 105, 225, 0.12);
    background: linear-gradient(90deg, rgba(65, 105, 225, 0.03), rgba(178, 34, 34, 0.03))
}

/* dots & footer */
.mp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px
}

.mp-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.mp-dot {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(11, 19, 32, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s
}

.mp-dot.mp-answered {
    background: linear-gradient(90deg, var(--mp-blue), var(--mp-red));
    color: #fff
}

.mp-small {
    font-size: 0.85rem;
    color: #51607a
}

/* list (schedules & results) */
.mp-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background: var(--mp-card-bg);
    border: 1px solid rgba(11, 19, 32, 0.03)
}

.mp-input {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(11, 19, 32, 0.07);
    min-width: 140px
}

/* responsive */
@media (max-width:860px) {
    .mp-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .mp-actions {
        width: 100%;
        display: flex;
        flex-wrap: wrap
    }

    .mp-dots {
        gap: 6px
    }

    .mp-dot {
        width: 30px;
        height: 30px
    }
}

/* subtle pulse for live state */
.mp-pulse {
    animation: mpPulse 2s infinite
}

@keyframes mpPulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }

    100% {
        transform: scale(1)
    }
}


/* 🌍 Global Styles */

/* 🎯 Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #4169e1, #b22222);
    color: #fff;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideInDown 1.2s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1.8s ease;
}

.cta-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    background: #fff;
    color: #b22222;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: zoomIn 2.5s ease;
}

.cta-btn:hover {
    background: #4169e1;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 💡 Training Highlights */
.training-highlights {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.section-title {
    font-size: 36px;
    color: #b22222;
    margin-bottom: 40px;
    animation: slideInDown 1.5s ease;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.highlight-card {
    background: #f0f0ff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    animation: zoomIn 1.5s ease;
}

.highlight-card h3 {
    color: #4169e1;
    margin-bottom: 12px;
    font-size: 22px;
}

.highlight-card p {
    font-size: 16px;
    opacity: 0.9;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* 📅 Schedule Section */
.schedule {
    padding: 80px 20px;
    background: linear-gradient(135deg, #b22222, #4169e1);
    color: #fff;
    text-align: center;
}

.schedule-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.schedule-card {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 18px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: zoomIn 1.5s ease;
}

.schedule-card h3 {
    color: #b22222;
    margin-bottom: 10px;
}

.schedule-card p {
    margin-bottom: 15px;
}

.cta-btn.small {
    padding: 10px 20px;
    font-size: 16px;
}

/* 🌟 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-60px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .section-title {
        font-size: 28px;
    }
}


/* General Reset */

/* Section Styling */
.objectives-section {
    background: linear-gradient(135deg, #4169e1 40%, #b22222 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    animation: fadeDown 1.2s ease;
}

.section-title span {
    color: #ffd700;
}

.sub-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeUp 1.4s ease;
}

/* Grid Layout */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Cards */
.objective-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    animation: zoomIn 1s ease forwards;
    opacity: 0;
}

.objective-card:nth-child(1) {
    animation-delay: 0.3s;
}

.objective-card:nth-child(2) {
    animation-delay: 0.6s;
}

.objective-card:nth-child(3) {
    animation-delay: 0.9s;
}

.objective-card:nth-child(4) {
    animation-delay: 1.2s;
}

.objective-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.objective-card p {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Hover Effect */
.objective-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .sub-title {
        font-size: 1.3rem;
    }

    .objective-card p {
        font-size: 1rem;
    }
}

.course-section {
    padding: 50px 15px;
    background: linear-gradient(135deg, #f7f9fc, #eef3f9);
}

.course-section .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* responsive smaller columns */
    gap: 20px;
}

/* ===== Card Styling ===== */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 18px;
    /* smaller padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    /* limit height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card h2 {
    font-size: 20px;
    /* reduced */
    margin-bottom: 12px;
    color: #0d47a1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    font-size: 14px;
    /* smaller text */
    padding: 8px 0;
    /* smaller spacing */
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.card ul li:last-child {
    border-bottom: none;
}

.card ul li i {
    color: #1976d2;
    font-size: 16px;
    transition: transform 0.3s;
}

.card ul li:hover {
    color: #1976d2;
}

.card ul li:hover i {
    transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .course-section .container {
        grid-template-columns: 1fr;
    }
}


/* Section Wrapper */
.info-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Left & Right Cards */
.info-card {
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

.attend-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
    animation-delay: 0.3s;
}

.languages-card {
    background: linear-gradient(135deg, #ff4b5c, #c31432);
    animation-delay: 0.6s;
}

.info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
}

.info-card h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li i {
    color: #fff;
    font-size: 1rem;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
        padding: 25px;
    }
}

/* General Styling */


/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.faq-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: royalblue;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-in-out;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item */
.faq-item {
    border: 2px solid royalblue;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: red;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* FAQ Question */
.faq-question {
    width: 100%;
    background: royalblue;
    color: white;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: red;
}

.arrow {
    float: right;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    padding: 0 18px;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer */
.footer {
    background: #4169e1;
    /* Royal Blue */
    color: #fff;
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative animated waves */
.footer::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: red;
    clip-path: polygon(0 100%, 100% 0%, 100% 100%);
    animation: wave 5s infinite linear;
}

@keyframes wave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Column Styling */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: red;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer-col p,
.footer-col ul,
.footer-col form {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f1f1f1;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: red;
}

/* Logo - Circular & Full Display */
.footer-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* Perfect circle */
    object-fit: contain;
    /* Show full logo (no cropping) */
    background: #fff;
    /* Background inside circle */
    padding: 4px;
    /* Space so text in logo is not cut */
    border: 2px solid red;
    /* Theme border */
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.footer-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: red;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: red;
    transform: scale(1.2);
}

/* Form */
.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 0.9rem;
}

.footer-form button {
    width: 100%;
    padding: 12px;
    background: red;
    color: #fff;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #fff;
    color: red;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive - smaller logo on mobile */
@media (max-width: 600px) {
    .footer-logo {
        width: 130px;
        height: 130px;
        padding: 8px;
    }
}