:root {

    /**
     * colors
     */

    --spanish-gray: hsl(0, 0%, 60%);
    --sonic-silver: hsl(0, 0%, 47%);
    --eerie-black: hsl(0, 0%, 13%);
    --salmon-pink: hsl(353, 100%, 78%);
    --sandy-brown: hsl(29, 90%, 65%);
    --bittersweet: hsl(0, 100%, 70%);
    --ocean-green: hsl(152, 51%, 52%);
    --davys-gray: hsl(0, 0%, 33%);
    --cultured: hsl(0, 0%, 37%);
    --white: hsl(0, 100%, 100%);
    --onyx: hsl(0, 0%, 27%);

    /**
     * typography
     */

    --fs-1: 1.563rem;
    --fs-2: 1.375rem;
    --fs-3: 1.25rem;
    --fs-4: 1.125rem;
    --fs-5: 1rem;
    --fs-6: 0.938rem;
    --fs-7: 0.875rem;
    --fs-8: 0.813rem;
    --fs-9: 0.75rem;
    --fs-10: 0.688rem;
    --fs-11: 0.625rem;

    --weight-300: 300;
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;

    /**
     * border-radius
     */

    --border-radius-md: 10px;
    --border-radius-sm: 5px;

    /**
     * transition 
     */

    --transition-timing: 0.2s ease;

}



input {
    display: block;
    width: 100%;
    font: inherit;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    border: 1px solid #c3c3c3;
}

input::-webkit-input-placeholder {
    font: inherit;
    font-size: 0.85rem;
}

input::-moz-placeholder {
    font: inherit;
    font-size: 0.85rem;
}

input:-ms-input-placeholder {
    font: inherit;
    font-size: 0.85rem;
}

input::-ms-input-placeholder {
    font: inherit;
    font-size: 0.85rem;
}

input::placeholder {
    font: inherit;
    font-size: 0.85rem;
}

.toast-message {
    font: inherit;
    font-size: 0.9rem;
    color: #fff;
}

/* required field design */
.required:after {
    content: " *";
    color: red;
}

/*-----------------------------------*\
    #RESET
  \*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

button {
    background: none;
    font: inherit;
    border: none;
    cursor: pointer;
}

span {
    display: inline-block;
}

html {
    font-family: "Poppins", sans-serif;
    overscroll-behavior: contain;
}

body {
    background: #313131;
    color: #c3c3c3;
}

/**
   * scrollbar style
   */

body::-webkit-scrollbar {
    width: 15px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
    border-left: 1px solid var(--cultured);
}

body::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 35%);
    border: 3px solid var(--white);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 35%);
}





/*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/

.container {
    padding: 0 15px;
}

.has-scrollbar {
    padding-bottom: 5px;
}

.has-scrollbar::-webkit-scrollbar {
    width: 12px;
    /* for vertical scroll */
    height: 12px;
    /* for horizontal scroll */
}

.has-scrollbar::-webkit-scrollbar-thumb {
    background: transparent;
    border: 3px solid var(--white);
    border-radius: 20px;
}

.has-scrollbar:hover::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 35%);
}

.has-scrollbar::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 35%);
}

.title {
    color: var(--eerie-black);
    font-size: var(--fs-5);
    font-weight: var(--weight-600);
    letter-spacing: 0.4px;
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 0px solid var(--cultured);
    margin-bottom: 30px;
}





/*-----------------------------------*\
    #MAIN
  \*-----------------------------------*/

/**
   * overlay 
   */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: 0.5s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}



/*-----------------------------------*\
    #BANNER
  \*-----------------------------------*/

.banner {
    margin: 30px 0;
}

.slider-container {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
}

.slide-wrapper {
    position: relative;
    min-width: 100%;
    height: 550px;
    scroll-snap-align: start;
    overflow: hidden;
}

/* ---------- BLUR BACKGROUND ---------- */
.banner-body {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-blur-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
    /* blur edge fix */
}

/* dark overlay for readability (optional) */
.banner-body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* ---------- MAIN SLIDE ---------- */
.slider-item {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item .banner-img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}

