﻿body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.cursor-dumbbell {
    position: fixed;
    top: 0;
    left: 0;
    width: 19px;
    height: 20px;
    pointer-events: none;
    transform: translate(-50%,-50%);
    z-index: 9999;
}

    .cursor-dumbbell img {
        width: 100%;
        height: 100%;
    }

* {
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.main {
    padding-top: 0px;
}

.none {
    display: none;
}

.block {
    display: block;
}

.book-mobile {
    display: none;
}





/*------ FOR TEXT COME FROM IN TO OUT---------*/
.hidden {
    opacity: 0;
    /*transform: scale(0.6);*/ /* aur chhota start karega */
    /*transition: all 0.9s ease-out;*/ /* thoda slow bhi rakha */

    transform: scale(0.4); /* bahut chhota se start hoga */
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show {
    opacity: 1;
    transform: scale(1); /* final normal size */
}




/* Container for social icons inside nav */
.nav-social {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px; /* space from Contact */
    position: relative;
    top: 0px;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.nav-social-wrapper {
    position: relative;
    height: 40px; /* 👈 adjust this to where you want it to stop */
}
/* Circle style for all icons */

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f0f0f0; /* default circle color */
    transition: all 0.3s ease;
    padding: 5px; /* small padding for Google logo */
}
/* Google My Business logo inside circle */

.nav-social .gmb img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0; /* remove extra margin */
}
/* Font Awesome icons inside circle */

.nav-social a i {
    font-size: 18px;
    color: #171717;
}
/* Hover effect: change background and icon color */

.nav-social a:hover {
    background-color: #ff6a4a; /* circle color on hover */
}

    .nav-social a:hover i, .nav-social a:hover img {
        filter: brightness(0) invert(1); /* icon/logo becomes white */
    }

.nav-social1 a {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: #f0f0f0; /* overflow: hidden;*/
    overflow: hidden;
    transition: all 0.4s ease;
}
    /* Google icon */

    .nav-social1 a img {
        width: 24px;
        height: 24px;
        margin-left: 7px;
        flex-shrink: 0;
    }
/* hidden text */

.gmb-text {
    white-space: nowrap;
    margin-left: 10px;
    opacity: 0;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}
/* expand button */

.nav-social1 a:hover {
    width: 210px;
    background: #ff6a4a;
}
    /* show text */

    .nav-social1 a:hover .gmb-text {
        opacity: 1;
    }
/* Container for social icons inside nav */
.nav-social3 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 250px;
    position: relative;
    top: 35px;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nav-social3-wrapper {
    position: relative;
    height: 40px; /* 👈 adjust this to where you want it to stop */
}
/* Circle style for all icons */

.nav-social3 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f0f0f0; /* default circle color */
    transition: all 0.3s ease;
    padding: 5px; /* small padding for Google logo */
}
/* Google My Business logo inside circle */

.nav-social3 .gmb img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin: 0; /* remove extra margin */
}
/* Font Awesome icons inside circle */

.nav-social3 a i {
    font-size: 15px;
    color: #171717;
}
/* Hover effect: change background and icon color */

.nav-social3 a:hover {
    background-color: #ff6a4a; /* circle color on hover */
}

    .nav-social3 a:hover i, .nav-social3 a:hover img {
        filter: brightness(0) invert(1); /* icon/logo becomes white */
    }

.nav-social3 a {
    display: flex;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: #f0f0f0;
    /* overflow: hidden; */
    overflow: hidden;
    transition: all 0.4s ease;
}
    /* Google icon */
    .footer a{
        color:white;
    }
    .nav-social3 a img {
        width: 24px;
        height: 24px;
        margin-left: 7px;
        flex-shrink: 0;
    }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

    /* Checkbox styling */
    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 3px;
        cursor: pointer;
    }

    /* Label styling */
    .checkbox-group label {
        cursor: pointer;
    }

    /* Link styling (fixes Lighthouse warning) */
    .checkbox-group a {
        color: #1a73e8;
        text-decoration: underline; /* important for accessibility */
        font-weight: 500;
    }

        /* Hover state */
        .checkbox-group a:hover {
            color: #0b57d0;
            text-decoration: underline;
        }

        /* Keyboard accessibility (very important for Lighthouse) */
        .checkbox-group a:focus {
            outline: 2px solid #0b57d0;
            outline-offset: 2px;
        }

    /* Checkbox focus visibility */
    .checkbox-group input[type="checkbox"]:focus {
        outline: 2px solid #1a73e8;
        outline-offset: 2px;
    }
/* hidden text */

.gmb-text {
    white-space: nowrap;
    margin-left: 10px;
    opacity: 0;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}
/* expand button */
/*
.nav-social3 a:hover {
    width: 210px;
    background: #ff6a4a;
}*/
    /* show text */

    .nav-social3 a:hover .gmb-text {
        opacity: 1;
    }


.social-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    border-top: 2px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #f5f5f5;
}

    .social-bar a {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #333;
        padding: 6px 10px;
        transition: 0.3s;
        font-family: 'DM Sans';
    }
        /* icon size */

        .social-bar a i {
            font-size: 16px;
        }
    /* Google hover */

    .social-bar .gmb:hover {
        color: #4285F4;
    }
    /* Facebook hover */

    .social-bar a[href*="facebook"]:hover {
        color: #1877F2;
    }
    /* Instagram hover */

    .social-bar a[href*="instagram"]:hover {
        color: #E4405F;
    }
    /* image alignment */

    .social-bar img {
        width: 18px;
        height: 18px;
    }

    .social-bar i {
        margin-right: 10px;
        font-weight: 500;
    }

.fa-facebook-f:before {
    content: "\f39e";
    font-size: 20px;
}

.fa-twitter:before {
    content: "\f099";
    font-size: 18px;
}

.fa-instagram:before {
    content: "\f16d";
    font-size: 22px;
}
.logo-container{
    margin-top:45px;
}

/*-------for-HEADER PAGE-------------*/
.header-mobile {
    display: none;
}

.header {
    background-color: white;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    border-bottom: 1px solid #c1b8b8;
}

.header-inner {
    display: flex;
    width: 100%;
    padding: 25px 0px 20px 10px;
    justify-content: space-between;
}

.header-logo {
    width: 19%;
    margin-left: 83px;
}

.header-nav {
    position: relative;
    width: 71%;
    margin: auto;
    display: flex;
    flex-direction: row-reverse;
}

.header-nav-inner {
    margin: 0px 77px 0px 0px;
}

