/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
}

/* ================= NAVBAR ================= */
.navbar {
    position: relative;
    padding: 26px 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    color: #ffffff;
    /* WHITE ON HERO */
    transition: all 0.35s ease;
}

.nav-center a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in-out;
}

.nav-center a:hover {
    transform: translateY(3px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left .logo {
    width: 140px;
}

.nav-left a {
    text-decoration: none;
}

.logo-name {
    color: #d85d00;
}

.brand {
    font-size: 22px;
    font-weight: 700;
}

/* CENTER MENU */
.nav-center a {
    margin: 0 10px;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-center a:hover {
    color: #245a4c;
    font-weight: 700;
}


/* STICKY NAVBAR STATE */
.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    padding: 26px 60px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    color: #000;
}

/* LINKS WHEN SCROLLED */
.navbar.scrolled .nav-center a {
    color: rgba(0, 0, 0, 0.85);
}

.navbar.scrolled .nav-center a:hover {
    color: #245a4c;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
}

/* LOGIN BUTTON */
.btn-login {
    position: relative;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1.5px solid #FF5807;
    color: #FF5807;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
    z-index: 1;
}

/* SLIDING BACKGROUND */
.btn-login::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FF5807;
    transform: translateX(-100%);
    transition: 0.4s ease;
    z-index: -1;
}

/* HOVER EFFECT */
.btn-login:hover::before {
    transform: translateX(0);
}

.btn-login:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 111, 94, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    color: #000;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: 0.3s;
}

@media (max-width: 992px) {

    .navbar {
        padding: 18px 24px;
    }

    .navbar.scrolled {
        padding: 18px 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 24px 0;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .nav-center a {
        color: #000;
        font-size: 16px;
    }

    .nav-center.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

@media(max-width:768px) {
    .nav-left .logo {
        width: 98px;
    }

    .btn-login {
        padding: 7px 12px;
        border-radius: 22px;
    }

    .btn-login {
        padding: 3px 8px;
        font-size: 12px;
    }
}

/* ================= HERO ================= */
.hero-section {
    margin: 30px 30px;
}

.hero-slider {
    position: relative;
    height: 90vh;
    border-radius: 24px;
    overflow: hidden;
}

/* SLIDES */
.slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 1.5s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.15) 70%,
            rgba(0, 0, 0, 0.015) 100%);
    z-index: 1;
}

.hero-content-wrapper,
.slider-pagination {
    position: relative;
    z-index: 5;
}

/* CONTENT */
.hero-content-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    position: absolute;
    max-width: 640px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
    pointer-events: none;
}

