

.test-section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: gold;
    font-weight: 600;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}



.testimonial {
    display: none;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: opacity 0.6s ease;
}

.testimonial.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

.testimonial h4 {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.slider-controls {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: #ff5a5f;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    height: 70vh;
    background: url("./images/AX2A39471-1024x819.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease forwards;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: textSlide 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 2s ease forwards 1s;
}

.btn-cta {
    background: #e91e63;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 2s ease forwards 1.5s;
}

.btn-cta:hover {
    transform: scale(1.1);
    background: #c2185b;
}

/* Floating sparkles */
.sparkle {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    animation: sparkleAnim 5s linear infinite;
}

@keyframes sparkleAnim {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-300px) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0) scale(0.5);
        opacity: 0.8;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes textSlide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes sparkleAnim {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-300px) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0) scale(0.5);
        opacity: 0.8;
    }
}

.gallery-item img {
    width: 100%;
    height: 250px;
    display: block;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gal-section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: gold;
    display: block;
    margin: 10px auto;
}

.gal-section-title {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    text-transform: uppercase;
}

.gallery-item img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 10px;
}

.gallery-item:hover .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.about-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.about-section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: gold;
    display: block;
    margin: 10px 0;
}

.btn-cta {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: gold;
    color: darkgreen;
    transform: scale(1.05);
    border-color: darkgreen;
}

/* Animations */
.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-box {
    position: relative;
    cursor: pointer;
}

.hightlight-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: gold;
    display: block;
    margin: 10px auto;
}

.hightlight-title {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.video-box video {
    transition: transform 0.4s ease-in-out;
}

.video-box:hover video {
    transform: scale(1.05);
}

/* Play Button Overlay */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid gold;
    border-radius: 50%;
    color: gold;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.play-btn:hover {
    background: gold;
    color: black;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
        0 0 50px rgba(192, 192, 192, 0.6);
}

/* Optional pulse animation */
.play-btn::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Brand Colors */
.text-gold {
    color: #d4af37;
}

.text-silver {
    color: #c0c0c0;
}

.border-gold {
    border-color: #d4af37 !important;
}

.btn-gold {
    background: #d4af37;
    color: #000;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #c0c0c0;
    color: #000;
}

/* CEO Badge */
.ceo-img-wrapper {
    position: relative;
    display: inline-block;
}

.ceo-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: #004225;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.book-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: gold;
    display: block;
    margin: 10px auto;
}

.book-title {
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}


/* VIDEO */
.video-box video {
    object-fit: cover;
    height: 200px;
}



.ceo-section {
    padding: 60px 20px;
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.ceo-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ceo-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ceo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ceo-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ceo-text .quote {
    font-style: italic;
    font-weight: bold;
    color: #b78b1b;
    /* highlight */
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .ceo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-text {
        margin-top: 20px;
    }
}