/* =======================================
                    HOME
 ========================================= */
.home { 
    height: 90vh; 
    position: relative; 
    overflow: hidden;
}

.swiper { 
    width: 100%; 
    height: 95%; 
}

/* Slide 1 - Welcome Slide */
.slide1 { 
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/banners/Home-Hero-banner-2.png');
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
}

/* Slide 2 - Boutique Course */
.slide2 { 
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/banners/Home-Hero-banner-2.png');
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
}

/* Slide 3 - Beauty Parlour Course */
.slide3 { 
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/banners/Home-Hero-banner-3.png');
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
}

/* Slide 4 - Body Massage Course */
.slide4 { 
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/banners/Home-Hero-banner-3.png');
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
}

/* Content & Button */
.content { 
    position: absolute; 
    top: 50%; 
    left: 10%; 
    transform: translateY(-50%); 
    color: var(--white); 
    z-index: 10; 
    max-width: 600px;
}

.content h1 { 
    font-size: 3.5rem; 
    line-height: 1.1em;
    margin-bottom: 1rem; 
    font-family: "Playfair Display", serif;
    animation: fadeInUp 0.8s ease;
    color: #f7c100;
}

.content p { 
    margin-bottom: 2rem; 
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.content .btn { 
    padding: 1rem 2rem; 
    background: var(--secondary-color); 
    color: var(--white); 
    border-radius: 30px; 
    text-decoration: none; 
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
}

.content .btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================================
   RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 1050px) {
    .home {
        height: 70vh;
    }
    
    .content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        text-align: center;
    }
    
    .content h1 {
        font-size: 2.5rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .content .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .home {
        height: 60vh;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .content .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .home {
        height: 50vh;
    }
    
    .content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .content .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}
/* =======================================
   ABOUT US SECTION
========================================= */
.about-us {
    padding: 80px 0;
    margin-top: -25px;
    background: var(--extra-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* About Image */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact Card */
.contact-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: slideUp 0.8s ease;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: "Work Sans", sans-serif;
}

.contact-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* About Content */
.about-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.about-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Stats Wrapper */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-box {
    background: var(--white);
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: "Work Sans", sans-serif;
}

.stat-box p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

/* Read More Button */
.about-content .btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background: var(--secondary-color);
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.about-content .btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================================
   ABOUT US RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .stats-wrapper {
        gap: 15px;
    }
    
    .stat-box {
        padding: 20px 10px;
    }
    
    .stat-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 50px 0;
    }
    
    .contact-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1rem;
    }
    
    .contact-info span {
        font-size: 0.7rem;
    }
    
    .about-content h2 {
        font-size: 1.6rem;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 15px 20px;
    }
    
    .stat-box i {
        margin-bottom: 0;
    }
    
    .stat-box .stat-text {
        flex: 1;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .contact-card {
        position: relative;
        margin-top: 20px;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
}

/* =======================================
                    SERVICES
========================================= */

.services {
    padding: 80px 0;
    background: var(--extra-light);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service Image */
.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 89, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.btn-service {
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* Service Info */
.service-info {
    padding: 25px;
}

.service-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-family: "Work Sans", sans-serif;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Service Footer */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.course-duration {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.course-duration i {
    margin-right: 5px;
}

.book-btn {
    padding: 8px 20px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.book-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.book-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.book-btn:hover i {
    transform: translateX(5px);
}

/* =======================================
   SERVICES RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-info h4 {
        font-size: 1.2rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .services {
        padding: 50px 0;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title h3 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-info {
        padding: 20px;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .book-btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-info h4 {
        font-size: 1.1rem;
    }
    
    .service-info p {
        font-size: 0.85rem;
    }
}
/* =======================================
               GALLERY SECTION
========================================= */

.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.section-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Gallery Container - Masonry Style */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-card-large {
    grid-row: span 2;
    aspect-ratio: auto;
    height: auto;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 89, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Button */
.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-decoration: none;
}

.gallery-btn i {
    font-size: 1.3rem;
    color: var(--white);
}

.gallery-btn:hover {
    background: var(--yellow);
    transform: scale(1.1);
}

.gallery-btn:hover i {
    color: var(--primary-color);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    padding: 0 10px;
}

/* =======================================
              RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 992px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-card-large {
        grid-row: span 1;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .gallery-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-btn i {
        font-size: 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gallery-card {
        aspect-ratio: 4 / 3;
    }
}
/* =======================================
           STUDENT SEARCH BANNER
========================================= */

.student-search-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a0a7a 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.student-search-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(247, 193, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.student-search-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(247, 193, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

/* Banner Wrapper */
.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Banner Content */
.banner-content {
    color: var(--white);
}

.banner-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    line-height: 1.3;
}

.banner-content h2 span {
    color: var(--yellow);
}

.banner-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    margin-bottom: 40px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-input-wrapper input {
    flex: 1;
    padding: 15px 20px 15px 50px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: "Sen", sans-serif;
}

.search-btn {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: "Sen", sans-serif;
}

.search-btn:hover {
    background: var(--yellow);
    color: var(--primary-color);
}

/* Banner Stats */
.banner-stats {
    display: flex;
    gap: 40px;
}

.banner-stats .stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 5px;
    font-family: "Work Sans", sans-serif;
}

.banner-stats .stat p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Banner Image */
.banner-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.banner-image img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: bounce 2s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.floating-card h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.floating-card p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* =======================================
   RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 992px) {
    .student-search-banner {
        padding: 60px 0;
    }
    
    .banner-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-stats {
        justify-content: center;
    }
    
    .search-input-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .banner-image img {
        max-width: 300px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .student-search-banner {
        padding: 50px 0;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input-wrapper i {
        top: 15px;
    }
    
    .search-input-wrapper input {
        padding: 15px 20px 15px 50px;
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 0 0 15px 15px;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .floating-card {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
    }
    
    .banner-image img {
        max-width: 250px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 1.3rem;
    }
    
    .banner-tag {
        font-size: 0.75rem;
    }
    
    .banner-stats .stat h3 {
        font-size: 1.5rem;
    }
}
/* =======================================
         TESTIMONIAL SECTION CUSTOM
========================================= */

.testimonial-section-custom {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Section Title */
.section-title-custom {
    text-align: center;
    margin-bottom: 10px;
}

.section-title-custom h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Dancing Script", cursive;
}

.section-title-custom h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.section-title-custom p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Slider Container */
.testimonial-slider-custom {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 20px;
    position: relative;
}

/* Slide Wrapper */
.testimonial-wrapper-custom {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* Individual Slide */
.testimonial-slide-custom {
    min-width: 100%;
    background: linear-gradient(135deg, #111722 0%, #1a1f2e 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: 'Sen', sans-serif;
    border-left: 6px solid var(--yellow);
    transition: all 0.3s ease;
}

.testimonial-slide-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Stars */
.stars-custom {
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

/* Text */
.testimonial-text-custom {
    font-size: 16px;
    color: #B6B5B5;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

/* Author */
.testimonial-author-custom {
    font-weight: 700;
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 5px;
    font-family: "Work Sans", sans-serif;
}

.testimonial-role-custom {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Dots */
.slider-dots-custom {
    text-align: center;
    margin-top: 30px;
}

.slider-dots-custom span {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-custom span:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.slider-dots-custom .active-custom {
    background: var(--yellow);
    width: 30px;
    border-radius: 10px;
}

/* =======================================
              RESPONSIVE
========================================= */

/* Tablet View */
@media (max-width: 992px) {
    .testimonial-section-custom {
        padding: 60px 0;
    }
    
    .section-title-custom h2 {
        font-size: 2rem;
    }
    
    .testimonial-slide-custom {
        padding: 30px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .testimonial-section-custom {
        padding: 50px 0;
    }
    
    .section-title-custom h3 {
        font-size: 1.5rem;
    }
    
    .section-title-custom h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-slider-custom {
        padding: 30px 15px;
    }
    
    .testimonial-slide-custom {
        padding: 25px 20px;
    }
    
    .stars-custom {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .testimonial-text-custom {
        font-size: 14px;
    }
    
    .testimonial-author-custom {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .testimonial-slide-custom {
        padding: 20px 15px;
    }
    
    .stars-custom {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .testimonial-text-custom {
        font-size: 13px;
    }
    
    .slider-dots-custom span {
        height: 8px;
        width: 8px;
        margin: 0 4px;
    }
    
    .slider-dots-custom .active-custom {
        width: 20px;
    }
}
/* =======================================
            BOTTOM BANNER SECTION
========================================= */

.bottom-banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 7, 14, 0.85), rgba(14, 1, 1, 0.753)), url('../images/home-down-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Overlay for better text readability */
.bottom-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.bottom-banner-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bottom-banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.bottom-banner-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.bottom-banner-btn:hover {
    background: var(--yellow);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* =======================================
              RESPONSIVE
========================================= */

@media (max-width: 992px) {
    .bottom-banner-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .bottom-banner-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .bottom-banner-section {
        padding: 50px 0;
    }
    
    .bottom-banner-content h2 {
        font-size: 1.5rem;
    }
    
    .bottom-banner-content p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .bottom-banner-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bottom-banner-section {
        padding: 40px 0;
    }
    
    .bottom-banner-content h2 {
        font-size: 1.3rem;
    }
    
    .bottom-banner-content p {
        font-size: 0.85rem;
    }
}