/* =====================================
   HERO BANNER
===================================== */

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f8fa;
}

/* =====================================
   SLIDER
===================================== */

.hero-slider {
    width: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
    animation: fadeSlide 0.7s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================
   CONTAINER
===================================== */

.hero-container {
    width: 92%;
    max-width: 1400px;

    min-height: 520px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

/* =====================================
   LEFT CONTENT
===================================== */

.hero-content {
    width: 48%;
    z-index: 2;
}

.hero-content h1 {
    margin: 0;

    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.15;

    font-weight: 700;

    color: #171b46;
}

.hero-content h1 span {
    display: block;
    color: #d91b62;
}

/* SUB TITLE */

.hero-content h3 {
    margin: 15px 0 20px;

    font-size: 22px;
    font-weight: 500;

    font-family: cursive;

    color: #555;
}

/* DESCRIPTION */

.hero-content p {
    max-width: 600px;

    margin-bottom: 28px;

    font-size: 15px;
    line-height: 1.8;

    color: #454545;
}

/* =====================================
   FEATURES
===================================== */

.hero-features {
    display: flex;
    align-items: flex-start;

    gap: 28px;

    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;

    gap: 10px;
}

.feature-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f6;

    color: #d91b62;

    font-size: 18px;
}

.feature-item div:last-child {
    display: flex;
    flex-direction: column;
}

.feature-item strong {
    font-size: 13px;
    color: #303030;
}

.feature-item span {
    margin-top: 3px;

    font-size: 11px;
    color: #666;
}

/* =====================================
   BUTTONS
===================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;
}

.hero-buttons a {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

/* PRIMARY */

.btn-primary {
    background: #df0b5c;
    color: #fff;
}

.btn-primary:hover {
    background: #bd0048;
    color: #fff;

    transform: translateY(-3px);
}

/* CALL */

.btn-outline {
    border: 2px solid #e177a2;
    color: #d91b62;
    background: #fff;
}

.btn-outline:hover {
    background: #fff0f6;
    color: #d91b62;
}

/* WHATSAPP */

.btn-whatsapp {
    border: 2px solid #8cc6a5;
    color: #2a8c4c;
    background: #fff;
}

.btn-whatsapp:hover {
    background: #effcf4;
    color: #218044;
}

/* =====================================
   HERO IMAGE
===================================== */

.hero-image {
    width: 52%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 720px;

    height: auto;

    display: block;

    object-fit: contain;
}

/* =====================================
   SLIDER ARROWS
===================================== */

.slider-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #d91b62;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    cursor: pointer;

    z-index: 10;

    opacity: 0;

    transition: 0.3s;
}

.hero-banner:hover .slider-arrow {
    opacity: 1;
}

.prev-slide {
    left: 25px;
}

.next-slide {
    right: 25px;
}

.slider-arrow:hover {
    background: #d91b62;
    color: #fff;
}

/* =====================================
   DOTS
===================================== */

.slider-dots {
    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    z-index: 20;
}

.dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #ccc;

    cursor: pointer;

    transition: 0.3s;
}

.dot.active {
    width: 28px;

    border-radius: 10px;

    background: #d91b62;
}