ol,
ul {
    padding-left: 0rem;
}


/*-----------------------------------*\
    #FOOTER
  \*-----------------------------------*/

footer {
    background: var(--eerie-black);
    padding: 30px 0;
}

.footer-category {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--onyx);
}

.footer-category-title {
    color: var(--salmon-pink);
    font-size: var(--fs-6);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-category-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    row-gap: 3px;
    margin-bottom: 15px;
}

.category-box-title {
    color: var(--spanish-gray);
    font-size: var(--fs-8);
    font-weight: var(--weight-600);
    text-transform: uppercase;
}

.footer-category-link {
    position: relative;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-transform: capitalize;
    transition: var(--transition-timing);
}

.footer-category-link:hover {
    color: var(--spanish-gray);
}

.footer-category-link:not(:last-child)::after {
    position: absolute;
    content: '';
    top: 3px;
    right: -10px;
    background: var(--sonic-silver);
    width: 1px;
    height: 15px;
}


/**
   * footer nav 
   */

.footer-nav {
    border-bottom: 1px solid var(--onyx);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-nav-list:not(:last-child) {
    margin-bottom: 20px;
}

.footer-nav .nav-title {
    position: relative;
    color: var(--white);
    font-size: var(--fs-7);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.footer-nav .nav-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--salmon-pink);
    width: 60px;
    height: 1px;
}

.footer-nav-item {
    padding: 3px 0;
}

.footer-nav-link,
.footer-nav-item .content {
    width: max-content;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-transform: capitalize;
    transition: var(--transition-timing);
}

.footer-nav-link:hover {
    color: #e2e2e2;
}

.footer-nav-item.flex {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-nav-item .content {
    font-style: normal;
    margin-bottom: 5px;
}

.footer-nav-item .icon-box {
    color: var(--sonic-silver);
    font-size: 25px;
}

.footer-nav-item .icon-box ion-icon {
    --ionicon-stroke-width: 30px;
}

.footer-nav .social-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.social-link .footer-nav-link {
    font-size: 25px;
}

.footer-bottom {
    margin-bottom: 50px;
    text-align: center;
}

.payment-img {
    max-width: 335px;
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
}

.copyright {
    color: var(--sonic-silver);
    font-size: var(--fs-8);
    font-weight: var(--weight-500);
    text-transform: capitalize;
    letter-spacing: 1.2px;
}

.copyright a {
    display: inline;
    color: inherit;
}





/*-----------------------------------*\
    #RESPONSIVE
  \*-----------------------------------*/


/**
   * responsive larger than 480px screen
   */

@media (min-width: 480px) {

    /**
     * #CUSTOM PROPERTY
     */

    :root {

        /**
       * typography 
       */

        --fs-1: 1.875rem;

    }


    /**
     * #HEADER
     */

    .header-top {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--cultured);
    }

    .header-social-container,
    .header-top-actions {
        display: none;
    }

    .header-alert-news {
        color: var(--sonic-silver);
        font-size: var(--fs-9);
        text-transform: uppercase;
    }

    .header-alert-news b {
        font-weight: var(--weight-500);
    }

    .header-main {
        padding: 0px 0;
    }

    .flex-box {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
    }

    .auth-width {
        width: 5%;
    }

    .guest-width {
        width: 10%;
    }

    /**
     * #FOOTER
     */

    .copyright {
        --fs-8: 0.875rem;
    }

}

.header-main {
    width: 100%;
}

@media (max-width: 480px) {
    header {
        position: fixed !important;
        width: 100% !important;
    }

    .header-main {
        width: 100%;
    }

    .header-width-768 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }

    .header-logo img {
        margin: 0px;
    }

    .header-logos {
        max-width: 11rem;
        width: auto;
        padding: 2rem;
    }

    .gallery_cover {
        width: 350px !important;
    }

    .package-description {
        width: 75% !important;
    }
}



/**
   * responsive larger than 768px screen
   */