.nav-container {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    position: relative;
}

    .nav-link a {
        font-family: DM sans;
        font-weight: 500;
        font-size: 17px;
        padding: 0px 15px 0px 15px;
        color: #171717;
        transition: 0.5s ease all;
        display: block;
    }

        .nav-link a span {
            position: relative;
            display: inline-block;
            padding-bottom: 5px;
        }

            /* underline hidden by default */
            .nav-link a span::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0%;
                height: 2px;
                background-color: #F67118;
                transition: width 0.3s ease;
            }

    /* on hover show underline */
    .nav-link:hover a span::after {
        width: 100%;
    }


.nav-social {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
    position: relative;
    z-index: 3;
}

.nav-social-wrapper {
    position: relative;
    height: 40px;
    transition: all 0.3s ease;
}

/* ICON DESIGN */
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    padding: 5px;
}

.nav-social .gmb img {
    width: 21px;
    height: 21px;
}

.nav-social a i {
    font-size: 23px;
    color: #171717;
}

.nav-social a:hover {
    background-color: #ff6a4a;
}

    .nav-social a:hover i,
    .nav-social a:hover img {
        filter: brightness(0) invert(1);
    }

/* INITIAL STATES */
#headerSocialWrapper {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

#floatingSocialWrapper {
    opacity: 1;
}

/* ACTIVE STATE */
#headerSocialWrapper.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#floatingSocialWrapper.hide {
    opacity: 0;
}

/* Footer */
.footer {
    background: #141414;
    color: #aaa;
    padding: 28px 20px 28px 40px;
    margin-top: 20px;
}
.phone-box {
    margin-bottom: 15px;
    line-height: 30px;
    font-size: 16px;
    font-family: 'DM Sans';
    font-weight: 500;
    color: #aaa;
    transition: 0.3s;
}

/* GRID */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

/* Logo */
.logo {
    width: 85%;
    margin: auto;
}

/* HEADINGS */
.footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 22px;
    font-family: 'DM Sans';
    font-weight: 600;
}

/* OFFICE */
.office {
    width: 60%;
}

    /* ADDRESS */
    .office p {
        margin-bottom: 12px;
        line-height: 26px;
        font-size: 16px;
        font-family: 'DM Sans';
        font-weight: 500;
        color: #aaa;
        transition: 0.3s;
    }

        /* SPACE BETWEEN ADDRESS & NUMBERS */
        .office p:first-of-type {
            margin-bottom: 20px;
        }

/* PHONE WRAPPER EFFECT */
.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    width: fit-content;
    margin: 8px 0; /* 🔥 perfect vertical spacing */

    background: rgba(255, 60, 77, 0.08);
    border-radius: 25px;
    font-size: 15px !important;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

    /* ICON */
/* WRAPPER */ .phone-wrapper {
    margin-top: 20px;
}
/* BOX */

.phone-box {
    display: inline-block;
    position: relative;
}
/* MAIN PHONE */

.phone-main {
    background: linear-gradient(135deg, #fe6f0d, #ff7a18);
    color: #fff;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: 0.3s;
    width: 74%;
}
/* +2 BADGE */

.count {
    background: #fff;
    color: #ff3c4d;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
}
/* DROPDOWN */

.phone-list {
    position: absolute;
    top: 106%;
    left: 51%;
    transform: translate(-50%, -10px);
    width: max-content;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
    width: 100%;
}
/* ITEMS */

.phone-item {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    margin-top: 8px;
    backdrop-filter: blur(5px);
    text-align: center;
    min-width: 200px;
    transition: 0.3s;
}

    .phone-item:hover {
        background: #ff3c4d;
    }
/* HOVER EFFECT */

.phone-box:hover .phone-list {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
/* GLOW */

.phone-main:hover {
    box-shadow: 0 0 15px rgba(255, 60, 77, 0.6);
}
.newsletter {
    width: 70%;
}
/* ================= LINKS (CLEAN STYLE) ================= */

.links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;
    row-gap: 12px;
    list-style: none;
    padding: 0;
    margin-right: 77px;
}

.links li {
    margin: 0;
}

.links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    width: 100%;
}

    /* 🔴 DOT ICON */
    .links a::before {
        content: "•";
        color: #ff3c4d;
        font-size: 18px;
        transition: 0.3s;
    }

    /* TEXT */
    .links a span {
        position: relative;
    }

        /* UNDERLINE */
        .links a span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0%;
            height: 2px;
            background: #ff3c4d;
            transition: 0.3s;
        }

    /* HOVER */
    .links a:hover {
        color: #fff;
        transform: translateX(5px);
       
    }

        .links a:hover::before {
            transform: scale(1.3);
        }

        .links a:hover span::after {
            width: 100%;
        }

/* ================= NEWSLETTER ================= */

/* EMAIL BOX */
.email-box {
    position: relative;
    margin-bottom: 20px;
}

/* INPUT WRAPPER */
.for-form {
    width: 100%;
}

/* INPUT */
.input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 12px 40px 10px 0;
    color: white;
    outline: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

    /* 🔥 GLOW ON FOCUS */
    .input:focus {
        border-bottom: 1px solid #ff3c4d;
        box-shadow: 0 4px 10px rgba(255,60,77,0.3);
    }

    /* ✨ PLACEHOLDER STYLE */
    .input::placeholder {
        color: #777;
        transition: 0.3s;
    }

    /* fade placeholder on focus */
    .input:focus::placeholder {
        opacity: 0.4;
    }

/* BUTTON */
#btn-submitforemailcontent {
    background: none;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 8px;
    transition: all 0.3s ease;
}

    /* 🚀 HOVER EFFECT */
    #btn-submitforemailcontent:hover {
        color: #ff3c4d;
        transform: translateX(5px) scale(1.2);
    }

    /* 💥 CLICK EFFECT */
    #btn-submitforemailcontent:active {
        transform: scale(1.1);
    }

/* OPTIONAL GLOW RING ON HOVER */
.email-box:hover .input {
    border-bottom: 1px solid #888;
}
/* ================= BACK TO TOP ================= */

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 12px;
    border: none;
    border-radius: 50%;
    background-color: #FF3C4D;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none; /* hidden initially */
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.5s ease-in-out, background-color 0.3s;
    z-index: 9999;
}

    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #843B94;
        color: #E77626;
    }

@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0,0,0,0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0,0,0,0.6);
    }
}


/*---------Copyright-Block-----------*/
.copyright {
    display: block;
    width: 100%;
    background-color: #E77626;
}

.copyright-container {
    display: flex;
}

.left1 {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 50%;
    text-align: center;
    font-family: 'Poppins';
    border-right: 3px solid white;
    color: white;
    font-size: 17px;
    font-weight: 400;
}

