/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica;
  background-color: #171717;
  color: #fff;
  overflow-x: hidden;
}

/* General Styles */
/* General Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background-color: none; /* Dark background for the header */
  color: #fff;
  position: relative;
}

.logo img{
  margin-left: 20px;
  width: 50%;
}

nav a {
  color: #fff;
  font-size: 14px;
  margin: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: #FF6B4D;
}

.quote-button1 {
  background-color: #d74426;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.8em;
  cursor: pointer;
  font-weight: bold;
}

.burger-menu {
  font-size: 3em;
  cursor: pointer;
  display: none;
  color: #f15638;
}

.burger-menu .bar {
  width: 35px;
  height: 5px;
  background-color: #f15638;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Disable scrolling when nav-links is active */
.nav-links.active ~ body {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Transform into "X" */
.burger-menu.active .top {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .middle {
  opacity: 0;
}

.burger-menu.active .bottom {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navigation */
@media (max-width: 600px) {
  .nav-links.active ~ body {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  
  header {
    background-color: #141414;
  }

  .burger-menu {
    display: block;
  }

  .nav-links {
    visibility: hidden; /* Hidden initially */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    left: 0;
    background: linear-gradient(180deg, rgba(38, 38, 38) 50%, rgba(233, 68, 35, 0.9) 100%);
    width: 100%;
    height: 900px;
    padding: 40px 0;
    z-index: 10;
    opacity: 0; /* Hidden initially */
    transform: translateY(-100%); /* Start off-screen */
    transition: transform 600ms cubic-bezier(0.17, 0.04, 0.03, 0.94), opacity 0.5s ease, visibility 0s 600ms; /* Transition for sliding effect and fading */
    display: flex; /* Ensure it's flexbox */
    flex-direction: column; /* Make the links stack vertically */
    align-items: center; /* Center the links horizontally */
  }

  .nav-links.active {
    visibility: visible; /* Make it visible */
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide in from top */
    transition: transform 600ms cubic-bezier(0.17, 0.04, 0.03, 0.94), opacity 0.5s ease, visibility 0s 0s; /* Ensure visibility happens immediately */
  }

  .nav-links a {
    color: #fff;
    font-size: 1.2em; /* Adjust the size if needed */
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    margin: 10px 0; /* Space between links */
    text-decoration: none;
  }

  .nav-links a:hover {
    color: #FF6B4D; /* Hover effect */
  }
}


/* Base styles */
.bold-text {
  font-weight: bold;
  color: #fff;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 100px 50px 0;
  position: relative; /* Ensure stacking context */
  z-index: 1; /* Keeps hero section on top, but doesn't interfere with order */
}

.hero-content {
  max-width: 600px;
  margin-left: 40px;
  margin-top: 0; /* Remove unnecessary negative margins */
  z-index: 2; /* Ensure content is above images */
}

.reviews {
  color: #FF6B4D;
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 3.5em;
  font-weight: bold;
  line-height: 70px;
  width: 800px;
  z-index: 3; /* Ensure H1 is on top */
}

.hero-content p {
  text-align: left;
}

.underline {
  position: relative;
  display: inline-block;
}

.underline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px; /* Total height of the line */
  background-color: #FF6B4D; /* Line color */
  bottom: -5px; /* Position below the text */
  left: 0;
  clip-path: polygon(0% 0%, 10% 0%, 100% 10%, 5% 100%);
  z-index: 9; /* Place behind the text */
  animation: bounce 2s infinite ease-in-out; /* Add animation */
}

.features {
  list-style: none;
  margin-top: 20px;
}

.features li {
  color: #ffffff;
  margin: 10px 0;
  font-size: 1.2em;
}

.tick {
  color: #FF6B4D;
}

.description {
  margin-top: 20px;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  z-index: 0;
}

 .hero-image .trainer-image2 {
  display: none;
}

/* Reset initial state */
.hero-content > *, .hero-image > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 0.8s ease;
}

/* Animate on slide-up class */
.slide-up {
  opacity: 1;
  transform: translateY(0);
}

.trainer-image {
  width: 900px;
  height: auto;
  position: relative;
  z-index: 1;
  top: -100px; /* Move up by 100px */
}

.gradient img {
  z-index: 1;
}

.badge {
  position: absolute;
  padding: 10px 20px;
  font-weight: lighter;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9em;
  z-index: 9;
}

.badge.orange {
  background-color: #f15638;
  max-width: 120px;
  top: 40px;
  right: 190px;
}

.bold {
  font-size: 20px;
  font-weight: bold;
}

.badge.orange img {
  height: 25px;
  mix-blend-mode: overlay;
}

.badge.black {
  background-color: #333;
  max-width: 150px;
  bottom: 300px;
  left: 30px;
}

.badge.black img {
  height: 25px;
}

.badge.purple {
  background-color: #6A1B9A;
  max-width: 150px;
  bottom: 300px;
  right: 100px;
}

.badge.purple img {
  height: 30px;
  mix-blend-mode: overlay;
}

.quote-button2 {
  background-color: #1335f5;
  color: #fff;
  padding: 20px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(19, 53, 245, 0.8); /* Initial glow */
  animation: pulseGlow 1.5s infinite alternate; /* Pulse animation */
}

.quote-button2:hover {
  box-shadow: 0 0 20px rgba(19, 53, 245, 1); /* Stronger glow on hover */
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(19, 53, 245, 0.8); /* Initial glow */
  }
  50% {
    box-shadow: 0 0 20px rgba(19, 53, 245, 1); /* Stronger glow at mid-point */
  }
  100% {
    box-shadow: 0 0 10px rgba(19, 53, 245, 0.8); /* Fade back to initial glow */
  }
}

/* Adjustments for screens 1200px wide or smaller */
@media (max-width: 1200px) {
  /* Hero Section */

  .hero-content h1 {
    font-size: 2.8em; /* Adjust font size for headings */
    width: 600px; /* Ensure flexible width */
  }
  .features li {
    font-size: 0.8rem;
  }
  .hero-content p {
    font-size: 0.8rem;
    width: 400px; /* Adjust paragraph font size */
  }

  .trainer-image {
    margin-left: -100px;
    width: 150%;
    height: auto;
  }

  .badge {
    font-size: 0.6rem;
    width: auto;
height: auto;
  }

  .badge.orange {
    top: -20px;
    left: -40px;
  }
  .badge.purple {
    right: 60px;
  }

  .badge.black {
    top: 300px;
    height: 100px;
  }
}
/* For tablets (768px and smaller) */
/* For tablets (768px and smaller) */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers items vertically */
    align-items: center; /* Centers items horizontally */
    padding: 50px 20px;
  }

  .hero-content {
    max-width: 100%;
    margin: 20px 0 0 0; /* Remove left margin */
    text-align: center; /* Center text */
  }

  .hero-content h1 {
    font-size: 2.5em;
    line-height: 50px;
    width: auto;
    text-align: center;
  }

  .hero-content p {
    text-align: center; /* Ensure paragraph text is centered */
  }

  .features {
    margin-top: 20px;
    text-align: center;
  }

  .features li {
    font-size: 1em;
    margin: 10px 0;
  }

  .trainer-image {
    width: 100%; /* Scale to fit smaller screens */
    margin-top: 20px;
    top: auto; /* Reset top positioning */
  }

  .badge {
    font-size: 0.8em;
    padding: 8px 15px;
  }

  .badge.orange {
    right: auto; /* Reset right positioning */
    left: auto; /* Center the badge if needed */
  }

  .badge.black,
  .badge.purple {
    bottom: auto; /* Reset bottom positioning */
  }

  .quote-button2 {
    margin: 20px auto; /* Center the button */
    padding: 15px 20px;
    font-size: 0.9em;
  }

  .underline {
    font-weight: 800 !important;
    color: #f15638 !important;
  }

  .underline::before {
    display: none !important;
  }
}