@media (min-width: 768px) {

    /**
     * #CUSTOM PROPERTY
     */

    :root {

        /**
       * typography 
       */

        --fs-1: 2.375rem;

    }



    /**
     * #BASE 
     */

    html {
        font-size: 17px;
    }



    /**
     * #REUSED STYLE 
     */

    .container {
        max-width: 750px;
        margin: auto;
    }


    /**
     * #FOOTER 
     */

    .footer-nav .container {
        display: flex;
        flex-wrap: wrap;
        row-gap: 50px;
        column-gap: 20px;
    }

    .footer-nav-list {
        min-width: calc(33.33% - 15px);
        width: calc(33.33% - 15px);
        flex-grow: 1;
    }

    .footer-nav-list:not(:last-child) {
        margin-bottom: 0;
    }

}


.header-logos {
    max-width: 11rem;
    width: auto;
    padding: 2rem;
}


/**
   * responsive larger than 1024px screen
   */

@media (min-width: 1024px) {

    /**
     * #CUSTOM PROPERTY
     */

    :root {

        /**
       * typography 
       */

        --fs-1: 2.625rem;
        --fs-2: 1.125rem;

    }



    /**
     * #REUSED STYLE 
     */

    .container {
        max-width: 980px;
    }

    /**
     * #BANNER 
     */

    .banner {
        margin-top: 0;
    }

    .slider-item {
        height: 380px;
    }

    .banner-content {
        left: 75px;
        max-width: 400px;
    }

    .banner-subtitle {
        --fs-7: 1.625rem;
    }

    .banner-text {
        --fs-7: 1.375rem;
    }

    .banner-btn {
        --fs-11: 0.875rem;
    }

    /**
     * #FOOTER
     */

    .footer-nav-list {
        min-width: calc(20% - 16px);
        width: calc(20% - 16px);
    }

    .footer-nav-list:last-child {
        display: block;
    }

    .footer-bottom {
        margin-bottom: 0;
    }

}





/**
   * responsive larger than 1200px screen
   */

@media (min-width: 1200px) {

    /**
     * #REUSED STYLE 
     */

    .container {
        max-width: 1200px;
    }

    /**
     * #BANNER
     */

    .slider-item:last-child .banner-img {
        object-position: top;
    }

    /**
     * #FOOTER
     */

    footer {
        padding-top: 50px;
    }

    .footer-category {
        margin-bottom: 50px;
        padding-bottom: 35px;
    }

    .footer-nav {
        padding-bottom: 50px;
    }

}





/**
   * responsive larger than 1400px screen
   */

@media (min-width: 1400px) {

    /**
     * #BASE 
     */

    html {
        font-size: 18px;
    }



    /**
     * #REUSED STYLE 
     */

    .container {
        max-width: 1350px;
    }



    /**
     * #BANNER
     */

    .slider-item {
        height: 450px;
    }

    .banner-content {
        left: 110px;
        max-width: 460px;
    }

}


/* /////////////////////////////////// */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: rgb(37, 37, 37);
    display: flex;
    align-items: center;
    z-index: 1000;
}

nav {
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #2e2e2e;
    color: #e0e0e0;
}

nav ul li a.active {
    background: #484848;
    color: #c3c3c3;
}

.nav-link {
    color: #c3c3c3;
}

.nav-link:hover {
    background: #2e2e2e;
    color: #e0e0e0;
}

.nav-link:focus,
.nav-link:hover {
    color: #c3c3c3;
}

/* ================= SECTIONS ================= */
section {
    min-height: 100vh;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

#home {
    background: #313131;
    color: #c3c3c3;
}

#home .slider-wrapper .social-wrapper {
    display: none;
}

#training {
    background: #313131;
    color: #c3c3c3;
}

#packages {
    background: #313131;
    color: #c3c3c3;
}