.right1 {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 50%;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 400;
}

    .right1 a {
        color: white;
        font-size: 17px;
    }



/*
.icons {
    display: flex;
    padding: 6px 0px 0px 25px;
    width: 25%;
}

.fb-icon, .insta-icon, .youtube-icon {
    padding: 2px;
}

    .fb-icon img, .insta-icon img, .youtube-icon img {
        background-color: #E87820;
        border-radius: 50%;
        padding: 10px;
        width: 80%;
        transition: 0.5s ease all;
    }

        .fb-icon img:hover, .insta-icon img:hover, .youtube-icon img:hover {
            background-color: #8262C5;
            transform: scale(1.2);
        }

.call-section {
    display: flex;
    gap: 6px;
}

.call-section-container {
    margin-top: 10px;
}

.calendar {
    font-size: 18px;
    font-family: 'DM Sans';
}*/




/*--------HOME PAGE-------*/
.banner1 {
    width: 100%;
}

.main-heading {
    width: 100%;
}

    /* Your existing CSS */
    /* Your existing styling */
    .main-heading h1 {
        font-family: 'DM Sans';
        font-size: 100px;
        padding: 50px 0 60px 130px;
        margin-top: 115px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #2C2C2C;
        line-height: 1.2;
        min-height: 240px;
        /* Fade animation */
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

/* Active slide text animation */
.swiper-slide-active .main-heading h1 {
    opacity: 1;
    transform: translateY(0);
}

.main-heading span {
    color: #ff6a4a;
}

/*.top-bar {
    background: #f5f5f5;
    padding: 20px 128px 20px 135px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.top-left {
    color: #6c757d;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
    line-height: 1.6;
    padding-left: 15px;
    border-left: 4px solid #ff3c3c;*/ /* accent line */
/*}

    .top-left span {
        color: #000;
        font-weight: 700;
    }

.top-right {
    display: flex;
    gap: 25px;
}

    .top-right a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s ease;
    }

        .top-right a i {
            font-size: 15px;
        }

        .top-right a:hover {
            color: #ff6a4a;
            transform: scale(1.1);
        }*/


.top-bar {
    background: #ff6a4a;
    padding: 8px 130px 5px 115px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden; /* needed for moving text */
}

.top-left {
    color: #000000;
    font-size: 25px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
    line-height: 1.6;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    display: inline;
    width: 0;
    animation: typingLoop 4s steps(50, end) infinite;
}


.top-left span {
    color: #ffffff; /* accent color */
    font-weight: 700;
    display: inline;
}

/* Typing + deleting animation */
@keyframes typingLoop {
    0%, 10% {
        width: 0;
    }
    /* start typing */
    50%, 60% {
        width: 100%;
    }
    /* pause at full text */
    100% {
        width: 0;
    }
    /* delete */
}

/* Blinking cursor */
.top-left::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background: #ff3c3c;
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}
.top-right {
    display: flex;
    gap: 25px;
}

    .top-right a {
        text-decoration: none;
        color: #000;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.9s ease;
    }

        .top-right a i {
            font-size: 15px;
        }

        .top-right a:hover {
            color: #ff6a4a;
            transform: scale(1.1);
        }