/* For smaller devices (600px and smaller) */
@media (max-width: 600px) {
  .hero {
    flex-direction: column-reverse; /* Reverse content order */
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    margin: 0; /* Reset margin */
    margin-top: 20px; /* Space between sections */
    text-align: center; /* Center all text */
  }

  .hero-content h1 {
    font-size: 2.3em; /* Adjust size for smaller screens */
    font-weight: 300; /* Adjust weight for readability */
    line-height: 1.2;
    margin: 0; /* Reset margins */
  }

  .hero-content p {
    width: 100%;
    font-size: 1em; /* Adjust font size */
    text-align: center;
    margin: 10px 0;
  }

  .features {
    margin: 20px 0;
    text-align: center;
  }

  .features li {
    font-size: 1em;
    margin: 10px 0;
  }

  .trainer-image {
    margin-left: 0;
    width: 100%;
    height: auto;
    top: 0; /* Reset top positioning */
  }

  .badge {
    display: none; /* Hide badges on small screens */
  }

  .quote-button2 {
    margin: 20px auto; 
    margin-bottom: 30px;/* Center button */
    padding: 10px 20px;
    font-size: 1em;
  }

  .underline {
    font-weight: 800 !important;
    color: #f15638 !important;
  }

  .underline::before {
    display: none !important;
  }
}



