* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: -apple-system, sans-serif;
}

:root {
    --bg-color: #000;
    --snd-bg-color: #111;
    --text-color: #fff;
    --main-color: rgb(0, 255, 255);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

section {
    min-height: 100vh;
    padding: 10rem 8% 2rem;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 9%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

span {
    color: var(--main-color);
}

.navbar {
    display: flex;
    position: relative;
}

.navbar.active {
    display: flex !important;
}

.navbar li {
    position: relative;
    font-style: none;
}

.navbar a {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 4rem;
    transition: all 0.5s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none; /* Added to remove underline */
}

.navbar a:hover,
.navbar a:active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    color: var(--text-color);
    text-decoration: none; /* Added to remove underline */
}

.dropdown a:hover {
    background-color: #555;
}

.navbar li:hover .dropdown {
    display: block;
}

.nav-btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.5s ease;
}

.nav-btn:hover {
    background: var(--main-color);
    color: var(--text-color);
    box-shadow: 0 0 18px var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    cursor: pointer;
    display: none;
}


.home {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.home-content {
    text-align: center;
    z-index: 1;
}

.home-content h3 {
    font-size: 5rem;
    font-weight: 700;
}

.home-content span {
    font-size: 4rem;
    font-weight: 550;
}

.home-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-img img {
    width: 45vw;
}

.home-img::before {
    content: 'FITNESS';
    position: absolute;
    top: 10%;
    left: 30%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-weight: 400;
    line-height: 20rem;
    color: var(--main-color);
    opacity: 0.1;
    z-index: -1;
}

.home-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 1rem;
    box-shadow: none;
    font-size: 1.5rem;
    color: var(--bg-color);
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.5s ease;
}

.btn:hover {
    color: var(--text-color);
    box-shadow: 0 0 16rem var(--main-color);
}

.services {
    background: var(--bg-color);
}

.heading {
    text-align: center;
    font-size: 6rem;
    cursor: pointer;
    transition: 0.1s ease-in-out;
}

.heading:hover {
    transform: scale(1.1);
}

.service-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: center;
    gap: 2.5rem;
    margin-top: 4.1rem;
}




.row1 {
    background: var(--bg-color);
    border-radius: 27px;
    border: 1px solid transparent;
    box-shadow: 0 0 5px var(--main-color);
    padding: 20px;
    transition: all 0.5s ease;
    position: relative;
}

.row1 img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 27px;
    margin-bottom: 1.5rem;
}

.row1 h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4rem;
}

.row1:hover {
    border: 1px solid var(--main-color);
    transform: translateY(-5px) scale(1.05);
    cursor: pointer;
}

.row1:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 27px;
    z-index: -1;
}

.about {
    background: url(images/smoke.png) no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 5rem 2rem;
    background-blend-mode: multiply;
    background-size: cover;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 2, 0.6);
    z-index: -1;
}

.about-img img {
    width: 50vw;
    border: 2px solid var(--text-color);
    border-radius: 2rem;
    transition: 1s ease;
}

.about-img img:hover {
    transform: scale(1.02);
    border: 2px solid var(--main-color);
}

.about-content {
    padding: 0.3rem;
}

.about-content .heading {
    text-align: left;
    font-size: 5.5rem;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.6rem;
    margin: 2rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        padding: 1rem 4%;
    }

    .navbar {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        display: none;
    }

    .navbar.active {
        display: flex;
    }

    .navbar li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }

    #menu-icon {
        display: block;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .about {
        flex-direction: column;
        padding: 2rem;
    }

    .about-img, .about-content {
        width: 100%;
        max-width: 100%;
    }

    .about-img img {
        width: 100%;
    }

    .home-content h3, .home-content h1, .home-content span {
        font-size: 3rem;
    }

    .home-img img {
        width: 100%;
    }

    .heading {
        font-size: 4rem;
    }
}


footer {
    color: #ffffff;
    padding: 20px 0;
    background-image: url('images/smoke2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-title {
    font-size: 2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: transparent;
    -webkit-text-stroke: 3px darkmagenta;
    position: relative;
}

.footer-title::before {
    content: "HOVER";
    position: absolute;
    width: 0%;
    height: 100%;
    overflow: hidden;
    color: darkmagenta;
    border-right: 8px solid darkmagenta;
    transition: width 1s ease-in-out;
}

.footer-title:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 5px darkmagenta); /* Fixed syntax for drop-shadow */
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    flex: 1;
    margin-right: 20px;
}

.footer-left p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-right {
    flex: 1;
    margin-left: 20px;
}

.footer-right h2 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    font-weight: bold;
}

.footer-right ul li {
    margin-bottom: 10px;
}

.footer-right ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-right ul li a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.social-icons .icon {
    color: #ccc;
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons .icon:hover {
    color: #ffd500;
    transform: scale(1.2);
}

/* footer */

        /* Define colors and variables at the beginning */
        :root {
            --primary: #008197; /* Adjust color as per your theme */
            --secondary: #002c8c; /* Adjust color as per your theme */
            --light: #f8f9fa; /* Adjust color as per your theme */
            --black: #000000; /* Adjust color as per your theme */
        }
        /* Rest of your existing styles */
        
        /* Hover effect for social icons */
        .social-icons i:hover {
            color: var(--secondary);
        }
        
        /* Hover effect for links */
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        /* Hover effect for logo */
        .footer-column .logo:hover {
            color: var(--primary);
        }
        
              footer {
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(images/smoke2.png) no-repeat center center/cover;
                color: var(--light);
                padding: 40px 0;
                position: relative;
                bottom: 0;
                width: 100%;
                text-align: center;
              }
        
              .footer-container {
                display: flex;
                justify-content: space-around;
                flex-wrap: wrap;
                padding: 0 100px;
              }
        
              .footer-column {
                flex: 1;
                margin: 20px;
              }
        
              .footer-column h2 {
                margin-bottom: 20px;
                color: var(--primary);
              }
        
              .footer-column p {
                margin-bottom: 10px;
              }
        
              .footer-column ul {
                padding: 0;
              }
        
              .footer-column ul li {
                list-style: none;
                margin-bottom: 10px;
              }
        
              .footer-column ul li a {
                color: var(--light);
              }
        
              .footer-column form {
                display: flex;
                flex-direction: column;
              }
        
              .footer-column form input {
                padding: 10px;
                margin-bottom: 10px;
                border-radius: 4px;
                border: 1px solid var(--secondary);
                background-color: var(--light);
              }
        
              .footer-column form button {
                padding: 10px;
                border-radius: 4px;
                border: none;
                background-color: var(--primary);
                color: var(--light);
                cursor: pointer;
                transition: background-color 0.3s ease;
              }
        
              .footer-column form button:hover {
                background-color: var(--secondary);
                color: var(--black);
              }
        
              .social-icons {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
              }
        
              .social-icons i {
                font-size: 1.5em;
                color: var(--primary);
                transition: color 0.3s ease;
              }
        
              .social-icons i:hover {
                color: var(--secondary);
              }
        
              .footer-note {
                margin-top: 20px;
                color: var(--light);
              }
        
              hr {
                margin: 20px 100px;
                border: 0.5px solid var(--light);
              }