.banner {
    margin-top: 45px;
    width: 100%;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide { /*
    font-size: 18px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    height:auto;
}

 /*   .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }*/

.prev::after,
.next::after {
    display: none;
}


/* Custom navigation buttons */
.next,
.prev {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0px 10px;
}

    .prev img,
    .next img {
        width: 25px;
        z-index: 1;
        object-fit: contain;
    }

/* Button positions */
.prev {
    left: 50px;
}

.next {
    right: 50px;
}
.gymSwiper {
    width: 100%;
    height: auto;
    margin:20px 0px 20px 0px;
}

    .gymSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .gymSwiper .swiper-slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }



/*.activities {
    width: 100%;
    background: linear-gradient(180deg,#fafafa,#f3f3f6);
}*/

/* section */
/*.activities-containers {
    width: 100%;
    padding: 55px 20px 40px;
}

    .activities-containers h1 {
        text-align: center;
        font-family: 'DM Sans';
        font-size: 44px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        position: relative;
    }

        .activities-containers h1::after {
            content: "";
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg,#ff6a4a,#9366AA);
            display: block;
            margin: 15px auto 0;
            border-radius: 2px;
        }*/

/* grid */
/*.activities-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    padding: 40px 60px;
}*/

/* Activity Card */
/*.activity-card {
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.8s ease;
    overflow: hidden;*/

    /* Start off-screen based on side */
    /*opacity: 0;
    transform: translateX(0);*/ /* will override per side */
/*}*/

/* Slide-in from left/right */
    /*.activity-card.left {
        transform: translateX(-100px);
        border-left: 0px solid white;
    }

    .activity-card.right {
        transform: translateX(100px);
        border-right: 0px solid white;
    }*/

/* When visible */
    /*.activity-card.show {
        opacity: 1;
        transform: translateX(0);
        border: 0.5px solid black;
    }*/

/* Gradient border effect */
/*.activity-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ff6a4a,#9366AA);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .35s;
}

.activity-card:hover::before {
    opacity: 1;
}

    .activity-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgb(255 255 255 / 8%);
    }*/

/* Icon Box */
/*.icon-box img {
    width: 60px;
    margin-bottom: 20px;
}*/

/* Text */
/*.activity-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.activity-card p {
    font-size: 15px;
    color: #555;
}*/

/* Read more button */
/*.btn-read {
    display: inline-block;
    padding: 8px 18px;
    background: #ff6a4a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
    font-family: 'DM Sans';
}*/

/* Responsive */
/*@media(max-width:900px){
    .activities-container{
        grid-template-columns: 1fr;
        padding: 20px 30px;
    }
    .activity-card.left,
    .activity-card.right {
        transform: translateY(60px);*/ /* slide up for mobile */
    /*}
}*/

/* icon */
/*.icon-box {
    width: 85px;
    height: 85px;
    margin: auto;
    background: linear-gradient(135deg,#ff6a4a,#ff8b6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: .35s;
}

    .icon-box img {
        width: 40px;
        filter: brightness(0) invert(1);
    }

.activity-card:hover .icon-box {
    transform: translateY(-6px) scale(1.08);
    background: linear-gradient(135deg, #000000, #000000);
}*/

/* title */
/*.activity-card h3 {
    font-family: 'DM Sans';
    font-size: 22px;
    color: #222;
    margin-bottom: 14px;
}*/

/* text */
/*.activity-card p {
    font-family: 'DM Sans';
    font-size: 15px;
    color: #666;
    line-height: 26px;
    margin-bottom: 25px;
}*/

/* read more text */
/*.run-txt {
    position: relative;
}

    .run-txt p {
        max-height: 55px;
        overflow: hidden;
        transition: max-height .4s ease;
        padding: 10px 75px 10px 75px;
    }*/

    /* fade bottom */
    /*.run-txt::after {
        content: "";
        position: absolute;
        bottom: 48px;
        left: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(transparent,#fff);
    }*/

    /* active */
    /*.run-txt p.active {
        max-height: 500px;
    }*/
/* ===========================
   Gym Activities - 3D Floating Tiles
   =========================== */
.activities {
    width: 100%;
    background: #111; /* deep dark for modern gym feel */
    padding: 50px 5%;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    perspective: 1200px; /* enables subtle 3D effect */
}

/* Section Title */
.activities-containers h1 {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
}

    .activities-containers h1::after {
        content: "";
        display: block;
        width: 140px;
        height: 4px;
        margin: 15px auto 0;
        background: linear-gradient(90deg,#ff6a4a,#9366AA);
        border-radius: 2px;
    }

/* Grid layout */
.activities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    padding: 0 40px;
}

/* Card Base */
.activity-card {
    background: #1c1c1c;
    border-radius: 20px;
    padding: 50px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
}

    /* Floating pseudo-layers for depth */
    .activity-card::before,
    .activity-card::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        top: 0;
        left: 0;
        pointer-events: none;
        transition: all 0.5s ease;
    }

    .activity-card::before {
        background: linear-gradient(135deg,#ff6a4a,#9366AA);
        opacity: 0.08;
        transform: rotate(-6deg) translate(-5px, -5px);
        z-index: 0;
    }

    .activity-card::after {
        background: linear-gradient(135deg,#9366AA,#ff6a4a);
        opacity: 0.05;
        transform: rotate(8deg) translate(5px, 5px);
        z-index: 0;
    }

    /* Hover 3D tilt */
    .activity-card:hover {
        transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
        box-shadow: 0 25px 60px rgba(0,0,0,0.7);
        filter: brightness(1.05);
    }

        .activity-card:hover::before {
            opacity: 0.12;
            transform: rotate(-3deg) translate(-3px, -3px);
        }

        .activity-card:hover::after {
            opacity: 0.1;
            transform: rotate(4deg) translate(4px, 4px);
        }

/* Icon Circle */
.icon-box {
    width: 90px;
    height: 90px;
    margin: auto;
    background: linear-gradient(135deg,#ff6a4a,#9366AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

    .icon-box img {
        width: 42px;
        filter: brightness(0) invert(1);
    }

.activity-card:hover .icon-box {
    transform: translateY(-8px) scale(1.12);
    background: linear-gradient(135deg,#ff8b6e,#ff1f34);
    box-shadow: 0 12px 35px rgba(255,110,90,0.6);
}

/* Titles */
.activity-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
    z-index: 2;
    position: relative;
}

/* Description */
.activity-card p {
    font-size: 15px;
    color: #ccc;
    line-height: 24px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

/* Button */
.btn-read {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg,#ff6a4a,#9366AA);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 2;
}

    .btn-read:hover {
        transform: scale(1.08);
        background: linear-gradient(135deg,#ff8b6e,#ff1f34);
    }

/* Expandable text */
.run-txt {
    position: relative;
}

    .run-txt p {
        max-height: 70px; /* small preview */
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 15px;
        font-size: 14px;
        color: #aaa;
    }

        /* when expanded */
        .run-txt p.active {
            max-height: 500px;
        }

/* Responsive */
@media(max-width:900px) {
    .activities-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .activity-card:hover {
        transform: translateY(-5px) rotateX(0deg) rotateY(0deg);
    }
}
/* button */
/*.btn-read {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'DM Sans';
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #ff6a4a;
    color: #ff6a4a;
    transition: .3s;
}*/

    .btn-read:hover {
        background: linear-gradient(90deg,#ff6a4a,#9366AA);
        border: none;
        color: #fff;
    }





.gmb img {
    width: 50px;
    height: 30px;
    margin-right: 1px;
    vertical-align: middle;
}

.flex {
    display: flex;
}

.top {
    margin-top: 1px;
}




/*.amenities {
    width: 100%;
}

.amenities-containers {
    max-width: 1200px;
    margin: auto;
    padding: 30px 15px 70px;
}

    .amenities-containers h1 {
        text-align: center;
        font-family: 'DM Sans';
        font-size: 40px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: black;
        position: relative;
    }

        .amenities-containers h1::after {
            content: "";
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg,#ff6a4a,#9366AA);
            display: block;
            margin: 12px auto 0;
        }*/

/* grid */
/*.amenities-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 35px;
    margin-top: 70px;
}*/

/* card */
/*.amenities-contents {
    background: #111;
    padding: 45px 25px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .45s;
    border: 1px solid rgba(255,255,255,0.05);
}*/

    /* neon border */
    /*.amenities-contents::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 2px;
        background: linear-gradient(120deg,#ff6a4a,#9366AA,#ff6a4a);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: .4s;
    }*/

    /* shine effect */
    /*.amenities-contents::after {
        content: "";
        position: absolute;
        top: -100%;
        left: -100%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.15), transparent );
        transform: rotate(25deg);
        transition: .6s;
    }*/

    /* hover */
    /*.amenities-contents:hover {
        transform: translateY(-14px) scale(1.03);
        box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    }

        .amenities-contents:hover::before {
            opacity: 1;
        }

        .amenities-contents:hover::after {
            top: 100%;
            left: 100%;
        }*/
/* Amenities Section Background */
.amenities {
    position: relative;
    background-image: url('../img/Home/Strength.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

    /* Black Overlay */
    .amenities::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6); /* control darkness here */
        z-index: 1;
    }

/* Container */
.amenities-containers {
    position: relative;
    z-index: 1;
    width: 90%;
    margin: auto;
    text-align: center;
}
    .amenities-containers h1 {
        font-family: 'DM Sans';
        color: white;
        font-weight: 800;
        font-size: 46px;
    }
        .amenities-containers h1::after {
            content: "";
            display: block;
            width: 140px;
            height: 4px;
            margin: 15px auto 0;
            background: linear-gradient(90deg, #ff6a4a, #9366AA);
            border-radius: 2px;
            margin-bottom:60px;
        }

/* Grid Layout */
.amenities-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* Each Item */
.amenities-contents {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

    .amenities-contents:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.2);
    }

/* Icons */
.cmn-img img {
    width: 60px;
    margin-bottom: 10px;
}

/* Text */
.cmn-txt h3 {
    color: white;
    font-size: 18px;
    margin: 0;
}

/* Responsive */
@media(max-width:900px) {
    .amenities-container {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:500px) {
    .amenities-container {
        grid-template-columns: 1fr;
    }
}

/* icon box */
.cmn-img {
    width: 78px;
    height: 78px;
    margin: auto;
    background: linear-gradient(135deg,#ff6a4a,#ff8b6f);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: .4s;
}

    /* icon */
    .cmn-img img {
        width: 38px;
        filter: brightness(0) invert(1);
        transition: .35s;
    }

/* icon hover */
.amenities-contents:hover .cmn-img {
    transform: scale(1.15);
    background: linear-gradient(135deg, #000000, #000000);
}

/* text */
.cmn-txt h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    font-family: 'DM Sans';
    letter-spacing: .5px;
}



/*.pricing-section {
    padding: 80px 5%;
    background-color: #1E1E1E;
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.pricing-overlay {
    background-image: url('../img/bg-4-copyright.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    inset: 0;
    position: absolute;
}

.pricing-containers {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    position: relative;
}

    .pricing-containers h4 {
        font-family: 'DM Sans';
        font-size: 17px;
        color: white;
        font-weight: 600;
        margin: 10px 0;
        text-transform: uppercase;
    }

    .pricing-containers h1 {
        font-family: 'DM Sans';
        font-size: 52px;
        color: white;
        font-weight: 800;
        margin-top: 13px;
    }

.pricing-container {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
    background: #1c1f26;
    padding: 50px 20px;
    width: 100%;
    color: #fff;
    transition: 0.4s ease;
    font-family: 'DM Sans';
    border: 3px solid transparent;
    border-radius: 10px;
    background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #7751BD, #FF6A4A) border-box;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.15), transparent );
}

    .pricing-card:hover {
        transform: translateY(-8px);
        transform: translateY(-14px) scale(1.03);
        box-shadow: 0 25px 50px rgba(0,0,0,0.6);
        border: 2px solid transparent;
        border-radius: 8px;
        background: linear-gradient(45deg, #7751BD, #FF6) border-box;
    }

    .pricing-card h3 {
        font-size: 24px;
        margin-bottom: 25px;
        font-weight: 600;
    }

.price {
    font-size: 48px;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 10px;
}

.pricing-card:hover .price {
    color: #FF3C4D;
}

.per {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 25px;
    font-weight: 500;
}

.pricing-card:hover .per {
    color: #FE896E;
    font-weight: 900;
    font-size: 18px;
}

.desc {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #ff3c4d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .btn:hover {
        background: #ff1f34;
        transform: scale(1.1);
    }

.pricing-card:hover .btn {
    background: #EF7519;
}*/

.pricing-section {
    padding: 50px 5%;
    background: #121212;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    color: #fff;
}

.pricing-containers h4 {
    color: #ff6a3d;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-containers h1 {
    font-size: 48px;
    margin-bottom: 60px;
}

/* Timeline */
.pricing-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: flex-start;
    gap: 20px;
}

    /* Connecting line */
    .pricing-timeline::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 5%;
        width: 90%;
        height: 4px;
        background: linear-gradient(90deg, #ff6a3d, #ff3c4d);
        z-index: 0;
        border-radius: 2px;
    }

/* Plan steps */
.plan-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-step:hover .circle {
    transform: scale(1.2);
    box-shadow: 0 0 20px #ff6a3d;
}

/* Most popular highlight */
.most-popular .circle {
    background: #fff;
    color: #ff3c4d;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 15px #ff3c4d;
}

.info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.info .price {
    font-size: 36px;
    font-weight: 800;
    color: #ff6a3d;
    margin-bottom: 8px;
    transition: 0.3s ease;
}

.info p {
    font-size: 14px;
    margin: 4px 0;
    color: #ccc;
}

.badge {
    display: inline-block;
    background: #fff;
    color: #ff3c4d;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 20px;
    /* glow */
    box-shadow: 0 0 8px rgba(255, 60, 77, 0.5), 0 0 15px rgba(255, 60, 77, 0.4), 0 0 25px rgba(255, 60, 77, 0.3);
    transition: 0.3s;
}

    /* stronger glow on hover */
    .badge:hover {
        box-shadow: 0 0 12px rgba(255, 60, 77, 0.7), 0 0 25px rgba(255, 60, 77, 0.6), 0 0 40px rgba(255, 60, 77, 0.5);
    }

/* Responsive */
@media(max-width: 1024px) {
    .pricing-timeline {
        flex-wrap: wrap;
        gap: 25px;
    }

    .plan-step {
        flex: 1 1 45%;
    }
}

@media(max-width: 600px) {
    .plan-step {
        flex: 1 1 100%;
    }

    .pricing-timeline::before {
        display: none;
    }
}
.contact-block-section1 {
    padding: 80px 40px 50px 40px;
    margin-top: 90px;
    /* background-color: #D4F5FC;*/
}

.contact-block-section1-container {
    width: 100%;
}

.contact-block-section1-container-inner {
    width: 100%;
}

.contact-block-section1-part2 {
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    margin: 0px 60px 0px 0px;
    border-radius: 5px;
    padding: 20px;
    height: fit-content;
}

    .contact-block-section1-part2:hover {
        background-color: #0A3767;
    }

        .contact-block-section1-part2:hover .contact-form1 h1 {
            color: white;
        }

        .contact-block-section1-part2:hover .submit {
            background: white;
            color: #0A3767;
            border: 2px solid #0A3767;
            box-shadow: 0 8px 20px rgba(10, 55, 103, 0.4);
            transform: scale(1.05);
        }

.contact-form {
    width: 99%;
}

.contact-form1 {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 40px;
}

    .contact-form1 h1 {
        color: #0A3767;
        font-family: 'cabin';
        text-align: center;
    }

.label {
    padding: 5px 15px 10px 15px;
    margin: 10px;
}

.name {
    padding: 9px 2px 9px 10px;
    font-size: 14px;
    font-family: 'Roboto';
    color: black;
    width: 100%;
}

.textform {
    padding: 12px 15px 60px 15px;
    font-size: 15px;
    font-family: 'Roboto';
    color: black;
    width: 100%;
}

.button {
    margin-top: 20px;
    padding: 0px 0px 0px 30px;
}

#contact {
   /* display: none;*/
    max-width: 600px;
    width: 100%;
}

.popup-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.fancybox__content {
    padding: 0 !important;
}

#contactPopup {
    max-width: 455px;
    width: 100%;
}

.popup-form {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
}

    .popup-form:hover {
        background: #FF6A4A;
    }

    .popup-form h2 {
        text-align: center;
        margin-bottom: 20px;
        font-family: DM Sans;
    }

.label input,
.label textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit {
    background: #ff3c4d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.fancybox__content {
    padding: 0 !important;
}

.button1 {
    margin-top: 20px;
}

.buttons {
    padding: 10px 30px;
    background: #EB761E;
    font-size: 17px;
    font-family: 'DM Sans';
}





/*-------ABOUT PAGE-------*/
/*.about-desk-banner {
    margin-top: 95px;
}

.about-section {
    background: #111;
    color: white;
    padding: 40px 0;
    margin-top: 55px;
    font-family: 'DM Sans';
}

.about-containers {
    max-width: 1450px;
    margin: auto;
    align-items: center;
}

.about {
    font-family: 'DM Sans';
    text-align: center;
    letter-spacing: 3px;
    font-size: 45px;
    position: relative;
}


.about-container {
    display: flex;
    gap: 80px;
    margin-top: 90px;
}

.about-left {
    width: 50%;
}

.small-heading {
    letter-spacing: 2px;
    font-size: 15px;
    color: #aaa;
    font-weight: 900;
}

.about-left h2 {
    font-size: 48px;
    line-height: 55px;
    margin: 15px 0;
}

.about-left p {
    color: #9f9f9f;
    line-height: 28px;
    margin-bottom: 35px;
}

.email-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-icon {
    width: 55px;
    height: 55px;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.about-right {
    width: 50%;
}

.skill {
    margin-bottom: 30px;
}

.skill-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
    font-weight: 500;
}

.progress {
    background: #2b2b2b;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #ff4d5a;
    border-radius: 10px;
    transition: 2s ease;
}*/
/* .about-section Section Background */
.about-section {
    color: #fff;
    padding: 20px 5%;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: url('../img/Home/Strength.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 120px rgba(147,102,170,0.2);
}
/* Desktop banner */
.banner-desktop {
    width: 100%;
    display: block;
}

/* Mobile banner (hidden by default) */
.banner-mobile {
    display: none;
    width: 100%;
}

    /* LIGHTER overlay (fix for dark issue) */
    .about-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5); /* adjust: 0.4 light | 0.6 dark */
        z-index: 0;
    }
.about-desk-banner img{
    margin-top:65px;
}
/* Container */
.about-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* MAIN HEADING FIX */
.about h1 {
    text-align: center;
    font-size: 52px;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

    .about h1::after {
        content: "";
        display: block;
        width: 150px;
        height: 5px;
        margin: 15px auto 0;
        border-radius: 3px;
        background: linear-gradient(90deg, #ff6a4a, #9366AA, #00c6ff);
    }

/* Left */
.about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-heading {
    letter-spacing: 2px;
    font-size: 14px;
    color: #ccc;
    font-weight: 700;
}

.about-left h2 {
    font-size: 48px;
    line-height: 55px;
    margin: 15px 0;
    background: linear-gradient(90deg, #ff6a4a, #9366AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255,106,74,0.2);
}

.about-left p {
    color: #ddd;
    line-height: 28px;
    font-size: 15px;
}

/* Email */
.email-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg,#ff6a4a,#9366AA);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(255,106,74,0.4);
}

/* Right */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

/* Skills */
.skill-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Progress */
.progress {
    background: rgba(255,255,255,0.1);
    height: 14px;
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient( 90deg, #ff6a4a, #ff9a6a, #9366AA );
    box-shadow: 0 0 12px rgba(147,102,170,0.4);
    transition: width 2s ease-in-out;
}

    .progress-bar.active {
        width: var(--bar-width);
    }

/* Responsive */
@media(max-width:950px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
}/* SECTION */
/* SECTION */
.healthy-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient( 135deg, #0b0b0b 0%, #1a1a1a 40%, #1f0f12 70%, #2b0d12 100% );
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}
    .healthy-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,75,87,0.15), transparent 70%);
        top: -100px;
        left: -100px;
    }

    .healthy-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,122,24,0.12), transparent 70%);
        bottom: -100px;
        right: -100px;
    }

/* CONTAINER */
.healthy-container {
    width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* IMAGES */
.healthy-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 55%;
}

    .healthy-images img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        object-fit: cover;
        border-radius: 15px;
        transition: 0.4s ease;
        filter: brightness(0.85);
    }

        .healthy-images img:hover {
            transform: scale(1.05);
            filter: brightness(1);
        }

/* CONTENT */
.healthy-content {
    width: 45%;
}

/* SUBTITLE */
.sub-title {
    color: #ff4b57;
    letter-spacing: 3px;
    font-size: 13px;
    font-family: 'DM Sans';
    font-weight: 700;
    text-transform: uppercase;
}

/* HEADING */
.healthy-content h2 {
    font-size: 42px;
    margin: 10px 0 20px 0;
    font-weight: 700;
    font-family: 'DM Sans';
    letter-spacing: 1px;
    color: #ffffff;
}

/* PARAGRAPH */
.healthy-content p {
    color: #cfcfcf;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'DM Sans';
}

/* LIST */
.healthy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

    .healthy-list li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 28px;
        font-size: 15px;
        font-family: 'DM Sans';
        font-weight: 500;
        color: #e5e5e5;
    }

        /* ICON STYLE */
        .healthy-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #ff4b57;
            font-size: 14px;
        }