/* Services Section */
.services {
  background-color: #131313;
  color: #fff;
  padding: 80px 20px; /* Add padding to visually separate */
  text-align: center;
  position: relative; /* Ensure stacking context */
  z-index: 0; /* Stays beneath the hero section */
  margin-top: 20px; /* Adjust spacing from hero section */
}

.services-header h2 {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.services-header h3 {
  font-size: 2.8em;
  font-weight: normal;
  color: #e74c3c;
  margin-bottom: 30px;
}

.services-header p {
  font-size: 0.8em;
  color: #aaa;
  max-width: 1000px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}



.hidden {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) { 

.left img{
height: 400px !important;
}

.right h1 {
  margin-top: 30px;
  font-size: 2rem !important;
}
.right p {
  font-size: 0.9rem;
}

.right .quote-button {
  margin-bottom: 100px;
  margin-left: 200px;
}
}




/* Shine Effect */
.service-card {
  background-color: #262626;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  text-align: left;
  position: relative;
  overflow: hidden; /* Necessary for shine effect */
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
 
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.service-card:hover::before {
  left: 125%; /* Move shine effect across card */
  transition: 0.5s;
  
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #FF6B4D;
  background-color: #262B3B;
}


.icon {
  display: flex;
  justify-content: left;
  margin-bottom: 15px;
}

.icon img {
  width: 35px;
  height: auto;
  mix-blend-mode: overlay;
}

.service-card h4 {
  font-size: 1.1em;
  font-weight: bold;
  color: ; 
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9em;
  color: #aaa;
  line-height: 1.4;
}

.quote-button {
  background-color: #1335f5;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: bold;
  margin-top: 40px;
  transition: background-color 0.3s;
}

.quote-button:hover {
  background-color: #e65a3b;
}


@media (max-width: 1200px) {
.services{
margin-top: 0px;}
}



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

  .service-cards {
      flex-direction: column;
      align-items: center;
  }

  .service-card {
      width: 100%;
      max-width: 300px;
  }

  .services-header h2 {
      font-size: 2.2em;
  }

  .services-header h3 {
      font-size: 1.5em;
  }
}




.carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
}