/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 991px) {
    .hero-container {
        min-height: auto;

        padding: 60px 0;

        gap: 25px;
    }

    .hero-content {
        width: 50%;
    }

    .hero-image {
        width: 50%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-features {
        gap: 15px;
    }

    .feature-item strong {
        font-size: 11px;
    }

    .feature-item span {
        font-size: 9px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;

        font-size: 14px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons a {
        min-height: 42px;
        padding: 0 13px;
        font-size: 10px;
    }
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 767px) {
    .hero-container {
        width: 90%;

        flex-direction: column-reverse;

        text-align: center;

        padding: 35px 0 55px;

        gap: 15px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-image img {
        max-width: 500px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content h3 {
        font-size: 18px;
        margin: 10px 0 15px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.7;

        margin-bottom: 25px;
    }

    /* FEATURES */

    .hero-features {
        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;

        margin-bottom: 25px;
    }

    .feature-item {
        text-align: left;
    }

    /* BUTTONS */

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons a {
        min-height: 44px;

        padding: 0 16px;

        font-size: 10px;
    }

    /* ARROWS */

    .slider-arrow {
        display: none;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .hero-container {
        width: 90%;
        padding: 25px 0 50px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h3 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 12px;
    }

    /* FEATURES VERTICAL */

    .hero-features {
        display: grid;

        grid-template-columns: 1fr;

        justify-items: center;

        gap: 12px;
    }

    .feature-item {
        width: 210px;
    }

    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
    }

    .slider-dots {
        bottom: 15px;
    }
}

/* =====================================
   ACHIEVEMENT SECTION
===================================== */

.achievement-section {
    position: relative;
    width: 100%;
    padding: 0 0 35px;
    background: #f8f8fa;
}

/* =====================================
   MAIN CONTAINER
===================================== */

.achievement-container {
    width: 92%;
    max-width: 1280px;
    margin: 12px auto;

    min-height: 105px;

    padding: 20px 35px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;

    background: #171741;

    border-radius: 22px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* =====================================
   SINGLE ITEM
===================================== */

.achievement-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 5px 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.achievement-item:last-child {
    border-right: none;
}

/* =====================================
   ICON
===================================== */

/* .achievement-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;

    font-size: 31px;
}

.achievement-icon i {
    color: #ffffff;
} */

.achievement-icon {
    width: 60px;
    height: 60px;
    min-width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon img {
    width: 54px;
    height: 54px;

    object-fit: contain;
    display: block;
}

/* =====================================
   TEXT
===================================== */

.achievement-content {
    display: flex;
    flex-direction: column;
}

.achievement-content h3 {
    margin: 0 0 5px;

    color: #e50062;

    font-size: 22px;
    font-weight: 700;

    line-height: 1;
}

.achievement-content p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.5;
}

/* =====================================
   LARGE LAPTOP
===================================== */

@media (max-width: 1200px) {
    .achievement-container {
        width: 94%;
        padding: 18px 20px;
    }

    .achievement-item {
        gap: 10px;
        padding: 5px 10px;
    }

    .achievement-icon {
        font-size: 25px;
        width: 35px;
    }

    .achievement-content h3 {
        font-size: 15px;
    }

    .achievement-content p {
        font-size: 9px;
    }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
    .achievement-section {
        padding: 30px 0;
    }

    .achievement-container {
        width: 92%;

        grid-template-columns: repeat(3, 1fr);

        gap: 0;

        padding: 20px;

        border-radius: 18px;
    }

    .achievement-item {
        justify-content: flex-start;

        padding: 18px 15px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Remove bottom border for last row */
    /* .achievement-item:nth-child(4),
    .achievement-item:nth-child(5) {
        border-bottom: none;
    } */
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {
    .achievement-section {
        padding: 25px 0;
    }

    .achievement-container {
        width: 90%;

        grid-template-columns: repeat(2, 1fr);

        padding: 15px;

        border-radius: 16px;
    }

    .achievement-item {
        justify-content: flex-start;

        gap: 10px;

        padding: 16px 8px;
    }

    .achievement-icon {
        width: 32px;
        height: 32px;

        font-size: 23px;
    }

    .achievement-content h3 {
        font-size: 16px;
    }

    .achievement-content p {
        font-size: 9px;
    }

    /* Last item full width */
    .achievement-item:last-child {
        grid-column: span 2;

        justify-content: center;

        border-bottom: none;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .achievement-container {
        width: 92%;

        grid-template-columns: 1fr;

        padding: 12px 20px;

        border-radius: 15px;
    }

    .achievement-item {
        width: 100%;

        justify-content: flex-start;

        padding: 14px 8px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .achievement-item:last-child {
        grid-column: span 1;

        justify-content: flex-start;
    }

    .achievement-icon {
        width: 38px;
        height: 38px;

        font-size: 25px;
    }

    .achievement-content h3 {
        font-size: 17px;
    }

    .achievement-content p {
        font-size: 10px;
    }
}

/* =====================================
   DESIGN COURSES SECTION
===================================== */

.design-courses-section {
    width: 100%;
    padding: 30px 0 30px;
    background: #ffffff;
}

.courses-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================================
   HEADING
===================================== */

.courses-heading {
    text-align: center;
    margin-bottom: 28px;
}

.courses-heading h2 {
    margin: 0;
    color: #202020;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.courses-heading h2 span {
    color: #df0b5c;
}

/* =====================================
   COURSE GRID
===================================== */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =====================================
   COURSE CARD
===================================== */

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;

    border: 1px solid #e5e5e5;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

    display: flex;
    flex-direction: column;

    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}

/* =====================================
   COURSE IMAGE
===================================== */

.course-image {
    position: relative;
    width: 100%;
    height: 165px;
    overflow: hidden;
}

.course-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.course-card:hover .course-image > img {
    transform: scale(1.06);
}

/* =====================================
   IMAGE ICON
===================================== */

.course-image-icon {
    position: absolute;

    left: 25px;
    top: 50%;

    transform: translateY(-50%);

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 28px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}

/* FASHION */

.fashion-icon {
    background: #df0b5c;
}

/* GRAPHIC */

.graphic-icon {
    background: #6625a9;
}

/* INTERIOR */

.interior-icon {
    background: #287c2d;
}

/* =====================================
   COURSE BODY
===================================== */

.course-body {
    padding: 18px 20px 22px;

    display: flex;
    flex-direction: column;

    flex-grow: 1;
}

.course-body h3 {
    margin: 0 0 12px;

    font-size: 20px;
    font-weight: 700;

    color: #252525;
}

.course-body p {
    margin: 0 0 18px;

    min-height: 62px;

    color: #4f4f4f;

    font-size: 13px;
    line-height: 1.7;
}

/* =====================================
   COURSE LIST - FORCE TEXT COLOR
===================================== */

.course-card .course-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 22px !important;
}

.course-card .course-list li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    color: #30343b !important;

    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;

    margin-bottom: 12px !important;
}

/* =====================================
   ICON COMMON
===================================== */

.course-card .course-list li i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0 !important;

    margin: 0 !important;

    font-size: 15px !important;
}

/* ICON */

/* .course-list li i {
    margin-top: 1px;
    font-size: 14px;
} */

/* =====================================
   FASHION - PINK
===================================== */

.course-card.fashion-card .course-list li {
    color: #30343b !important;
}

.course-card.fashion-card .course-list li i {
    color: #df0b5c !important;
}

/* =====================================
   GRAPHIC - PURPLE
===================================== */

.course-card.graphic-card .course-list li {
    color: #30343b !important;
}

.course-card.graphic-card .course-list li i {
    color: #6625a9 !important;
}

/* =====================================
   INTERIOR - GREEN
===================================== */

.course-card.interior-card .course-list li {
    color: #30343b !important;
}

.course-card.interior-card .course-list li i {
    color: #287c2d !important;
}

/* =====================================
   COURSE BUTTON
===================================== */

.course-btn {
    width: 100%;

    min-height: 45px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    text-decoration: none;

    border: 2px solid #ddd;

    border-radius: 4px;

    background: #fff;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

/* FASHION BUTTON */

.fashion-card .course-btn {
    color: #df0b5c;
    border-color: #f0aac7;
}

.fashion-card .course-btn:hover {
    background: #df0b5c;
    color: #fff;
}

/* GRAPHIC BUTTON */

.graphic-card .course-btn {
    color: #6625a9;
    border-color: #c8b2e1;
}

.graphic-card .course-btn:hover {
    background: #6625a9;
    color: #fff;
}

/* INTERIOR BUTTON */

.interior-card .course-btn {
    color: #287c2d;
    border-color: #aad2ad;
}

.interior-card .course-btn:hover {
    background: #287c2d;
    color: #fff;
}

/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 991px) {
    .design-courses-section {
        padding: 55px 0 65px;
    }

    .courses-container {
        width: 92%;
    }

    .courses-heading h2 {
        font-size: 27px;
    }

    /* 2 Cards Per Row */

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    /* Third card full width */

    .course-card:nth-child(3) {
        grid-column: span 2;
        width: calc(50% - 11px);
        justify-self: center;
    }

    .course-image {
        height: 180px;
    }

    .course-body h3 {
        font-size: 18px;
    }
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 767px) {
    .design-courses-section {
        padding: 45px 0 55px;
    }

    .courses-container {
        width: 90%;
    }

    .courses-heading {
        margin-bottom: 25px;
    }

    .courses-heading h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    /* ONE CARD PER ROW */

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .course-card:nth-child(3) {
        grid-column: auto;
        width: 100%;
    }

    .course-image {
        height: 190px;
    }

    .course-image-icon {
        width: 58px;
        height: 58px;

        left: 20px;

        font-size: 24px;
    }

    .course-body {
        padding: 18px;
    }

    .course-body h3 {
        font-size: 19px;
    }

    .course-body p {
        font-size: 13px;
        min-height: auto;
    }

    .course-list li {
        font-size: 12px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .design-courses-section {
        padding: 20px 0 25px;
    }

    .courses-heading h2 {
        font-size: 21px;
    }

    .course-image {
        height: 160px;
    }

    .course-image-icon {
        width: 52px;
        height: 52px;

        font-size: 21px;
    }

    .course-body {
        padding: 16px;
    }

    .course-body h3 {
        font-size: 20px;
    }

    .course-body p {
        font-size: 14px;
        line-height: 1.7;
    }

    .course-list {
        margin-bottom: 18px;
    }

    .course-list li {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .course-btn {
        min-height: 43px;
        font-size: 10px;
    }
    .courses-heading h2 span {
        font-size: 30px;
    }
}

/* =====================================
   WHY CHOOSE SECTION
===================================== */

.why-choose-section {
    width: 100%;
    padding: 20px 0;
    background: #ffffff;
}

.why-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    padding: 28px 35px 25px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* =====================================
   HEADING
===================================== */

.why-container > h2 {
    text-align: center;

    margin: 0 0 28px;

    font-size: 25px;
    font-weight: 700;

    color: #202020;

    line-height: 1.3;
}

.why-container > h2 span {
    color: #df0b5c;
}

/* =====================================
   GRID
===================================== */

.why-choose-grid {
    display: grid;

    grid-template-columns: repeat(8, 1fr);

    align-items: stretch;
}

/* =====================================
   ITEM
===================================== */

.why-item {
    position: relative;

    min-height: 90px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    text-align: center;

    padding: 0 12px;
}

/* Vertical separator */

.why-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 8px;

    width: 1px;
    height: 62px;

    background: #eeeeee;
}

/* =====================================
   ICON
===================================== */

.why-icon {
    font-size: 30px !important;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #df0b5c;
    margin-bottom: 8px;
}

.why-icon i {
    /* color: #df0b5c; */

    font-size: 38px !important;

    line-height: 1;

    transition: all 0.3s ease;
}

.why-choose-section .why-icon i {
    color: #df0b5c !important;
    -webkit-text-fill-color: #df0b5c !important;
    opacity: 1 !important;
}

/* =====================================
   TEXT
===================================== */

.why-item h4 {
    margin: 0;

    color: #333333;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.45;
}

/* =====================================
   HOVER
===================================== */

.why-item {
    transition: all 0.3s ease;
}

.why-item:hover .why-icon i {
    color: #b9084b;

    transform: translateY(-4px) scale(1.08);
}

/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 991px) {
    .why-choose-section {
        padding: 45px 0;
    }

    .why-container {
        padding: 28px 20px;
    }

    .why-container > h2 {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 30px;
    }

    .why-item {
        min-height: 95px;
    }

    /* Remove old separator */

    .why-item:nth-child(4)::after {
        display: none;
    }

    .why-item:not(:last-child)::after {
        height: 65px;
    }

    /* Bottom row separators */

    .why-item:nth-child(5)::after,
    .why-item:nth-child(6)::after,
    .why-item:nth-child(7)::after {
        display: block;
    }

    .why-item:nth-child(8)::after {
        display: none;
    }
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 767px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-container {
        width: 90%;

        padding: 25px 15px;

        border-radius: 10px;
    }

    .why-container > h2 {
        font-size: 21px;

        margin-bottom: 28px;

        padding: 0 10px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 25px;
    }

    .why-item {
        min-height: 100px;

        padding: 0 8px;
    }

    /* Reset all separators */

    .why-item::after {
        display: none !important;
    }

    /* Add separator between columns */

    .why-item:nth-child(odd)::after {
        display: block !important;

        right: 0;
        top: 8px;

        width: 1px;
        height: 70px;

        background: #eeeeee;
    }

    .why-icon i {
        font-size: 29px;
    }

    .why-item h4 {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .why-choose-section {
        padding: 20px 0;
    }

    .why-container {
        width: 92%;

        padding: 10px 10px;
    }

    .why-container > h2 {
        font-size: 22px !important;

        margin-bottom: 25px;
    }

    .why-icon {
        margin-bottom: 7px;
    }

    .why-icon i {
        font-size: 26px;
    }

    .why-item h4 {
        font-size: 13px;
    }
}

/* =====================================
   TESTIMONIAL SECTION
===================================== */

.testimonials-section {
    width: 100%;
    padding: 25px 0;
    background: #ffffff;
}

.testimonials-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================================
   HEADING
===================================== */

.testimonial-heading {
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #292929;
}

.testimonial-heading h2 span {
    color: #df0b5c;
}

/* =====================================
   SLIDER
===================================== */

.testimonial-slider {
    width: 100%;
    overflow: hidden;

    border: 1px solid #eeeeee;
    border-radius: 12px;

    background: #ffffff;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

/* =====================================
   CARD
===================================== */

.testimonial-card {
    min-width: 33.333%;
    box-sizing: border-box;

    padding: 28px 30px;

    position: relative;
}

/* Divider */

.testimonial-card:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 30px;

    width: 1px;
    height: calc(100% - 60px);

    background: #eeeeee;
}

/* =====================================
   STUDENT INFO
===================================== */

.student-info {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 15px;
}

.student-info img {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    object-fit: cover;

    flex-shrink: 0;
}

.student-info h4 {
    margin: 0 0 7px;

    font-size: 20px;
    font-weight: 700;

    color: #333;
}

/* =====================================
   STARS
===================================== */

.testimonials-section .stars {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

.testimonials-section .stars i,
.testimonial-card .stars i,
.stars .fa-star {
    color: #f5ad00 !important;
    -webkit-text-fill-color: #f5ad00 !important;
    fill: #f5ad00 !important;
    opacity: 1 !important;
    font-size: 13px !important;
}

/* =====================================
   REVIEW TEXT
===================================== */

.testimonial-card p {
    margin: 0 0 14px;

    color: #444;

    font-size: 14px;
    line-height: 1.8;

    min-height: 85px;
}

/* =====================================
   COURSE NAME
===================================== */

.testimonial-card h5 {
    margin: 0;

    color: #222;

    font-size: 17px;
    font-weight: 700;
}

/* =====================================
   DOTS
===================================== */

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 18px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d9d9d9;

    border: none;

    padding: 0;

    cursor: pointer;

    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #df0b5c;

    transform: scale(1.1);
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
    .testimonials-section {
        padding: 55px 0;
    }

    .testimonial-card {
        min-width: 50%;
        padding: 25px;
    }

    .testimonial-heading h2 {
        font-size: 26px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {
    .testimonials-section {
        padding: 20px 0;
    }

    .testimonials-container {
        width: 90%;
    }

    .testimonial-heading {
        margin-bottom: 22px;
    }

    .testimonial-heading h2 {
        font-size: 23px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 25px 20px;
    }

    .testimonial-card::after {
        display: none;
    }

    .student-info img {
        width: 48px;
        height: 48px;
    }

    .student-info h4 {
        font-size: 15px;
    }

    .testimonial-card p {
        min-height: auto;
        font-size: 12px;
        line-height: 1.7;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .testimonial-heading h2 {
        font-size: 26px !important;
    }

    .testimonial-card {
        padding: 22px 16px;
    }

    .student-info {
        gap: 12px;
    }

    .student-info img {
        width: 45px;
        height: 45px;
    }

    .testimonial-card p {
        margin-bottom: 16px !important;
        font-size: 12px;
    }
    .testimonial-card h5 {
        font-size: 12px;
    }
}

/* =====================================
   FAQ + CONTACT SECTION
===================================== */

.faq-contact-section {
    width: 100%;
    padding: 55px 0;
    background: #ffffff;
}

.faq-contact-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 25px;

    align-items: stretch;
}

/* =====================================
   FAQ BOX
===================================== */

.faq-box {
     background: #f5f3f3;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.faq-box h2 {
    margin: 0 0 14px;
    color: #292929;
    font-size: 34px !important;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* =====================================
   FAQ ITEM
===================================== */

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:first-of-type {
    border-top: 1px solid #e8e8e8;
}

.faq-question {
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 11px 10px;

    border: none;
    background: #ffffff;

    cursor: pointer;
    text-align: left;

    color: #333;
    font-size: 18px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}
/* Hover */
.faq-question:hover {
    background: #5b0b38;
    color: #ffffff !important;
}

/* Hover text */
.faq-question:hover span {
    color: #ffffff !important;
}

/* Hover icon */
.faq-question:hover i {
    color: #ffffff !important;
}

/* Active / Click */
.faq-item.active .faq-question {
    background: #df0b5c;
    color: #ffffff !important;
}

.faq-item.active .faq-question span,
.faq-item.active .faq-question i {
    color: #ffffff !important;
}

/* =====================================
   FAQ ANSWER
===================================== */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 10px;

    color: #666;

    font-size: 16px;
    line-height: 1.6;

    transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 120px;

    padding: 0 10px 12px;
}

.faq-item.active .faq-question {
    background: #df0b5c !important;
    color: #ffffff !important;
}

.faq-item.active .faq-question span,
.faq-item.active .faq-question i {
    color: #ffffff !important;
}

/* =====================================
   CONTACT CTA
===================================== */

.contact-cta-box {
    padding: 12px 12px;

    border-radius: 8px;

    background: linear-gradient(90deg, #fff8fb 0%, #ffffff 50%, #fff7fa 100%);

    border: 1px solid #f5e6ec;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.025);
}

/* =====================================
   CTA HEADING
===================================== */

.contact-cta-box h2 {
    margin: 0 0 10px;

    color: #c72b65;

    font-size: 30px !important;
    font-weight: 700;

    letter-spacing: 0.2px;
    margin-bottom: 40px !important;
}

.contact-cta-box > p {
    max-width: 480px;

    margin: 0 0 25px;

    color: #333;

    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px !important;
}

/* =====================================
   CONTACT DETAILS
===================================== */

.contact-details {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 42px;

    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;

    text-align: left;

    gap: 10px;
}

/* ICON */

.contact-item > i {
    font-size: 23px;
    color: #df0b5c;
}

/* WhatsApp */

.contact-item.whatsapp > i {
    color: #25d366;
}

/* Location */

.contact-item.location > i {
    color: #df0b5c;
}

/* TEXT */

.contact-item div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.contact-item span {
    color: #555;

    font-size: 18px;
    font-weight: 500;
}

.contact-item strong {
    color: #333;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.5;
}

/* =====================================
   ENQUIRE BUTTON
===================================== */

.enquire-now-btn {
    min-width: 165px;

    padding: 12px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #df0b5c;

    color: #ffffff;

    border-radius: 3px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.2px;

    transition: all 0.3s ease;

    box-shadow: 0 5px 14px rgba(223, 11, 92, 0.18);
}

.enquire-now-btn:hover {
    background: #bd084c;
    color: #ffffff;

    transform: translateY(-2px);
}

/* =====================================
   CONTACT ICON - SVG FONT AWESOME FIX
===================================== */

.contact-item > i,
.contact-item > svg {
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;

    color: #df0b5c !important;
    fill: currentColor !important;

    opacity: 1 !important;
    visibility: visible !important;

    flex-shrink: 0 !important;
}

/* WhatsApp Green */
.contact-item.whatsapp > i,
.contact-item.whatsapp > svg {
    color: #25d366 !important;
    fill: currentColor !important;
}

/* Location Pink */
.contact-item.location > i,
.contact-item.location > svg {
    color: #df0b5c !important;
    fill: currentColor !important;
}

/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 991px) {
    .faq-contact-section {
        padding: 50px 0;
    }

    .faq-contact-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-cta-box {
        padding: 35px 25px;
    }

    .contact-details {
        gap: 50px;
    }
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 767px) {
    .faq-contact-section {
        padding: 40px 0;
    }

    .faq-contact-container {
        width: 90%;
        gap: 20px;
    }

    /* FAQ */

    .faq-box {
        padding: 16px;
    }

    .faq-box h2 {
        font-size: 16px;
    }

    .faq-question {
        padding: 13px 5px;
        font-size: 12px;
    }

    .faq-answer {
        font-size: 11px;
    }

    /* CONTACT */

    .contact-cta-box {
        padding: 30px 18px;
    }

    .contact-cta-box h2 {
        font-size: 17px;
        line-height: 1.4;
    }

    .contact-cta-box > p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    /* Contact details */

    .contact-details {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        width: 100%;
        max-width: 250px;

        margin: 0 auto 25px;
    }

    .contact-item {
        width: 100%;
    }

    .contact-item > i {
        font-size: 22px;
        width: 25px;
        text-align: center;
    }

    .contact-item span {
        font-size: 10px;
    }

    .contact-item strong {
        font-size: 12px;
    }

    /* Button */

    .enquire-now-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .faq-contact-section {
        padding: 35px 0;
    }

    .faq-box h2 {
        font-size: 16px !important;
    }

    .faq-question {
        font-size: 11px;
    }

    .contact-cta-box h2 {
        font-size: 17px !important;
    }

    .contact-details {
        max-width: 220px;
    }
}