/* BUTTON */
.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4b57, #ff7a18);
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'DM Sans';
    border-radius: 30px;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 75, 87, 0.4);
}

    .service-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 75, 87, 0.6);
    }

/*.about-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 50px 0;
    width: 93%;
    margin: auto;
}

.feature-card {
    background: #111;
    padding: 35px 30px 35px 30px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.5s ease all;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
        border: 2px solid transparent;
        border-radius: 8px;
        background: linear-gradient(45deg, #7751BD, #7751BD, #ff4b57) border-box;
    }

.icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    font-family: 'DM Sans';
}

.feature-card p {
    color: #bbb;
    font-size: 15px;
    line-height: 30px;
    font-family: 'DM Sans';
}

.feature-card:hover p {
    color: #fff;
}
*/
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
    column-gap: 20px;
    width: 80%;
    margin: auto;
    padding: 70px 0;
}

/* CARD */
.feature-card {
    padding: 40px 20px 15px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #222;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: auto;
    background: #111;
}

/* ICON */
.icon {
    position: relative;
    display: inline-block;
    
}

    /* 🔥 FIRE RING GLOW */
    .icon::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 130px;
        height: 130px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: radial-gradient(circle, transparent 60%, rgba(255, 50, 0, 0.8) 70%, rgba(255, 0, 0, 0.6) 80%, transparent 100%);
        filter: blur(8px);
        opacity: 0.7;
        transition: 0.4s;
        z-index: 0;
    }

    /* IMAGE */
    .icon img {
        width: 115px;
        height: 115px;
        object-fit: cover;
        border-radius: 50%;
        transition: 0.3s;
    }