.carousel-container {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.carousel-container h2 {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.carousel-container p {
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 300px;
}

.carousel-card {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  display: flex;
  background-color:  #000000;
  border: #f15638 solid 1px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.carousel-card img {
  border-radius: 8px 0 0 8px;
  width: 35%;
  height: 100%;
  object-fit: cover;
}

.carousel-card-content {
  padding: 20px;
  text-align: left;
}

.rating {
  color: #f15638;
  font-size: 20px;
}

.carousel-card h3 {
  font-size: 1.5em;
  color: #ffffff;
}

.carousel-card p {
  margin-left: 20px;
  color: #ffffff;
  margin: 10px 0;
}

.client-name {
  font-weight: bold;
  color: #ffffff;
}

.find-out-more {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  padding: 10px 20px; /* Add padding for better size control */
  background-color: #f15638;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  width: 100px;
  height: 40px; /* Remove fixed width for flexibility */
  white-space: nowrap;
  margin-top: 30px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin: 15px;
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  width: 12px;
  height: 12px;
  background-color: #000000;
}

/* Responsive Styles for 600px width */
@media (max-width: 600px) {

  .carousel-wrapper {
    height: auto; /* Allow the height to adjust based on content */
    padding: 10px 20px; /* Add some padding for better mobile layout */
  }

  .carousel-container h2 {
    font-size: 2.2em; /* Smaller heading size for mobile */
  }

  .carousel-container p {
    font-size: 0.9em; /* Adjust text size for readability */
    margin-bottom: 15px;
  }

  .carousel-card img {
    width: 40%; /* Increase image width on mobile */
  }

  .carousel-card h3 {
    font-size: 1.2em; /* Smaller title for better mobile layout */
  }

  .carousel-card p {
    font-size: 0.9em; /* Smaller text size on mobile */
  }

  .find-out-more {
    width: auto; /* Let the button width adjust dynamically */
    font-size: 0.9em; /* Slightly smaller font size */
    padding: 12px 25px; /* Adjust padding for mobile */
  }

  .carousel-indicators {
    margin: 10px 0;
  }

  .indicator {
    width: 8px; /* Smaller indicators on mobile */
    height: 8px;
  }

  .indicator.active {
    width: 10px; /* Active indicator should remain slightly bigger */
    height: 10px;
  }
}


.container {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal overflow */
  max-width: 100%;
  background-color: #0e0e0e;
}

.left {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 50%;
}

.left img {
  height: 550px;
  margin-left: 30px;
}

.right {
  flex: 1;
  padding-left: 10px; /* Reduced padding */
  max-width: 700px;
  align-items: right;
  margin-left: 100px;
  width: 50%;
}

.right h1 {
  font-size: 2.5rem;
  text-align: right;
  max-width: 80%;
  font-weight: bold;
}

.subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #e94423;
  text-align: right;
  width: 80%;
  font-weight: lighter;
}

.right p {
  width: 80%;
}

.description {
  color: #aaa;
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

.right .quote-button {
  background-color: #1335f5;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center; /* Center-aligns text inside button */
  display: inline-block; /* Keeps the button aligned with text */
  margin-top: 20px; /* Adds space above the button */
  margin-left: 300px;
}

.numbers-title {
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  padding: 20px;
  background-color: #0e0e0e;
}

.numbers-title .highlight {
  color: #FF6B4D;
}

.numbers-title h2 {
  margin-bottom: 10px;
}

.numbers-title h3 {
  font-size: 1.2rem;
  font-weight: 300;
  color: #FF6B4D;
}

.numbers-wrap {
  width: 100%;
  min-height: 35vh; /* Ensure the height adjusts with content */
  padding-bottom: 0; /* Remove or reduce padding */
  display: flex;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  gap: 10px;
  background-color: #0e0e0e;
}

.numbers-container {
  gap: 0.5rem;
  width: 28vmin;
  height: 50vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center; /* Centers content horizontally */
  padding: 2em 0;
  font-size: 1.3rem;
  border-radius: 0.5em;
  background: rgb(23, 23, 23);
  background: linear-gradient(180deg, rgba(38, 38, 38) 50%, rgba(233, 68, 35, 0.5) 100%);
  border: 0px solid rgba(233, 68, 35, 1);
  text-align: center; /* Ensures text alignment for child elements */
  margin-bottom: 70px;
}

.numbers-container:hover {
  background: linear-gradient(180deg, rgba(38, 38, 38, 1) 50%, rgba(15, 42, 196, 0.8) 100%);
}

.numbers-container .counter {
  display: flex;
  align-items: center; /* Ensures the number and icon are vertically aligned */
  justify-content: center; /* Centers the content horizontally within the container */
  gap: 0.25rem; /* Adds spacing between the number and icon */
}

.numbers-container .num {
  color: #a4a4a4;
}

.numbers-container .icon {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff; /* Ensures the % symbol stands out */
}

.numbers-container .text {
  font-size: 1rem;
  font-weight: bold;
}

.numbers-container p {
  font-size: 0.8rem;
  text-align: center;
  color: #c6c6c6;
  width: 200px;
  margin: 0 auto; /* Centers the paragraph within the container */
}

i {
  color: #18f98f;
  font-size: 2.5em;
  text-align: center;
}

span.num {
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}

span.text {
  color: #e0e0e0;
  font-size: 1.2em;
  font-weight: lighter;
  text-align: center;
}

@media (max-width: 1400px) {
  .right .quote-button {
    margin-left: 200px;
  }
  .numbers-wrap p {
    margin: 0;
    font-size: 0.7rem;
  }

  .numbers-container {
    width: 20%;
    height: 250px;
  }
}


/* Media query for screens <= 600px */
@media (max-width: 600px) {
  .container {
    flex-direction: column; /* Stack items vertically */
    padding: 20px; /* Adjust padding for smaller screens */
  }

  .left,
  .right {
    width: 100%; /* Make both sections take full width */
    margin: 0; /* Remove margins for mobile */
    padding: 0; /* Remove padding */
  }

  .left img {
    height: 350px; /* Adjust image size */
    margin-left: 0; /* Remove margin */
  }

  .right h1 {
    margin: auto;
    align-items: center;
    font-size: 2.5rem !important; /* Adjust font size */
    text-align: center; /* Center-align the text */
  }

  .subtitle {
      font-size: 1.5em !important;
  }

  .right .quote-button {
    margin-left: 0; /* Center button */
    margin-top: 20px; /* Adjust top margin */
    display: block; /* Make button display as block */
    width: 100%; /* Make the button full-width */
  }

  .right p,
  .description {
    font-size: 1rem; /* Adjust font size */
    text-align: center; /* Center-align text */
    width: 100%; /* Ensure full width */
  }

  .numbers-title {
    font-size: 1.5rem; /* Adjust title size */
  }

  .numbers-wrap {
    flex-direction: column; /* Stack items vertically */
    padding: 10px 0; /* Adjust padding */
  }

  .numbers-container {
    width: 70%; /* Adjust container width */
    height: auto; /* Let container adjust its height */
    margin-bottom: 30px; /* Adjust bottom margin */
  }

  .numbers-container .counter {
    font-size: 1.5rem; /* Adjust counter font size */
  }

  .numbers-container p {
    width: 100%; /* Make the paragraph full-width */
  }
}



/* Services Section */
.prices {
  margin-top: 60px;
  background-color: #171717;
  color: #fff;
  padding: 0 0 50px;
  text-align: center;
  position: relative;
  height: 1000px;
}

.prices-header h2 {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
}

.prices-header h3 {
  font-size: 2.8em;
  font-weight: normal;
  color: #e65a3b;
  margin-bottom: 10px;
}

.prices-header p {
  font-size: 0.8em;
  color: #aaa;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.popularbutton {
  float: right;
  z-index: 999;
  border: #FF6B4D solid 1px;
  background-color: #000000;
  color: #FF6B4D;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.8em;
  cursor: pointer;
  font-weight: bold;
}

.prices-cards {
  display: flex;
  height: 500px;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

/* Shine Effect */
.prices-card {
  background-color: #262626;
  border-radius: 8px;
  padding: 20px;
  width: 350px;
  text-align: left;
  position: relative;
  overflow: hidden; /* Necessary for shine effect */
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}
.prices-card:hover {
  border: #e74c3c solid 2px;
}

.prices-card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.prices-card h5 {
  color: #444444;
  margin-bottom: 10px;
}

.prices-card h2 {
  font-size: 3rem;
  font-weight: normal;
}

.prices-card p {
  line-height: 40px;
}

.prices-card hr {
  border: 1px solid #e74c3c;
  border-radius: 1px;
  width: 120%;
  margin-left: -20px;
}

.prices-card .month {
  font-size: 1rem;
  font-weight: lighter;
}

.prices-card .quote-button1 {
  margin-top: 70px;
  width: 100%;
  height: 60px;
  font-size: 1rem;
}

.prices-card .quote-button1:hover {
  background-color: #e34533;
  transition: 1s;
}

.prices-card .tick {
  color: #e34533;
}
.prices-card .x {
  color: #626262;
}

.prices-card2 {
  background-color: #262626;
  border-radius: 8px;
  padding: 20px;
  width: 350px;
  text-align: left;
  position: relative;
  overflow: hidden; /* Necessary for shine effect */
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
  border: #e74c3c solid 1px;
}

.prices-card2:hover {
  box-shadow: 0 0 9px 9px #e74c3c;
  transition: 1s;
}

.prices-card2 h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.prices-card2 h5 {
  color: #444444;
  margin-bottom: 10px;
}

.prices-card2 h2 {
  font-size: 3rem;
  font-weight: normal;
}

.prices-card2 p {
  line-height: 40px;
}

.prices-card2 hr {
  border: 1px solid #e74c3c;
  border-radius: 1px;
  width: 120%;
  margin-left: -20px;
}

.prices-card2 .month {
  font-size: 1rem;
  font-weight: lighter;
}

.prices-card2 .quote-button1 {
  margin-top: 70px;
  width: 100%;
  height: 60px;
  font-size: 1rem;
}

.prices-card2 .quote-button1:hover {
  background-color: #e34533;
  transition: 1s;
}

.prices-card2 .tick {
  color: #e34533;
}

.prices .quote-button {
  outline: #e34533 solid 1px;
  background-color: #171717;
  margin-top: 200px;
}

.prices .quote-button:hover {
  background-color: #e34533;
}

@media (max-width: 600px) {
  .prices .quote-button {
    display: none;
  }
  }

/* FAQ Section */

.FAQs-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.FAQ h1 {
  font-size: 3em;
  text-align: center;
  padding-top: 20px;
}

.FAQ p {
  text-align: center;
  font-size: 0.8rem;
  max-width: 1000px;
  color: rgb(142, 142, 142);
  margin-bottom: 20px;
}

.FAQs-container {
  margin: 0;
}

.faq-item {
  border-radius: 10px;
  width: 65vw;
  min-width: 250px;
  margin-top: 2rem;
  padding-left: 40px;
  box-sizing: border-box; /* Prevent overflow due to padding */
}

/* Item Question */
.item-question {
  border-radius: 10px;
  background: #2e3132;
  color: whitesmoke;
  font-size: 1.2em;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent; /* Default transparent border */
  padding: 10px;
  transition: border 0.3s ease; /* Smooth transition for border change */
}

.item-question:hover {
  border: #e74c3c solid 1px;
}

.faq-item.active .item-question {
  border: 1px solid #e74c3c; /* Border color when FAQ is active */
}

.question-text {
  display: inline-block;
}

.arrows-container {
  margin: 0.4rem;
}

/* Item Answer */
.item-answer {
  display: none;
  color: whitesmoke;
  padding: 2rem;
}

.close {
  display: none;
}

/* Show Answer Styles */
.show-answer .item-answer {
  display: block;
  background: #000000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.show-answer .close {
  display: inline;
}

.show-answer .expand {
  display: none;
}

@media (max-width: 1200px) {
  .prices-header p {
    width: 70%;
  }
  .faq-item {
    margin-left: 100px;
  }
  }
@media (max-width: 600px) {
  .faq-item {
    margin-left: 0;
  }
  .prices-header h2 {
    font-size: 2rem;
    margin: 0 20px;
  }
  .prices-header h3  {
    font-size: 2rem;
  }


  .popularbutton {
    display: none;
  }

  .prices-card {
    background-color: #262626;
    border-radius: 8px;
    padding: 20px;
    width: 350px;
    text-align: left;
    position: relative;
    overflow: hidden; /* Necessary for shine effect */
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
  }
  .prices-card:hover {
    border: #e74c3c solid 2px;
  }
  
  .prices-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .prices-card h5 {
    color: #444444;
    margin-bottom: 10px;
  }
  
  .prices-card h2 {
    font-size: 3rem;
    font-weight: normal;
  }
  
  .prices-card p {
    line-height: 40px;
  }
  
  .prices-card hr {
    border: 1px solid #e74c3c;
    border-radius: 1px;
    width: 120%;
    margin-left: -20px;
  }
  
  .prices-card .month {
    font-size: 1rem;
    font-weight: lighter;
  }
  
  .prices-card .quote-button1 {
    margin-top: 70px;
    width: 100%;
    height: 60px;
    font-size: 1rem;
  }
  
  .prices-card .quote-button1:hover {
    background-color: #e34533;
    transition: 1s;
  }
  
  .prices-card .tick {
    color: #e34533;
  }
  
  .prices-card2 {
    background-color: #262626;
    border-radius: 8px;
    padding: 20px;
    width: 350px;
    text-align: left;
    position: relative;
    overflow: hidden; /* Necessary for shine effect */
    border: 2px solid transparent;
    transition: transform 0.3s, border-color 0.3s;
    border: #e74c3c solid 1px;
  }
  
  .prices-card2:hover {
    box-shadow: 0 0 9px 9px #e74c3c;
    transition: 1s;
  }
  
  .prices-card2 h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .prices-card2 h5 {
    color: #444444;
    margin-bottom: 10px;
  }
  
  .prices-card2 h2 {
    font-size: 3rem;
    font-weight: normal;
  }
  
  .prices-card2 p {
    line-height: 40px;
  }
  
  .prices-card2 hr {
    border: 1px solid #e74c3c;
    border-radius: 1px;
    width: 120%;
    margin-left: -20px;
  }
  
  .prices-card2 .month {
    font-size: 1rem;
    font-weight: lighter;
  }
  
  .prices-card2 .quote-button1 {
    margin-top: 70px;
    width: 100%;
    height: 60px;
    font-size: 1rem;
  }
  
  .prices-card2 .quote-button1:hover {
    background-color: #e34533;
    transition: 1s;
  }
  
  .prices-card2 .tick {
    color: #e34533;
  }
  
  .prices .quote-button {
    outline: #e34533 solid 1px;
    background-color: #171717;
    margin-top: 200px;
  }
  
  .prices .quote-button:hover {
    background-color: #e34533;
  }
  
  .FAQ {
    margin-top: 750px;
        width: 95%;
  }
  .FAQ h1 {
    font-size: 2rem; /* Adjusted font size */
  }

  .FAQ p {
    font-size: 1rem; /* Increased font size */
    margin: 0 20px;
  }

  .faq-item {
    width: 100%; /* Full width FAQ items */
    padding-left: 20px; /* Reduced padding */
  }

  .item-question {
    margin-left: -20px;
    font-size: 1rem; /* Adjusted font size */
  }

  .item-answer {
    margin-left: -20px;
    padding: .8rem; /* Adjusted padding */
  }
}



.quote-wrapper  {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  background-color: #0e0e0e;
}


.quote-container {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.quote-container h2 {
  font-size: 3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.quote-container p {
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.quote {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 930px;
  height: 300px;

}

.quote .speech {
  font-size: 2.3em;
  color: #e34533;
}

.quote-card {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  display: flex;
  background-color:  #171717;
  border: #f15638 solid 1px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.quote-card img {
  border-radius: 8px 0 0 8px;
  width: 550px;
  height: 100%;
  object-fit: cover;
}

.quote-card-content {
  padding: 20px;
  text-align: left;
}

.rating {
  color: #f15638;
  font-size: 20px;
}

.quote-card h3 {
  font-size: 2em;
  color: #ffffff;
  line-height: 1.4em;
}
.quote-card h4 {
  font-size: 0.9em;
  font-weight: lighter;
}

.quote-card p {
  margin-left: 20px;
  color: #404040;
  margin: 10px 0;
}

.client-name {
  font-weight: bold;
  color: #ffffff;
}

.find-out-more {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  padding: 10px 20px; /* Add padding for better size control */
  background-color: #f15638;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  width: 100px; 
  height: 40px;/* Remove fixed width for flexibility */
  white-space: nowrap;
  margin-top: 30px;
}







/* Media Query for 600px and smaller screens */
@media (max-width: 600px) {

  .quote-wrapper {
    margin-top: 150px;
    height: 300px; /* Adjusted height for smaller screens */
  }
  
  .quote-container {
    width: 100%;
    padding: 20px; /* Added padding for better spacing */
    max-width: 100%; /* Full width on smaller screens */
  }

  .quote-container h2 {
    font-size: 1.8em; /* Reduced font size for smaller screens */
    margin-bottom: 10px;
  }

  .quote-container p {
    font-size: 0.9em; /* Adjusted font size */
    margin-bottom: 20px;
  }

  .quote {
    display: flex;
    flex-direction: column; /* Stack quote cards vertically on small screens */
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto; /* Allow height to adjust to content */
  }

  .quote .speech {
    font-size: 1.8em; /* Smaller font size */
  }

  .quote-card {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    background-color: #171717;
    border: #f15638 solid 1px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 20px; /* Space between quote cards */
  }

  .quote-card img {
    border-radius: 8px 8px 0 0; /* Adjusted border radius for mobile */
    width: 100%; /* Full width for images on small screens */
    height: 200px; /* Fixed height for images */
    object-fit: cover;
  }

  .quote-card-content {
    padding: 10px; /* Reduced padding for smaller screens */
    text-align: left;
  }

  .rating {
    color: #f15638;
    font-size: 18px; /* Adjusted font size */
  }

  .quote-card h3 {
    font-size: 1.5em; /* Smaller heading size */
    color: #ffffff;
    line-height: 1.3em;
  }

  .quote-card h4 {
    font-size: 0.8em; /* Smaller subheading size */
    font-weight: lighter;
  }

  .quote-card p {
    margin-left: 10px; /* Reduced margin for small screens */
    color: #404040;
    margin: 10px 0;
  }

  .client-name {
    font-weight: bold;
    color: #ffffff;
  }

  .find-out-more {
    font-size: 0.8em;
    padding: 10px 20px;
    background-color: #f15638;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    width: 100px;
    height: 40px;
    white-space: nowrap;
    margin-top: 20px; /* Adjusted margin for better spacing */
  }

}


.contact-section {
  padding: 20px;
  margin-top: 10px;
  background: linear-gradient(180deg, rgb(27, 27, 27) 30%, rgba(233, 68, 35, 0.04) 100%); /* Dark background */
  color: #fff;
  }
  
  /* Container for contact information and form */
  .contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures responsive layout */
  margin: 0 100px;
  }
  
  /* Contact Info Styles */
  .contact-info {
    margin-top: 200px;
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
  }
  
  .contact-info h2 {
    color: #FF6B4D;
  font-size: 3em;
  margin-bottom: 20px;
  
  }
  
  .contact-info h3 {
  font-size: 1.8em;
  font-weight: lighter;
  margin-bottom: 15px;
  
  }
  
  .contact-info p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
  
  }
  
  .contact-info h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
  
  }
  
  .phone-number {
  font-size: 1.8em;
  color: #FF6B4D; /* Yellow color */
  margin-bottom: 20px;
  
  }
  
  /* Social Icons */
  .social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: left; /* Center icons */
  }
  
  .social-icons img {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
  height: 30px;
  }
  
  /* Contact Form Styles */
  .contact-form {
  flex: 1;
  max-width: 45%;
  background-color: #2a2a2a;
  border: #FF6B4D solid 1px;
  padding:30px;
  
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form img {
    
    height: 70px;
  }
  /* Form Layout */
  .contact-form form {
  display: flex;
  flex-direction: column;
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    margin: 10px;
    text-align: left;
    align-items: center;
  }
  
  .contact-form p {
    text-align: left;
    font-size: .8rem;
    color: #aaa;
    margin-bottom: 10px;
    }
  /* Form Group Styles */
  .form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  }
  
  /* Input Styles */
  .form-group input {
  width: 100%;
  padding: 20px;
  font-size: 1em;
  border: 1px solid #f15638;
  border-radius: 5px;
  background-color: #dedede;
  color: #181818;
  }
  
  /* Placeholder Text */
  .form-group input::placeholder {
  color: #999;
  }
  
  /* Button Styles */
  .btn-yellow {
    background-color: #1335f5;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .btn-yellow:hover {
  background-color: #FF6B4D;
  }
  
  /* Media Query for 600px and smaller screens */
@media (max-width: 600px) {

  .contact-section {
    padding: 10px;
    margin-top: 100px;
    background: linear-gradient(180deg, rgb(27, 27, 27) 30%, rgba(233, 68, 35, 0.04) 100%); /* Dark background */
    color: #fff;
  }
  
  /* Container for contact information and form */
  .contact-container {
    display: flex;
    flex-direction: column; /* Stack contact info and form vertically */
    align-items: center;
    margin: 0 10px;
  }
  
  /* Contact Info Styles */
  .contact-info {
    margin-top: 20px; /* Reduced margin for smaller screens */
    flex: 1;
    max-width: 100%;
    padding-right: 0;
    text-align: center; /* Center text for better readability */
  }
  
  .contact-info h2 {
    color: #FF6B4D;
    font-size: 2em; /* Reduced font size */
    margin-bottom: 20px;
  }
  
  .contact-info h3 {
    font-size: 1.4em; /* Reduced font size */
    font-weight: lighter;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.4; /* Adjusted line height */
  }
  
  .contact-info h4 {
    font-size: 1.3em; /* Reduced font size */
    margin-bottom: 10px;
  }
  
  .phone-number {
    font-size: 1.4em; /* Reduced font size */
    color: #FF6B4D;
    margin-bottom: 20px;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center; /* Center social icons */
    margin-top: 10px;
  }
  
  .social-icons img {
    font-size: 1.5em; /* Reduced icon size */
    height: 25px;
  }
  
  /* Contact Form Styles */
  .contact-form {
    flex: 1;
    max-width: 100%; /* Full width for form */
    background-color: #2a2a2a;
    border: #FF6B4D solid 1px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  
  .contact-form img {
    height: 50px; /* Adjusted image height */
  }
  
  /* Form Layout */
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form h3 {
    font-size: 1.3rem; /* Reduced font size */
    margin: 10px;
    text-align: left;
    align-items: center;
  }
  
  .contact-form p {
    text-align: left;
    font-size: 0.9rem; /* Reduced font size */
    color: #aaa;
    margin-bottom: 10px;
  }
  
  /* Form Group Styles */
  .form-group {
    display: flex;
    flex-direction: column; /* Stack form groups vertically */
    gap: 10px;
    margin-bottom: 20px;
  }
  
  /* Input Styles */
  .form-group input {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #f15638;
    border-radius: 5px;
    background-color: #dedede;
    color: #181818;
  }
  
  /* Placeholder Text */
  .form-group input::placeholder {
    color: #999;
  }
  
  /* Button Styles */
  .btn-yellow {
    background-color: #1335f5;
    color: #fff;
    padding: 12px 25px; /* Reduced padding for smaller screens */
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
  }
  
  .btn-yellow:hover {
    background-color: #FF6B4D;
  }
  
}