.hero-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* TAG */
.hero-content .tag {
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

/* TEXT */
.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-content p {
    margin-top: 18px;
    opacity: .9;
}

/* PAGINATION */
.slider-pagination {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.slider-pagination .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

/* ACTIVE DOT */
.slider-pagination .dot.active {
    background: #fff;
}

/* OUTER RING */
.slider-pagination .dot.active::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* ================= YELLOW STRIP ================= */
.hero-bottom {
    background: #F98A36;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px 20px;
    margin-top: -26px;
    border-radius: 0 0 24px 24px;
}

.members {
    display: flex;
    align-items: center;
    gap: 10px;
}

.members img {
    width: 100px;
}

.circle-text {
    position: relative;
    width: 140px;
    height: 140px;
}

.circle-text svg {
    background-color: #fff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: rotate 12s linear infinite;
}

.circle-text text {
    font-size: 14px;
    letter-spacing: 4px;
}

.circle-text .arrow {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 22px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.video {
    display: flex;
    align-items: center;
    gap: 24px;
}

.video-text {
    font-size: 14px;
    line-height: 1.4;
}

/* THUMBNAIL */
.video-thumb {
    position: relative;
    width: 120px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    display: block;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 16px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.video-thumb:hover .play-btn {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.05);
}

/* ===============================
   TABLET (≤1024px)
================================ */
@media (max-width: 1025px) {

    .hero-section {
        margin: 20px;
    }

    .hero-slider {
        height: 48vh;
    }

    .hero-content {
        max-width: 460px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .slider-pagination {
        right: 18px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 24px;
        padding: 60px 40px 24px;
        text-align: center;
    }

    .members {
        justify-content: center;
        text-align: left;
    }

    .video {
        justify-content: center;
    }
}

@media(max-width:986px) {
    .hero-slider {
        height: 45vh;
    }
}

/* ===============================
   MOBILE (≤768px)
================================ */
@media (max-width: 769px) {

    .hero-section {
        margin: 0px;
    }

    .hero-slider {
        height: 48vh;
        border-radius: 0px;
    }

    /* CONTENT CENTERED */
    .hero-content {
        max-width: 60%;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 14px;
        margin-top: 8px;
    }

    .hero-content .tag {
        font-size: 11px;
        margin-bottom: 14px;
    }

    /* DOTS MOVE TO BOTTOM */
    .slider-pagination {
        flex-direction: row;
        bottom: 18px;
        top: auto;
        left: 50%;
        transform: translateX(-0%);
    }

    .slider-pagination .dot {
        width: 8px;
        height: 8px;
    }

    /* BOTTOM STRIP */
    .hero-bottom {
        padding: 54px 20px 28px;
        gap: 20px;
    }

    .members {
        flex-direction: column;
        text-align: center;
    }

    .members img {
        width: 80px;
    }

    .circle-text {
        width: 110px;
        height: 110px;
    }

    .circle-text text {
        font-size: 12px;
    }

    .video {
        flex-direction: column;
        gap: 14px;
    }

    .video-text {
        font-size: 13px;
    }
}

@media (max-width: 624px) {

    .hero-slider {
        height: 50vh;
    }
}

/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {

    .hero-slider {
        height: 34vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-content .tag {
        padding: 4px 8px;
        font-size: 8px;
        margin-bottom: 8px;
    }

    .video-thumb {
        width: 110px;
        height: 64px;
    }

    .circle-text {
        width: 95px;
        height: 95px;
    }
}
@media (max-width: 420px) {
    .hero-slider {
        height: 27vh;
    }
}
/* Hide scrollbar but keep scrolling */

.services-slider-wrapper::-webkit-scrollbar,
.blog-slider-wrapper::-webkit-scrollbar,
.team-slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* ================= SERVICES ================= */
.services-slider-section {
    padding: 100px 80px 40px;
    overflow: hidden;
}

/* HEADER */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 600;
    margin-top: 16px;
}

/* NAV BUTTONS */
.services-nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #222;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
}

.services-nav button:hover {
    background-color: #000000;
    color: white;
}

/* SLIDER */
.services-slider-wrapper {
    overflow: hidden;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.services-slider {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* CARD */
.service-card {
    background-color: #dddddd;
    min-width: 280px;
    min-height: 280px;
    margin-right: 30px;
    border-radius: 26px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -101%;
    width: 100%;
    height: 100%;
    background: #F98A36;
    /* dark premium shade */
    transition: 0.45s ease;
    border-radius: 26px;
    z-index: 1;
}

/* KEEP CONTENT ABOVE OVERLAY */
.service-card>* {
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
}

/* TEXT COLOR CHANGE */
.service-card:hover h2,
.service-card:hover small {
    color: #fff;
}

.service-card:hover small::before {
    background: #FDB407;
}

.service-card:hover::before {
    bottom: 0;
}

.service-card small {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.service-card small::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #DE2A1B;
    border-radius: 50%;
}

.service-card img {
    width: 74px;
    align-self: flex-start;
    opacity: 0.85;
}

/* ARROW */
.service-card .arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
}

.service-card .arrow img {
    width: 26px;
    height: 26px;
    align-self: center;

}

/* ROTATING TEXT */
.services-rotating-text {
    margin-top: 80px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;

    /* EDGE FADE */
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

.text-track {
    font-size: 96px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: scrollText 20s linear infinite;
}

/* DEFAULT OUTLINED TEXT */
.rot-word {
    color: transparent;
    -webkit-text-stroke: 1px #434343;
    transition: 0.3s ease;
    cursor: pointer;
}

/* HOVER EFFECT (ONLY THIS WORD) */
.rot-word:hover {
    color: #000;
    -webkit-text-stroke: 1px #000;
}

/* SCROLL ANIMATION */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {
    .services-slider-section {
        padding: 100px 60px 40px;
    }
}

@media(max-width:468px) {
    .services-header {
        flex-direction: column;
    }

    .services-slider-section {
        padding: 100px 40px 40px;
    }
}

/* ----- benefits of yoga ------ */
.yoga-about-section {
    padding: 100px 0;
}

/* TEXT */
.about-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
}

.about-content h2 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 600;
    margin: 16px 0;
}

.about-content h2 span {
    color: #DE2A1B;
}

.about-desc {
    font-size: 16px;
    max-width: 520px;
    color: #555;
    margin-bottom: 50px;
}

/* BENEFITS GRID */
.about-benefits .benefit {
    border-radius: 18px;
    padding: 22px 10px;
    display: flex;
    gap: 16px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.about-benefits .benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.benefit .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59, 124, 106, 0.1);
    color: #FDB407;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.benefit p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* IMAGES */
.about-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-large {
    border-radius: 30px;
    overflow: hidden;
    height: 560px;
}

.image-large img {
    height: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.image-large img:hover {
    transform: scale(1.04);
}

.image-small {
    position: absolute;
    right: 0px;
    bottom: 85px;
}

.image-small img {
    height: 360px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.image-small img:hover {
    transform: scale(1.04);
}

/* MOBILE */
/* ===============================
   LARGE DESKTOP (≥1200px)
================================ */
@media (min-width: 1200px) {
    .about-content h2 {
        font-size: 52px;
    }
}


/* ===============================
   LAPTOP / TABLET (≤1024px)
================================ */
@media (max-width: 1024px) {

    .yoga-about-section {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 44px;
    }

    .about-desc {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .image-large {
        height: 480px;
    }

    .image-small img {
        height: 300px;
    }
}


/* ===============================
   TABLET (≤991px)
================================ */
@media (max-width: 991px) {
    .about-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .about-benefits .benefit {
        padding: 18px;
    }

    /* IMAGES STACK */
    .about-images {
        margin-top: 50px;
        align-items: center;
    }

    .image-large {
        height: auto;
        width: 100%;
    }

    .image-large img {
        width: 100%;
        height: auto;
    }

    .image-small {
        position: static;
        margin-top: 24px;
    }

    .image-small img {
        width: 80%;
        height: auto;
    }
}


/* ===============================
   MOBILE (≤768px)
================================ */
@media (max-width: 768px) {

    .yoga-about-section {
        padding: 60px 0 0;
    }

    .about-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-content h2 {
        font-size: 34px;
        line-height: 1.25;
    }

    .about-desc {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .about-benefits .benefit {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .benefit .icon {
        margin: 0 auto;
    }

    .image-small img {
        width: 100%;
    }

    .about-images {
        display: none;
    }
}


/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {

    .about-content h2 {
        font-size: 28px;
    }

    .about-desc {
        font-size: 13px;
    }

    .about-benefits .benefit {
        padding: 16px;
    }

    .benefit h4 {
        font-size: 15px;
    }

    .benefit p {
        font-size: 13px;
    }
}


/* ---- Team Section ---- */
.team-section {
    padding: 60px 0;

}

/* LEFT FEATURE CARD */
.team-feature-card {
    border-radius: 26px;
    padding: 20px;
    text-align: left;
    position: relative;
}

.team-feature-card img {
    width: 100%;
    border-radius: 22px;
}

.team-feature-card h4 {
    margin-top: 18px;
    font-size: 18px;
}

.team-feature-card span {
    font-size: 13px;
    color: #6b7280;
}

.socials {
    position: absolute;
    right: 14px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
}

/* HEADER */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.team-header h2 {
    font-size: 42px;
    font-weight: 600;
}

.team-nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #222;
    background: transparent;
    font-size: 20px;
    margin-left: 8px;
}

.team-nav button:hover {
    background-color: #000;
    color: #fff;
}

/* SLIDER */
.team-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.team-slider {
    display: flex;
    gap: 50px;
    transition: transform 0.6s ease;
    will-change: transform;
}

/* TEAM CARD */
.team-card {
    flex: 0 0 360px;
    /* FIXED WIDTH (KEY POINT) */
    max-width: 340px;
    text-align: center;
}

.team-card a {
    text-decoration: none;
    color: inherit;
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 26px;
    transition: all 0.3s ease-in-out
}

.team-card img:hover {
    transform: scale(1.03);
}

.team-card h5 {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 500;
    color: #111;
}

@media (max-width: 991px) {
    .team-slider-wrapper {
        width: 100%;
    }

    .team-card {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .team-feature-card img {
        display: none;
    }

}

@media(max-width:768px) {
    .team-header {
        flex-direction: column;
    }
}

/* ---- blog section ---- */
.blog-section {
    padding: 40px 80px;
}

/* HEADER */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 52px;
    font-weight: 600;
}

/* NAV */
.blog-nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #222;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    margin-left: 10px;
}

.blog-nav button:hover {
    background-color: #000;
    color: white;
}

/* SLIDER */
.blog-slider-wrapper {
    overflow: hidden;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.blog-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    transition: transform 0.6s ease;
}

.blog-slider a {
    text-decoration: none;
    color: inherit;
}

/* CARD */
.blog-card {
    min-width: 400px;
    flex-shrink: 0;
}

/* IMAGE */
.blog-image {
    position: relative;
    height: 260px;
    border-radius: 30px;
    margin-bottom: 12px;
    overflow: hidden;
}

.blog-image-box {
    display: block;
    clip-path: polygon(6.726% 0%, 93.274% 0%, 93.274% 0%, 94.364% 0.119%, 95.399% 0.464%, 96.364% 1.015%, 97.245% 1.755%, 98.029% 2.664%, 98.701% 3.723%, 99.249% 4.915%, 99.657% 6.219%, 99.912% 7.617%, 100% 9.091%, 100% 66.97%, 100% 66.97%, 99.732% 70.984%, 98.988% 73.969%, 97.863% 76.111%, 96.447% 77.599%, 94.835% 78.618%, 93.119% 79.355%, 91.39% 79.998%, 89.742% 80.733%, 88.268% 81.747%, 87.061% 83.227%, 87.061% 83.227%, 86.147% 85.185%, 85.483% 87.323%, 84.946% 89.551%, 84.409% 91.777%, 83.749% 93.91%, 82.839% 95.86%, 81.556% 97.535%, 79.775% 98.844%, 77.369% 99.696%, 74.215% 100%, 6.726% 100%, 6.726% 100%, 5.636% 99.881%, 4.601% 99.536%, 3.636% 98.985%, 2.755% 98.245%, 1.971% 97.336%, 1.299% 96.277%, 0.751% 95.085%, 0.343% 93.781%, 0.088% 92.383%, 0% 90.909%, 0% 9.091%, 0% 9.091%, 0.088% 7.617%, 0.343% 6.219%, 0.751% 4.915%, 1.299% 3.723%, 1.971% 2.664%, 2.755% 1.755%, 3.636% 1.015%, 4.601% 0.464%, 5.636% 0.119%, 6.726% 0%);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;

}

.blog-image-box:hover {
    transform: scale(1.03);
}

/* TAG */
.blog-tag {
    background-color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ARROW */
.blog-arrow {
    position: absolute;
    bottom: 7px;
    right: 8px;
    width: 44px;
    height: 44px;
    background: #FDB407;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
}

/* META */
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    margin: 18px 0 10px;
    color: #444;
}

/* TITLE */
.blog-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

/* ===============================
   DESKTOP (≥1200px) → 3 cards
================================ */
@media (min-width: 1200px) {
    .blog-card {
        min-width: 380px;
    }

    .blog-slider {
        gap: 40px;
    }
}


/* ===============================
   TABLET (≤1024px) → 2 cards
================================ */
@media (max-width: 1024px) {

    .blog-section {
        padding: 0 60px;
    }

    .blog-header h2 {
        font-size: 42px;
    }

    .blog-card {
        min-width: 320px;
    }

    .blog-slider {
        gap: 30px;
    }

    .blog-arrow {
        bottom: 8px;
        right: 0px;

    }
}


/* ===============================
   MOBILE (≤768px) → 1 card
================================ */
@media (max-width: 768px) {

    .blog-section {
        padding: 0 40px;
    }

    .blog-header {
        align-items: flex-start;
        gap: 20px;
    }

    .blog-header h2 {
        font-size: 34px;
    }

    .blog-slider {
        gap: 20px;
    }
}


/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {

    .blog-section {
        padding: 0 20px;
    }

    .blog-header h2 {
        font-size: 28px;
    }

    .blog-card h3 {
        font-size: 18px;
    }
}

/* ---- Faq Section ---- */
.faq-section {
    padding: 60px 0 85px;
}

/* LEFT */
.faq-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6b7280;
}

.faq-title {
    font-size: 46px;
    margin: 16px 0 30px;
    font-weight: 600;
}

.faq-title span {
    color: #FDB407;
}


/* ACCORDION */
.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.faq-item.active {
    background: #2E2F2C;
    color: #fff;
}

.faq-question {
    padding: 18px 22px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding: 0 22px;
    font-size: 14px;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}


.faq-item.active .faq-answer {
    max-height: 200px;
    /* enough for text */
    opacity: 1;
    padding-bottom: 20px;
}

.faq-item .icon {
    font-size: 20px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    /* + becomes × */
    transition: 0.3s ease;
}

/* RIGHT IMAGE */
.faq-image-wrap {
    position: relative;
    /* padding-left: 40px; */
    width: 500px;
    margin: auto;
}

.image-bg {
    position: absolute;
    right: 0px;
    top: -50px;
    width: 272px;
    height: 250px;
    background: #FF5806;
    border-radius: 30px;
    z-index: 0;
}

.faq-image-wrap img {
    width: 450px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.faq-image-wrap img:hover {
    transform: scale(1.03)
}

/* CONTACT BOX */
.faq-contact {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.faq-contact .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #b8a47a;
    display: grid;
    place-items: center;
    color: #fff;
}

@media(max-width:991px) {
    .image-bg {
        display: none;
    }

    .faq-image-wrap {
        margin-top: 20px;
        width: 100%;
    }

    .faq-image-wrap img {
        width: 100%;
    }
}

/* ---- Footer ---- */
.yoga-footer {
    background: #2E2F2C;
    color: #ffffff;
}

/* TOP BAR */
.footer-top {
    padding: 40px 0;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.footer-brand .logo img {
    width: 140px;
    place-items: center;
}

.footer-tagline {
    max-width: 452px;
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fafafa;
    display: inline-grid;
    place-items: center;
    color: #FF5805;
    margin-left: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-socials a:hover {
    transform: scale(1.02);
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* MAIN */
.footer-main {
    padding: 90px 0;
}

.footer-main h5 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
}

.footer-main ul li {
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-main ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-main ul li:hover {
    transform: translateX(4px);
    color: white;
}

/* QUOTE */
.footer-quote h3 {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
}

.footer-quote span {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

/* BOTTOM */
.footer-bottom {
    padding: 24px 0;
    font-size: 14px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links span {
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .footer-top-inner,
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-socials {
        margin-top: 20px;
    }

    .footer-quote h3 {
        font-size: 26px;
    }
}

/* ====================================================
                        About Us
   ==================================================== */
/* ================= ABOUT BANNER ================= */
.about-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    background: url('../images/abt-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
    margin-top: 20px;
}

.enquiry-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    background: url('../images/enquiry-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
    margin-top: 20px;
}

/* DARK OVERLAY */
.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

/* CONTENT */
.about-banner-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    color: #fff;
}

.about-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.about-banner-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-banner-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.about-cta-section {
    padding: 100px 0;
}

/* LEFT IMAGE */
.about-image-wrap {
    border-radius: 30px;
    overflow: hidden;
    max-width: 500px;
    box-shadow: 0 0 8px 0px rgb(0 0 0 / 32%);
    margin: auto;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.about-image-wrap img:hover {
    transform: scale(1.02);
}

/* COUNTER CARD */
.about-counter {
    background-color: #fff;
    position: absolute;
    bottom: -30px;
    right: 40px;
    border-radius: 20px;
    padding: 24px 28px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-counter .star {
    color: #DE2A1B;
    font-size: 22px;
    display: block;
    margin-bottom: 6px;
}

.about-counter h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.about-counter p {
    font-size: 14px;
    color: #666;
    margin: 6px 0 0;
}

/* RIGHT CONTENT */
.section-pill {
    border: 1px solid #222;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    color: #666;
    max-width: 520px;
    margin-bottom: 40px;
}

/* TABLET */
@media (max-width: 1024px) {

    .about-banner,
    .enquiry-banner {
        padding: 0 40px;
        height: 50vh;
    }

    .about-banner-content h1 {
        font-size: 48px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .about-banner,
    .enquiry-banner {
        padding: 0 24px;
        height: 30vh;
        min-height: 360px;
    }

    .about-banner-content h1 {
        font-size: 52px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .about-banner,
    .enquiry-banner {
        padding: 0 16px;
    }

    .about-banner-content h1 {
        font-size: 40px;
    }
}

/* FEATURES */
.feature-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
}

.icon-circle {
    padding: 10px;
    background: #f2c94c;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #000;
}

.icon-circle img {
    width: 40px;
    height: 40px;
}

.feature-box h5 {
    font-size: 18px;
    margin-bottom: 6px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* BUTTON */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #DE2A1B;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 40px;
    transition: 0.3s ease;
}

.btn-about:hover {
    background: #2f6456;
}

.services-story-section {
    background: #4f8f7a;
    padding: 100px 0;
    color: #fff;
}

/* HEADER */
.services-story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.services-story-header h2 {
    font-size: 36px;
    margin: 0;
}

.pill {
    background: #fff;
    color: #FF5807;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 20px;
}

.read-more-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 18px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* IMAGE */
.services-image {
    border-radius: 30px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.services-image img:hover {
    transform: scale(1.03);
}

/* SERVICES LIST */
.service-list {
    margin-bottom: 40px;
}

.service-item {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.service-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.service-item small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.service-item h4 {
    font-size: 28px;
    margin: 6px 0 0;
}

.icon-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: grid;
    place-items: center;
    font-size: 14px;
}

.service-desc p {
    font-size: 14px;
    margin: 8px 0 0;
    opacity: 0.9;
}

.service-desc {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* ACTIVE STATE */
.service-item.active .service-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 10px;
}

.service-item.active .icon-arrow {
    background: #fff;
    color: #FF5807;
    transform: rotate(45deg);
}

/* ===============================
   FULL VIDEO SECTION
================================ */
.full-video-section {
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* INNER WRAPPER (CONTROLS SIDE PADDING) */
.video-inner {
    width: 100%;
    max-width: 1400px;
    padding: 0 80px;
}

/* VIDEO FRAME */
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* ✅ KEY FIX */
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

/* IFRAME */
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===============================
   TABLET (≤1024px)
================================ */
@media (max-width: 1024px) {
    .video-inner {
        padding: 0 40px;
    }
}

/* ===============================
   MOBILE (≤768px)
================================ */
@media (max-width: 768px) {
    .full-video-section {
        padding: 60px 0;
    }

    .video-inner {
        padding: 0 20px;
    }

    .video-frame {
        border-radius: 18px;
    }
}

/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {
    .video-inner {
        padding: 0 16px;
    }

    .video-frame {
        border-radius: 14px;
    }
}


/* ====================================================
                        Enquiry Form
   ==================================================== */
.yoga-enquiry-page {
    padding: 80px 20px;
}

/* LEFT CONTENT */
.enquiry-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.enquiry-content h1 span {
    color: #FF5807;
}

.enquiry-content p {
    font-size: 16px;
    color: #555;
    max-width: 480px;
    margin-bottom: 30px;
}

.enquiry-points {
    list-style: none;
    padding: 0;
}

.enquiry-points li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.enquiry-points i {
    color: #FF5807;
}

/* FORM CARD */
.enquiry-form-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.enquiry-form-card h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.enquiry-form-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* FLOATING INPUTS */
.form-group {
    position: relative;
    margin-bottom: 26px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.form-group label {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 13px;
    color: #777;
    padding: 0 6px;
    transition: 0.3s ease;
    pointer-events: none;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:not([value=""])+label {
    top: 0px;
    font-size: 14px;
    color: #FF5807;
}

/* BUTTON */
.submit-btn {
    width: auto;
    padding: 16px;
    border: none;
    border-radius: 30px;
    background: #FF5807;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #245a4c;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .enquiry-content h1 {
        font-size: 40px;
    }

    .enquiry-form-card {
        padding: 36px;
    }
}

/* ==================================
            Blog Detail
===================================== */
/* HERO */
.blog-container {
    margin: auto;
    max-width: 800px;
}

.blog-detail-hero {
    padding: 85px 0 38px;
    text-align: center;
}

.blog-category {
    border: 1px solid #222;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.blog-detail-hero h1 {
    font-size: 52px;
    max-width: 800px;
    margin: auto;
}

.blog-meta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: #666;
}

/* CONTENT */
.blog-detail-section {
    padding: 20px 0 60px;
}

.blog-feature-image {
    height: 400px;
}

.blog-feature-image img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
}

.blog-content .intro {
    font-size: 18px;
    color: #333;
    margin: 30px 0;
}

.blog-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.blog-content ul {
    margin: 20px 0 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
}

blockquote {
    padding: 30px;
    border-left: 4px solid #FF5807;
    margin: 40px 0;
    font-style: italic;
}

blockquote span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.blog-tags {
    margin-top: 40px;
}

.blog-tags span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 10px;
}

/* SIDEBAR */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

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

.author-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.recent-post {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    text-decoration: none;
    color: inherit;
}

.recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
}

.recent-post h5 {
    font-size: 15px;
    margin-bottom: 4px;
}

.recent-post span {
    font-size: 12px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blog-detail-hero h1 {
        font-size: 40px;
    }

    .blog-sidebar {
        position: static;
    }
}

/* =========================================
            Team Details
========================================= */
.team-detail-section {
    padding: 100px 0;
}

/* PROFILE CARD */
.team-profile-card {
    border-radius: 28px;
    padding: 30px;
    text-align: center;
}

.team-profile-card img {
    width: 100%;
    border-radius: 22px;
    margin-bottom: 18px;
}

.team-profile-card h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-profile-card .role {
    font-size: 13px;
    color: #6b7280;
}

.social-icons {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #333;
    display: grid;
    place-items: center;
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

/* RIGHT CONTENT */
.pill {
    border: 1px solid #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 14px;
}

.member-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.member-desc {
    font-size: 15px;
    color: #555;
    max-width: 700px;
}

.member-info {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-size: 14px;
}

/* INFO BOX */
.info-box {
    border-radius: 24px;
    padding: 30px;
}

.info-box h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.info-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

/* SKILLS */
.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-list i {
    color: #FF5807;
}

/* IMAGE */
.team-gallery img {
    width: 100%;
    border-radius: 30px;
}

/* =================================
            Events
==================================== */
.events-section {
    padding: 100px 0;
}

/* HEADER */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.events-header h2 {
    font-size: 42px;
}

.view-all {
    border: 1px solid #333;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

/* EVENT CARD */
.event-card {
    background: #ededed;
    border-radius: 26px;
    overflow: hidden;
    transition: 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
}

.event-image {
    position: relative;
}

.event-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FF5807;
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

.event-content {
    padding: 26px;
}

.event-content small {
    font-size: 12px;
    color: #FF5807;
    letter-spacing: 1px;
}

.event-content h4 {
    font-size: 22px;
    margin: 10px 0;
}

.event-content p {
    font-size: 14px;
    color: #555;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    margin: 16px 0;
    color: #555;
}

.event-btn {
    position: relative;
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    border: 1.5px solid #FF5807;
    color: #FF5807;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
    z-index: 1;
}

/* SLIDING BACKGROUND */
.event-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FF5807;
    transform: translateX(-100%);
    transition: 0.4s ease;
    z-index: -1;
}

/* HOVER EFFECT */
.event-btn:hover::before {
    transform: translateX(0);
}

.event-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 111, 94, 0.25);
}


/* ====================================
          Gallery Page
======================================= */
.gallery-hero {
    padding: 80px 0 20px;
}

.gallery-hero h1 {
    font-size: 46px;
    margin: 20px 0;
}

.gallery-hero p {
    max-width: 650px;
    margin: auto;
    color: #555;
    font-size: 16px;
}

.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.gallery-item.large {
    max-height: 420px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

/* ================= TEAM PAGE ================= */
.team-page-section {
    padding: 40px 0 80px;
}

/* HEADER */
.team-page-header {
    max-width: 720px;
    margin: 60px 0;
}


.team-page-header h1 {
    font-size: 42px;
    font-weight: 600;
    margin: 16px 0;
}

.team-page-header p {
    font-size: 16px;
    color: #555;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* CARD (YOUR DESIGN – UNCHANGED) */
.team-card-box {
    text-align: center;
}

.team-card-box a {
    text-decoration: none;
    color: inherit;
}

.team-card-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 26px;
    transition: all 0.3s ease-in-out;
}

.team-card-box img:hover {
    transform: scale(1.03);
}

.team-card-box h5 {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 500;
    color: #111;
}

.team-card-box span {
    font-size: 14px;
    color: #6b7280;
}

@media(max-width:1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-card-box img {
        height: 500px;
    }
}

/* honour  */
.honour-page {
    padding: 80px 20px;
}

/* TOP SECTION */
.honour-top {
    text-align: center;
    margin-bottom: 50px;
}

.honour-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* SHORT CONTENT BELOW IMAGE */
.honour-brief h1 {
    font-size: 38px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.honour-brief p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* FULL CONTENT */
.honour-content {
    max-width: 900px;
    margin: auto;
}

.honour-content p {
    font-size: 17px;
    line-height: 1.5;
    text-align: justify;
    color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
    .honour-brief h1 {
        font-size: 30px;
    }
}