.feature-card:hover .icon img {
    box-shadow: 0 0 10px rgba(255, 50, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.5), 0 0 35px rgba(255, 0, 0, 0.4);
}
/* TITLE */
.feature-card h3 {
    color: #e5e5e5;
    font-size: 25px;
    margin-bottom: 15px;
    font-family: 'DM Sans';
    position: relative;
  
}

/* TEXT */
.feature-card p {
    color: #aaa;
    font-size: 15px;
    line-height: 28px;
    font-family: 'DM Sans';
    transition: .3s;
    position: relative;
   
}

/* HOVER CARD */
.feature-card:hover {
    transform: translateY(-10px);
    border: 1px solid #444;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

    /* 🔥 STRONG FIRE RING ON HOVER */
    .feature-card:hover .icon::before {
        opacity: 1;
        filter: blur(12px);
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* IMAGE HOVER */
    .feature-card:hover .icon img {
        transform: scale(1.05);
    }

    /* TEXT HOVER */
    .feature-card:hover h3 {
        color: #fff;
    }

    .feature-card:hover p {
        color: #ddd;
    }

/*-------GALLERY PAGE----*/
.gallery-desk-banner {
    margin-top: 65px;
}

/* SECTION */
/* SECTION */
.gallery1 {
    width: 100%;
    margin-top: 50px;
}

/* GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    perspective: 1000px;
}

    /* ITEM */
    .gallery .item {
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        transform-style: preserve-3d;
    }

        /* IMAGE */
        .gallery .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        /* ✨ VERY LIGHT HOVER */
        .gallery .item:hover {
            transform: translateY(-5px) scale(1.01); /* very subtle */
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

            /* IMAGE SLIGHT ZOOM */
            .gallery .item:hover img {
                transform: scale(1.03);
            }

    /* BIG IMAGE */
    .gallery .big {
        grid-row: span 2;
    }

    /* TALL IMAGE */
    .gallery .tall {
        grid-row: span 2;
    }

/* BORDER UTILS */
.none {
    border: none !important;
}

.top1 {
    grid-row: span 2;
    border-top: 30px solid black;
}

.bottom {
    grid-row: span 2;
    border-bottom: 30px solid black;
}

.left {
    grid-row: span 2;
    border-left: 30px solid black;
}

.right {
    grid-row: span 2;
    border-right: 30px solid black;
}

/*-----------TRANSFORMATION PAGE*/
.transform-desk-banner {
    margin-top: 65px;
}

/* ================================
   PREMIUM TRANSFORM HEADER
================================ */
.trans-head {
    width: 100%;
    padding: 100px 20px;
    margin-top: 50px;
    background: radial-gradient(circle at 20% 30%, rgba(223,125,29,0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,160,66,0.12), transparent 40%),
                linear-gradient(135deg, #0a0a0a, #111);
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* subtle animated glow layer */
.trans-head::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(223,125,29,0.15),
        transparent,
        rgba(255,160,66,0.15),
        transparent
    );
    animation: rotateGlow 12s linear infinite;
    z-index: 0;
}

/* dark overlay for depth */
.trans-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 0;
}

/* animation */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ================================
   TEXT STYLING
================================ */
.trans-head h1 {
    position: relative;
    z-index: 1;
    margin: 0;
}

/* MAIN HEADING */
.trans-head h1:first-of-type {
    font-size: 56px;
    font-weight: 800;
    color: #DF7D1D;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 20px;

    text-shadow: 0 0 10px rgba(223,125,29,0.4),
                 0 0 25px rgba(223,125,29,0.2);

    animation: glowPulse 2s ease-in-out infinite alternate;
    transition: all 0.4s ease;
}

/* glowing pulse */
@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(223,125,29,0.4),
                     0 0 25px rgba(223,125,29,0.2);
    }
    100% {
        text-shadow: 0 0 20px rgba(255,160,66,0.7),
                     0 0 50px rgba(255,160,66,0.4);
    }
}