.package-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.package-intro {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.package-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: bolder;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.package-description {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#bookus {
    background: #313131;
    color: #c3c3c3;
}

.bookus-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.bookus-intro {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.bookus-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: bolder;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bookus-description {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


#whyus {
    background: #313131;
    color: #c3c3c3;
}


/* //////////////////////// whyus //////////////////////// */
#about {
    background: #313131;
    color: #c3c3c3;
}

/* HEADER */
.about-header {
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    color: #c3c3c3;
    line-height: 1.6;
}

.about_h1 {
    font-size: 42px;
    margin-bottom: 3rem;
}

.about_p {
    margin-top: 10px;
    font-size: 1rem;
    opacity: .9;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;

}


.life_at_descrip {
    margin-top: 10px;
    font-size: 1rem;
    opacity: .9;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

.life_at {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

/* SECTION COMMON */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #c3c3c3;
}

/* ABOUT US */
.about-text {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 17px;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    display: flex;
    background: #505050;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #c3c3c3;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 20px;
}

.team-card span {
    font-size: 14px;
    color: #c3c3c3;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    color: #c3c3c3;
    margin: 0 8px;
    font-size: 18px;
    transition: .3s;
}

.social-icons a:hover {
    color: #c3c3c3;
}

/* LIFE AT TBOX */
.life-grid {
    width: 100%;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.youtube_videos {
    width: 100%;
}

.life-grid iframe {
    width: 100%;
    height: 280px;
    border-radius: 15px;
}

/* CONTACT */
.about_contact_us {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.map-grid {
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.contact-box h3 {
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box .social-icons a {
    font-size: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    border: none;
}

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

    .life-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* //////////////////////// whyus //////////////////////// */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #797979;
}

.accordion-item {
    border-bottom: 1px solid #797979;
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    color: #c3c3c3;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #707070;
}

.accordion-header.active {
    background: transparent;
    color: #b4b4b4;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-content.show {
    max-height: 500px;
    /* large enough */
}

.accordion-body {
    padding: 16px 20px;
    background: #727272;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* //////////////////////// whyus //////////////////////// */


.address-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.address-info-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.address-info {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}



/* ////////////////////////////////////////////////////// */
.wrapper {
    height: 400px;
    width: 320px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

.wrapper .card {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 5px;
    background: #484848;
    border-radius: 10px;
    transform: translateY(0deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.wrapper:hover>.front-face {
    transform: rotateY(-180deg);
}

.wrapper .card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.wrapper .back-face {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    transform: rotateY(180deg);
}

.wrapper:hover>.back-face {
    transform: rotateY(0deg);
}

.wrapper .back-face img {
    height: 150px;
    width: 150px;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(375deg, #b6b6b6, #575757);
}

.wrapper .back-face .info {
    text-align: center;
}

.back-face .info .title {
    font-size: 30px;
    font-weight: 500;
    color: #c3c3c3;
}

.back-face ul {
    display: flex;
}

.back-face ul a {
    display: block;
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    margin: 0 5px;
    line-height: 38px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(375deg, #1cc7d0, #2ede98);
    transition: all 0.5s ease;
}

.back-face ul a:hover {
    color: #1cc7d0;
    border-color: #1cc7d0;
    background: linear-gradient(375deg, transparent, transparent);
}

.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #fff;
    font-size: 2rem;
    font-weight: var(--weight-600);
    text-transform: capitalize;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


/* ////////////////////////////////////////// */
:root {
    --n-rows: 3;
    --n-cols: 6;
}

/* ================= GRID ================= */
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    justify-items: center;
}

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

/* ================= CONTAINER ================= */
.gallery_container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    cursor: pointer;
}

/* ================= FULL IMAGE ================= */
.gallery_cover {
    width: 100%;
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 14px;
}

.gallery_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

/* ================= HEX OVERLAY ================= */
.gallery_dtls {
    --l: clamp(60px, 70vmin / var(--n-cols), 110px);
    --hl: calc(.5 * var(--l));
    --ri: calc(.5 * 1.732 * var(--l));

    position: absolute;
    inset: 0;

    display: grid;
    place-content: center;
    grid-template: repeat(var(--n-rows), var(--l)) / repeat(var(--n-cols), var(--ri));
    grid-gap: var(--hl) 0;

    padding: var(--hl) 0;
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
    transition: .6s ease;

    filter: drop-shadow(2px 2px 5px black);
}

/* ================= HOVER ================= */
.gallery_container:hover .gallery_cover img {
    transform: scale(1.1);
    filter: brightness(.4);
}

.gallery_container:hover .gallery_dtls {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* ================= HEX CELLS ================= */
.hex-cell {
    grid-column-end: span 2;
    margin: calc(-1 * var(--hl)) 0;
    overflow: hidden;
    transform: scale(.9);

    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
}

.hex-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.9);
    transition: .6s;
}

.hex-cell img:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

/* offset rows */
.hex-cell:nth-of-type(5n + 1) {
    grid-column-start: 2;
}


/* ////////////////////////////////////////////////////////// */
.form-wrapper {
    width: 100%;
    /* margin: 50px auto; */
    background: #484848;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

/* Hide all steps */
.form-step {
    display: none;
    animation: fade .4s ease;
}

/* Show active step */
.form-step.active {
    display: block;
}

.step-error {
    display: none;
    margin: 10px 0;
    padding: 10px;
    background: #ffe5e5;
    color: #b30000;
    border-radius: 4px;
    font-size: 14px;
}

.form-inquire {
    display: none;
    animation: fade .4s ease;
}

.form-inquire.active {
    display: block;
}

.inquire-error {
    display: none;
    margin: 10px 0;
    padding: 10px;
    background: #ffe5e5;
    color: #b30000;
    border-radius: 4px;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #313131;
    border: 1px solid #7c7c7c;
    color: #c3c3c3;
}


.tabs-container {
    width: 100%;
    border-bottom: 1px solid #b5b5b5;
}

.book-types-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.btn-group {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.btn-group-first {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 1rem;
}

button {
    padding: 10px 18px;
    border: none;
    background: #666666;
    color: #c3c3c3;
    border-radius: 10px;
    cursor: pointer;
}


.submit-btn {
    background: #666666;
}

.submit-btn:hover {
    background: #464646;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ///////////////////////////////////// */
.tab-container {
    width: 100%;
    margin: 50px auto;
    background: #313131;
    padding: 15px;
    border-radius: 8px;
}

/* Tabs */

.tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #c3c3c3;
    cursor: pointer;
    font-size: 15px;
    border-radius: 0px;
}

.tab-btn.active {
    background: transparent;
    color: #c3c3c3;
    border-bottom: 4px solid #c3c3c3;
}

/* Content */

.tab-content {
    display: none;
    padding: 15px;
    margin-top: 15px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
}

.tab-content.active {
    display: block;
}

.book-types {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: initial;
    border: 1px solid rgb(112 112 112);
    background: #5a5a5a;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

/* Hide Checkbox */
.book-types input {
    display: none;
}

/* Tick icon hidden */
.checkmark {
    display: none;
    font-size: 18px;
    color: #c3c3c3;
}

/* When Checked */
.book-types input:checked+.checkmark {
    display: block;
}

/* Active Style */
.book-types input:checked~.checkmark,
.book-types input:checked {
    pointer-events: none;
}

.book-types:has(input:checked) {
    background: #808080;
    color: #c3c3c3;
    border-color: #6e6e6e;
}


/* ======================= slider_banner style =============================== */
.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* ===== MAIN SLIDER ===== */
.main-slider {
    width: 80%;
    height: 100vh;
    float: left;
    position: relative;
}

.main-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider .content {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 50%;
    color: #fff;
}

.main-slider .title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.main-slider .caption {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(40px);
    transition: all .6s ease;
}

.main-slider .caption.show {
    opacity: 1;
    transform: translateX(0);
}

/* ===== NAV SLIDER ===== */
.nav-slider {
    width: 20%;
    height: 100vh;
    float: left;
    padding-left: 5px;
}

.nav-slider .swiper-slide {
    height: 20%;
    opacity: .4;
    cursor: pointer;
    position: relative;
}

.nav-slider .swiper-slide-active {
    opacity: 1;
}

.nav-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-slider .title {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 14px;
    padding: 5px;
    text-align: center;
}

/* arrows */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}



/* /////////////////// featured_gallery_dtls ///////////////// */
/* ================= Hero Section ================= */
.hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.85) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 5% 60px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
    margin-bottom: 12px;
    letter-spacing: -1px;
    text-align: center;
}

/* ================= Main Content ================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.description-section {
    margin-top: 90vh !important;
    padding: 70px 0 0px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.description-section h2 {
    font-size: 2.4rem;
    margin-bottom: 28px;
    color: black;
}

.description-section p {
    font-size: 1.18rem;
    color: #5e5e5e;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

/* ================= Gallery Grid ================= */
.gallery {
    padding-bottom: 100px;
}

.gallery-grid {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: center;
}

.gallery-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.28s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    width: 1200px;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 22px 20px;
}

.gallery-info h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.gallery-info p {
    font-size: 0.98rem;
    color: #bbbbbb;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .description-section {
        padding: 50px 0 70px;
    }

    .description-section h2 {
        font-size: 2rem;
    }

    section {
        min-height: 100vh;
        padding: 80px 0%;
        display: block;
        align-items: center;
        font-size: 40px;
        font-weight: bold;
    }
}


@media (max-width: 460px) {

    .hero {
        height: 85vh;
        min-height: 600px;
        width: 100%;
        overflow: hidden;
    }

    .hero img {
        width: 100%;
        height: 85vh;
        min-height: 600px;
        object-fit: cover;
        opacity: 0.85;
    }

    .gallery-item img {
        width: 340px;
        height: 360px;
        object-fit: cover;
        display: block;
    }

    section {
        min-height: 100vh;
        padding: 80px 0%;
        display: block;
        align-items: center;
        font-size: 40px;
        font-weight: bold;
    }
}


/* ============================================================== */
/* traning package */
/* ============================================================== */
.package-wrapper {
    width: 1200px;
    max-width: 95%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card Style */
.package-card {
    margin-left: 10px;
    width: 340px;
    background: #484848;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Popular Badge */
.package-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: 20px;
    right: -40px;
    background: #363636;
    color: #c3c3c3;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

/* Title */
.package-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #c3c3c3;
}

/* Info */
.package-info {
    font-size: 14px;
    color: #c3c3c3;
    margin-bottom: 20px;
}

/* Price */
.package-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c3c3c3;
}

.package-price span {
    font-size: 16px;
    font-weight: 400;
    color: #777;
}

/* Features */
.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #c3c3c3;
}

.package-features li::before {
    content: "✔";
    color: #d3d3d3;
    margin-right: 8px;
}

/* Button */
.package-btn {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    padding: 12px;
    background: linear-gradient(90deg, #313131, #5f5f5f);
    color: #c3c3c3;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.package-btn:hover {
    background: linear-gradient(90deg, #313131, #5f5f5f);
    letter-spacing: 1px;
    color: #c3c3c3;
}

/* Responsive */
@media(max-width:768px) {
    .package-wrapper {
        flex-direction: column;
        align-items: center;
    }
}



/* ============================================================== */
/* PACKAGES style for packages_details */
/* ============================================================== */
#regular_tab {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    /* display:flex; */
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

#homely_tab {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}


#sonaton_tab {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.form-packageDtls {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

/* Header */
.section-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6d6d6d, #9b9292);
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}

/* Card Wrapper */
.packageDtls-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card */
.package-card-dtls {
    width: 350px;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #c3c3c3;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.package-card-dtls:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Glow Effect */
.package-card-dtls::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    top: -50%;
    left: -50%;
    transform: rotate(25deg);
    transition: 0.6s;
}

.package-card-dtls:hover::before {
    top: -30%;
    left: -30%;
}

/* Package Name */
.package-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Price */
.package-price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f5b031;
}

/* Details List */
.package-details {
    list-style: none;
    margin-bottom: 25px;
}

.package-details li {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.package-details li::before {
    content: "•";
    color: #ff5e62;
    margin-right: 8px;
}

/* Button */
.package-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(90deg, #313131, #5f5f5f);
    color: #c3c3c3;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.package-btn:hover {
    letter-spacing: 1px;
    background: linear-gradient(90deg, #313131, #5f5f5f);
}

/* Responsive */
@media(max-width:768px) {
    .section-title {
        font-size: 30px;
    }

    .package-card {
        width: 100%;
    }
}


/* ======================================================================================== */
/*  */
/* ======================================================================================== */
/* ===== Container ===== */
.schedule-container {
    padding: 25px;
    border-radius: 12px;
}

.schedule-container h3 {
    margin-bottom: 20px;
    color: #c3c3c3;
}

/* ===== Date Filter UI ===== */
.schedule-filter {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.schedule-input-group {
    flex: 1;
    min-width: 180px;
}

.schedule-input-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
}

.schedule-input-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.schedule-filter button {
    padding: 10px 18px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: #818181;
    color: #c3c3c3;
    font-weight: bold;
    margin-top: 20px;
}

/* ===== Schedule List ===== */
.schedule-list {
    display: grid;
    gap: 12px;
    max-height: 420px;
    overflow: auto;
}

/* ===== Schedule Card ===== */
.schedule-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 2px solid #878787;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    background: #7a7a7a;
    font-weight: 500;
    font-size: 15px;
}

.schedule-card:hover {
    border-color: #878787;
    background: #7a7a7a;
}

.schedule-card input[type="radio"] {
    display: none;
}

/* ===== Checkmark ===== */
.schedule-checkmark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #878787;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: none;
    /* HIDE by default */
    opacity: 0;
    transform: scale(0.7);
    transition: 0.3s;

    background: #7a7a7a;
    color: #c3c3c3;
    /* always WHITE */
}

/* show only when selected */
.schedule-card input[type="radio"]:checked+.schedule-checkmark {
    opacity: 1;
    transform: scale(1);
    border-color: #878787;
}

/* ===== Empty ===== */
.schedule-empty {
    text-align: center;
    color: #c3c3c3;
    padding: 20px;
}

/* ===== Selected Result ===== */
.selected-schedule {
    margin-top: 20px;
    padding: 12px;
    background: #7a7a7a;
    border: 1px dashed #878787;
    border-radius: 8px;
    font-size: 14px;
}

/* ===== Status Badge ===== */
.schedule-status {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.status-free {
    /* background: #6e6e6e; */
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bolder;
}

.status-booked {
    /* background: #6e6e6e; */
    color: #ff1100;
    font-size: 1.2rem;
    font-weight: bolder;
}

/* booked card style */
.schedule-booked {
    opacity: 0.6;
    cursor: not-allowed;
}


/* =================================================== */
.package-box {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.package-title {
    font-weight: 600 !important;
    font-size: 16px !important;
}

.package-price {
    font-size: 14px !important;
}

.normal-price {
    color: #222 !important;
    font-weight: 600 !important;
}

.old-price {
    color: #8a8a8a !important;
    text-decoration: line-through !important;
    margin-right: 8px !important;
}

.offer-price {
    color: #a5a5a5 !important;
    font-weight: 700 !important;
}


/* =============================================================== */
/* Hide original checkbox */
.schedule-checkbox {
    display: none;
}

/* Card Style */
.schedule-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border: 1px solid #878787;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #7a7a7a;
}

.schedule-card:hover {
    background: #464646;
}

/* Selected card highlight */
.schedule-selected {
    border: 2px solid #4CAF50;
    background: #6e6e6e;
}

/* Checkmark style */
.schedule-checkmark {
    display: none;
    font-size: 18px;
    font-weight: bold;
    color: #adadad;
}

/* Show checkmark when selected */
.schedule-selected .schedule-checkmark {
    display: contents;
}

/* Booked Style */
.schedule-booked {
    opacity: 0.6;
    cursor: not-allowed;
}

.status-booked {
    color: #ff1100;
    font-weight: 600;
}

.status-free {
    color: #00ff00;
    font-weight: 600;
}


/* log out modal style start */
.modal_body {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: right;
    background: rgba(255, 255, 255, 0.726);
    z-index: 0;
    height: 110vh;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

.modal_body:target {
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.modalcontent {
    position: relative;
    margin-top: 5.8rem;
    margin-right: 0;
    width: 200px;
    height: inherit;
    background: rgb(105, 105, 105);
    color: #c3c3c3;
    transition: width 0.5s, height 0.5s;
    transition-delay: 0s, 0.75s;
    /* z-index: 100000; */
    border-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
}

.modalcontent .toggle {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgb(100, 100, 100);
    /* #2196f3  */
    border-bottom: 0px solid rgb(167, 167, 167);
    transition: 0.5s;
    cursor: pointer;
}

.modalcontent .toggle h1 {
    margin-right: 110px;
    font-size: 20px;
    font-weight: 600;
    font-family: monospace;
    color: #c3c3c3;
}

.modalclose {
    position: absolute;
    top: 0;
    right: 15px;
    color: #c3c3c3;
    text-decoration: none;
    background: none;
    overflow: hidden;
    font-size: 29px;
}

.modalclose:hover {
    color: red;
}

.modalcontent ul {
    position: absolute;
    list-style: none;
    width: 100%;
}

.modalcontent ul li {
    position: relative;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #d1d1d185;
}

.modalcontent ul li:hover {
    background: var(--sidebar-hover-color);
}

.modalcontent ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: var(--logout-modal-color);
}

.modalcontent ul li a:hover {
    color: rgba(11, 112, 7, 0.863);
    background: rgba(255, 255, 255, 0.959);
}

.modalcontent ul li a .icon {
    position: relative;
    top: 5px;
    display: block;
    min-width: 50px;
    height: 40px;
    text-align: center;
    line-height: 36px;
}

.modalcontent ul li a .icon .bx {
    font-size: 20px;
}

.modalcontent ul li a .title {
    position: relative;
    display: block;
    line-height: 38px;
    text-align: start;
    white-space: nowrap;
    font-size: 0.9rem;
}

/* log out modal style end */


.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #585656;
    background-clip: padding-box;
    border: 1px solid rgba(73, 73, 73, 0.2);
    border-radius: .3rem;
    outline: 0;
}


/* ========================================================================= */
/* social media link */
/* ========================================================================= */
.main-content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    font-weight: bold;
}

/* RIGHT SIDE SOCIAL ICONS */

.social-wrapper {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: all .35s ease;
}

.social-links a:hover {
    transform: translateX(-6px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.facebook:hover {
    background: #1877f2;
}

.twitter:hover {
    background: #1da1f2;
}

.linkedin:hover {
    background: #0a66c2;
}

.instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}


/* WHATSAPP FLOAT BUTTON */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}


/* CHAT BOX */

.chat-box {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    display: none;
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background: #25D366;
    color: white;
    padding: 12px;
    font-weight: bold;
}

.chat-body {
    padding: 10px;
}

.chat-body textarea {
    width: 100%;
    height: 60px;
    resize: none;
    padding: 8px;
}

.chat-send {
    background: #25D366;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}


/* ========================================================================= */
/* facebook post */
/* ========================================================================= */
.fb-post-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* 2 per row if space allows */
    gap: 30px;
    max-width: 900px;
    margin: 6rem auto 2rem;
}

.fb-post-title {
    grid-column: 1 / -1;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #c3c3c3;
    margin-bottom: 2rem;
}

.fb-post-card {
    background: #494949;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all .3s ease;
    border: 1px solid #696969;
    display: flex;
    flex-direction: column;
}

.fb-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fb-post-message {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #c3c3c3;
}

.fb-post-image {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
    margin-top: 10px;
    height: 60vh;
}

.fb-post-image:hover {
    opacity: 0.9;
}

.fb-post-footer {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.fb-btn {
    background: #494949;
    color: #c3c3c3;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.fb-btn:hover {
    background: #494949;
}


/* videos gellary */
:root {
    --bg-start: #0b071f;
    --bg-end: #1f0f33;
    --accent: #00ffea;
    --accent2: #ff00aa;
    --glass: rgba(255, 255, 255, 0.07);
    --text: #f8f8ff;
}


@keyframes bgPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================ */
/* videos gellary */
.youtube_gallery_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 100%;
    padding: 0 10px;
    margin: 2rem auto;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


/* =============================================================== */