*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, sans-serif;
}

:root{
    --bg-color: #000;
    --snd-bg-color: #111;
    --text-color: #c7b9b9;
    --main-color:  #ab1b1b;
}

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;  /* ✅ vertical alignment */
    padding: 2rem 9%;     /* ✅ horizontal spacing */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}


.logo {
  font-size: 3rem;
  font-weight: 500;
  font-family:Georgia, 'Times New Roman', 'times New Roman', serif;
  background: linear-gradient(to right, #ffffff, #880000);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

.navbar {
    display: flex;
}

.navbar a {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 4rem;
    transition: all 0.5sec ease;
    border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

.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 #c40000;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    cursor: pointer;
    display: none;
}

/*home section*/

/*ome {
    display: flex;
    justify-content: center;
    align-items: center;
}*/
.home {
    display: flex;
    justify-content: space-between; /* spreads logo and text apart */
    align-items: center;
    gap: 5rem; /* adds extra spacing between logo and text */
    padding: 10rem 8% 2rem; /* keep this for section spacing */
}


.home-content h2 {
    font-size: 5rem;
    font-weight: 700;
}

.home-content span {
    font-size: 4rem;
    font-weight: 550;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 2rem !important;
    font-weight: 200;
    font-family: 'Times New Roman', Times, serif;
}

.home-img img{
    width: 43vw;
}

.home-img::before {
    content: 'SWEAT & FITNESS';
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: var(--text-color);
    opacity: 0.1;
    z-index: -1;
}

.home-content p {
    font-size: 1.6rem;
    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.6rem;
    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 1.6rem var(--main-color);
}


/*service for section Code */

.services {
    background: var(--snd-bg-color);
}

.heading {
    text-align: center;
    font-size: 6.5rem;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: 2.7rem;
    margin-top: 4.1rem;
}


.row {
    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;
}

.row img {
    height: 250px;
    width: 100%;
  
    object-fit: cover;
    border-radius: 27px;
    margin-bottom: 1.8rem;
}


.row h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.row:hover {
    border: 1px solid var(--main-color);
    transform: translateY(-5px) scale(1.04);
    cursor: pointer;
}

/*About Us*/

#about {
  padding: 10rem 8% 2rem;
  background: var(--bg-color); /* Matches your services section */
}

.heading1 {
    text-align: center;
    font-size: 6.5rem;
    margin-bottom: 75px;
}

.heading1 span {
    font-size: 6.5rem;
  /*font-weight: 550;*/
}

span {
    color: var(--main-color);
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: flex-start;  /* This aligns top of image & points */
  justify-content: center;
}

.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 625px;     /* Increase this to make image wider */
  height: 405px;
  border-radius: 5px;
  object-fit: cover; /* Keeps the image well-cropped and clean */
}


.features-container {
  flex: 1 1 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.feature-box {
    width: 220px;              /* Reduce width */
    height: 190px;             /* Increase height */
    padding: 20px;
    text-align: center;
    background-color: rgba(239, 229, 229, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--main-color);
}

.feature-box i {
  font-size: 2.2rem;
  color: var(--main-color);
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  color: var(--main-color);
}

.feature-box p {
  font-size: 2.0rem;
  font-family: 'Times New Roman', Times, serif;
  color: #363232;
}

.feature-box span {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

/*
@media (max-width: 768px) {
  .feature-box {
    width: 45%;
  }
}

Small phone view (1 box per row) 
@media (max-width: 420px) {
  .feature-box {
    width: 100%;
  }
} */

@media (max-width: 1024px) {
  .features-container {
    justify-content: center;
    gap: 20px;
  }

  .feature-box {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
  }
}



/*reviews*/
#reviews {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--bg-color);
}

#reviews h2 {
    text-align: center;
    font-size: 6.5rem;
    margin-bottom: 65px;
}

/* <!--Find Us--> */

.find-Us {
    background-color: var(--snd-bg-color);
}

.map-location {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.heading2 {
  text-align: center;
  font-size: 6.5rem;
  margin-bottom: 65px;
}


.map-location {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.map-location iframe {
  max-width: 100%;
  border-radius: 20px;
}

.location-info {
  max-width: 300px;
  text-align: left;
  font-size: 2.1rem;
}

.location-info h3 {
  color: #c40000;
  margin-top: 1rem;
}

.location-info p {
    font-weight:500;
}
/*
.location-info p {
     font-family:Verdana, Geneva, Tahoma, sans-serif;
}*/

.location-info a {
  color: #2196f3;
}


@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    align-items: center;
  }

  .location-info {
    text-align: center;
    max-width: 100%;
  }
}

/* Footer Section */

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background: var(--snd-bg-color);
}

.footer .socials {
    text-align: center;
    padding-bottom: 20px;
    color: var(--main-color);
}

.footer .socials a {
    font-size: 25px;
    color: var(--main-color);
    width: 42px;
    height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.5s ease-in-out;
}

/* Style the social icon container */
.socials a svg {
  width: 32px;             /* Increase width */
  height: 32px;            /* Increase height */
  margin: 0 10px;
  transition: transform 0.5s ease, fill 0.5s ease;
  fill: var(--main-color) ;        /* Default color (change as needed) */
}

/* Hover effect */

.socials a:hover svg {
  fill: #f65e35;  /* Optional: change icon color on hover */
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #f65e35);   /*ffect */
}

/* Entire scrollbar */
::-webkit-scrollbar {
    width: 7px;
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
    background: #6d6969;
    border-radius: 5px;
    width: 30px;
}

/* Responsive page Design */

@media (max-width:1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width:991px) {
    #menu-icon {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 255px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        transition: all 0.5s ease;    
    }
    .navbar a {
        display: block;
        padding: 17px;
        font-size: 22px;
    }
    .navbar.active {
        right: 0;
    }
    header {
        padding: 2rem 3%;
    }
    section {
        padding: 10rem 3%;
    }
    .services {
        padding: 7rem;
    }
    .about h2 {
        margin-top: 2rem;
        text-align: center;
        font-size:5rem;
    }
    .footer {
        padding: 40px 0;
    }
}

@media (max-width:786px) {
    .home {
        flex-direction: column;
    }
    .home-content h2 {
        font-size: 4.5rem;
        margin-top: 1.5rem;
    }
    .home-content h1 {
        font-size: 5rem;
        margin-top: 1.5rem;
    }
    .home-content {
        order: 2;
    }
    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }
    .about {
        flex-direction: column;
    }
    .about-image img {
        width: 70vw;
        margin-top: 4rem;
    }
    .about h2 {
        text-align: center;
    }
    .services h2 {
        margin-bottom: 3rem;
    }
}

@media (max-width:617px) {
    .home-img img {
        width: 80vw;
        margin-top: 8rem;
    }
    .about-image img {
        width: 80vw;
        margin-top: 4rem;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
}