/* SUB HEADING */
.trans-head h1:last-of-type {
    font-size: 24px;
    font-weight: 400;
    color: #ddd;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;

    opacity: 0.9;
    transition: all 0.4s ease;
}

/* ================================
   HOVER EFFECT (3D + PREMIUM)
================================ */
.trans-head:hover h1:first-of-type {
    transform: translateY(-5px) scale(1.03);
    color: #FFA042;
}

.trans-head:hover h1:last-of-type {
    transform: translateY(3px);
    opacity: 1;
}

/* ================================
   SECTION BELOW
================================ */
.transform-section1-desktop {
    display: block;
    width: 100%;
    padding: 90px 0 80px 0;
   /* background: linear-gradient(180deg, #111, #f5f5f5);*/
}

.transform-section1-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.separator1 {
    width: 100%;
    height: 2px;
    background: black;
}

.transform-section1-content {
    padding-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1380px;
    margin: auto;
    width: 100%;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 557px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
}

    .comparison-container img {
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.after-img {
    clip-path: inset(0 0 0 50%);
}

/* slider line for pulse automatic */
.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #E27826;
    cursor: ew-resize;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
}

    /* purple circle */
    .slider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 55px;
        height: 55px;
        background-color: #E87721;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 15px rgba(123, 58, 245, 0.7);
        animation: pulse 2.2s infinite ease-in-out; /* 💜 pulse animation */
        z-index: 2;
        transition: all 0.3s ease;
    }
.transform-section1-content,
.comparison-container {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* pulse keyframes */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(123, 58, 245, 0.6);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 25px rgba(123, 58, 245, 1);
    }
}

/* arrows inside circle */
.arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 3;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* hover: stronger glow + arrow zoom */
.slider:hover::before {
    box-shadow: 0 0 35px #E87721;
    transform: translate(-50%, -50%) scale(1.2);
}

.slider:hover .arrows {
    transform: translate(-50%, -50%) scale(1.2);
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.labels {
    position: absolute;
    top: 20px;
    color: white;
    font-family: 'DM Sans';
    font-weight: 600;
    font-size: 38px;
}

    .labels.before {
        left: 20px;
    }

    .labels.after {
        right: 20px;
    }




/*--------NUTRITION-------*/
.nutrition-desk-banner {
    margin-top: 65px;
}

.nutrition {
    width: 100%;
    margin-top: 50px;
}

.ntr-container {
    display: flex;
    min-height: 550px;
}

/* LEFT IMAGE */
.ntr-img {
    width: 50%;
}

.cnt-img {
    width: 100%;
    height: 100%;
    background-image: url('../img/gallery3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* RIGHT CONTENT */
.ntr-content {
    width: 50%;
    background: #1c1c1c;
    color: white;
    padding: 80px 155px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADING */
.ntr-h1 {
    margin: 0 0 0 0px;
}

    .ntr-h1 h1 {
        font-family: 'DM Sans';
        font-size: 50px;
        line-height: 1.2;
        margin-bottom: 25px;
        color: #E5791C;
        font-weight: 900;
    }

/* TEXT */
.ntr-para p {
    font-family: 'DM Sans';
    color: #bdbdbd;
    line-height: 29px;
    margin-bottom: 20px;
    text-align: justify;
}

/* BUTTON */
.ntr-btn a {
    display: inline-block;
    background: #E5791C;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'DM Sans';
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}
/*
    .ntr-btn a:hover {
        background: #ff2d3b;
    }
*/


.ntr1 {
    width: 100%;
}

.ntr1-container {
    padding: 10px 0 40px 0;
}

.ntr1-head {
}

    .ntr1-head h1 {
        font-family: 'DM Sans';
        text-align: center;
        font-size: 50px;
        font-weight: 600;
    }

.ntr1-img {
    width: 32%;
    margin: auto;
}


/*---------------- CONTACT PAGE FINAL ----------------*/

.contact {
    background: radial-gradient(circle at top, #1c1c1c, #0a0a0a);
    padding: 100px 0;
    font-family: 'DM Sans';
}
.contact-desk-banner img{
    margin-top:65px;

}
/* LAYOUT */
.contact-container {
    display: flex;
    gap: 70px;
    max-width: 1100px;
    margin: auto;
    align-items: stretch;
}

/* BOTH SIDES */
.contact-container1,
.contact-container2 {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* LEFT SIDE */
.contact-container1 {
    justify-content: space-between;
}

/* SMALL TITLE */
.section-title {
    font-size: 13px;
    letter-spacing: 3px;
    color: #F67118;
    margin-bottom: 12px;
    position: relative;
}

    .section-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 40px;
        height: 2px;
        background: #F67118;
        box-shadow: 0 0 10px #F67118;
    }

/* DESCRIPTION */
.desc {
    font-size: 26px;
    color: white;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 35px;
}

/* INFO CARDS */
.infoo {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    align-items: flex-start;
    padding: 14px 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

    .infoo:hover {
        transform: translateX(8px);
        border-color: rgba(246,113,24,0.5);
        box-shadow: 0 0 15px rgba(246,113,24,0.2);
    }

   
    .infoo span {
        font-size: 20px;
        color: #F67118;
    }

    /* TEXT*/ 
    .infoo h5 {
        color: #fff;
        font-size: 15px;
        margin-bottom: 4px;
        margin-top: 6px;
    }

    .infoo p {
        color: #aaa;
        font-size: 14px;
        line-height: 22px;
        width:100%;
    }

/* PHONE EXPAND */
.more {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.numbers:hover .more {
    max-height: 80px;
}

/* RIGHT SIDE FORM */
.contact-form {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 25px rgba(246,113,24,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* FORM TITLE */
.form-title {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 18px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    color: white;
    border-radius: 6px;
    transition: 0.3s;
}
    /* FOCUS */
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #F67118;
        box-shadow: 0 0 10px rgba(246,113,24,0.4);
        outline: none;
    }

/* BUTTON */
.submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#F67118,#ff9a3c);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: auto;
}

    .submit:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 10px 25px rgba(246,113,24,0.4);
    }

/* ANIMATION */
.contact-container1,
.contact-form {
    animation: floatUp 0.8s ease forwards;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PERFECT HEIGHT BALANCE */
.contact-container1,
.contact-form {
    min-height: 520px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-container1,
    .contact-container2 {
        width: 100%;
    }
}

/*--------Thank You Page-----------*/

.thank-page-v2 {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #d70e1d;
    font-family: Poppins;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
    font-family: Poppins;
}
.menu-toggle {
    display: none;
}
/* ===== BLOG SECTION ===== */

.blog-section {
    padding: 50px 20px;
    background: #f5f5f5;
    text-align: center;
}

/* CONTAINER */
.blog-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.blog-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    transition: 0.6s ease;
    font-family: 'DM Sans';
}

/* GRID CENTER */
.blog-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.blog-card {
    width: 320px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

    /* SHOW ANIMATION */
    .blog-card.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* HOVER */
    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

/* IMAGE */
.blog-img {
    overflow: hidden;
}

    .blog-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: 0.5s ease;
    }

.blog-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.blog-content {
    padding: 25px 20px;
}

.blog-date {
    font-size: 12px;
    color: #999;
}

.blog-content h3 {
    font-size: 22px;
    margin: 10px 0;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.blog-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff6a4a, #9366AA);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

    .blog-btn:hover {
        opacity: 0.85;
    }
#email-formailcontent,
#btn-submitforemailcontent {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 14px;
    box-sizing: border-box;
}

#btn-submitforemailcontent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .blog-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .blog-card {
        width: 100%;
    }

    .blog-heading {
        font-size: 30px;
    }
}


/*.section {
    width: 100%;
    float: left;
    padding: 50px 0
}

.container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
}
h1 {
    color: #1b417b;
    letter-spacing: 2px;
    font-size: 35px;
    text-transform: uppercase;
    margin: 10px 0;
}
.row {
    width: 100%;
    float: left;
}
.blog-block {
    width: 45%;
    float: left;
    margin: 0% 2.5%;
    min-height: 320px;
}
.blog-txt {
    width: 100%;
    float: left;
    padding: 10px 30px;
    box-shadow: 0px 0px 19px 5px #ddd;
}
.blog a {
    color: #1b417b;
    font-weight: 600;
}
.blog-txt h3 {
    font-size: 15px !important;
    color: #1b417b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px 0;
}
.h4 {
    color: black;
    margin: auto;
}
p {
    color: #333;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 1px;
    font-weight: 300;
    width: 100%;*/
    /* float: left; */
/*}
.read-more {
    padding: 8px 20px;
    font-size: 18px;
    display: block;
    float: left;
    border: 1px solid;
    color: #fff !important;
    background: #1b417b;
    border-radius: 5px;
}
    .read-more .icon {
        margin-left: 5px;
        transition: .5s ease all;
    }*/