* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body{
  overflow-x: hidden;
}

/* ------------------ Call to actions, headings and contents ------------------ */


/* Sections Heating Styling */
.section-heading {
  width: 100%;
  font-size: 2.6rem;
  padding: 12px;
  margin-top: 12px;
  margin-bottom: 19px;
}

/* Paragraph contnet Styling */
.Content-paragraph {
  width: 100%;
  font-size: var(--content-size);
  margin-bottom: 19px;
  color: rgb(0, 0, 0);
  line-height: 1.7;
}

.join-now-btn {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background: #ed1c25;
  border-radius: 9px;
  cursor: pointer;
  padding: 12px;
}
.join-now-btn a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Social Icons Styling */
.icons {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.social-icons {
  width: 80%;
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}
.social-icons .social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.social-icons a {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s, color 0.3s;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: var(--secondary-color);
}

/* ------------------------------------------------------------------------------------------------------------------------- */

/* Spinner animation */
.spinner {
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #00ffcc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hide preloader */
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Main content initially hidden */
.content {
  display: none;
  padding: 40px;
  text-align: center;
}
/* Show content after preloader */

.hero {
  width: 100%;
  /* height: 65vh; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 40px 0;
}
.intro {
  width: 40%;
  margin: 12px;
  color: rgb(0, 0, 0);
}
.hero .intro h3 {
  font-size: 3.33rem;
}

/* Explore Button Styling */
.hero .intro .explore-btn {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background-image: linear-gradient(to right, #3a98e3, #155385);
  border-radius: 9px;
  cursor: pointer;
}
.hero .intro .explore-btn a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}
.hero .intro .explore-btn:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.hero .img-section {
  width: 40%;
  height: 50vh;
  margin: 19px;
  margin-top: 60px;
  /* overflow: hidden; */
  position: relative;
}
.hero .img-section .style-box-top {
  width: 180px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 10px 19px;
  position: absolute;
  top: -25px;
  left: -50px;
  text-align: right;
}
.hero .img-section img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.hero .img-section .style-box-bottom {
  width: 180px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 10px 19px;
  position: absolute;
  bottom: -30px;
  right: 50px;
  text-align: right;
}

/* Why choose us styling */
.why-choose-us {
  width: 100%;
  /* height: 100vh; */
  background-color: #f2f2f2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 80px 0;
  margin-top: 50px;
}

.why-choose-us .why-choose-us-content {
  width: 40%;
  margin: 12px;
  margin-top: 30px;
  color: rgb(0, 0, 0);
}

/* Our service Section Style */
.our-services {
  background-color: #0077cc;
  color: white;
  padding: 40px 90px;
  margin-top: 90px;
}
.service-card-container{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.service-card-container .service-card{
  width: 300px;
  height: 250px;
  background-color: white;
  color: black;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}
.service-card-container .service-card > img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;

}

.service-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.subtitle {
  font-size: var(--content-size);
  color: #cac9c9;
  margin-bottom: 30px;
}

.duration {
  font-size: 14px;
  color: #555;
}

.explore-more-btn {
  display: inline-block;
  margin-top: 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 13px;
  border-bottom: 2px solid white;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.explore-more-btn:hover {
  color: #ffcc00;
}

.clients-section {
      padding: 60px 20px;
      text-align: center;
      background: linear-gradient(135deg, #f0f4ff, #ffffff);
    }

    .clients-section h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #333;
    }

    .clients-section p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #666;
    }

    .clients-logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      align-items: center;
      justify-items: center;
    }

    .client-logo {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 150px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    .client-logo:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .client-logo:hover img {
      filter: grayscale(0%);
    }



/* Footer Section */
.footer {
  padding: 80px 20px;
}

.footer .social-icons {
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  /* gap: 20%; */
  align-items: center;
}
.logo-section,
.social-icons-footer {
  justify-items: center;
  text-align: center;
}

.logo-section > .logo {
  width: 10rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.footer-links h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.footer-links li:hover {
  cursor: pointer;
  color: #555;
  transform: translateX(5px);
}
.footer-links li a {
  text-decoration: none;
  color: #000000;
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #303030;
  border-radius: 20px;
  padding: 20px 8px;
  box-shadow: 0 0 2px black;
  margin-top: 50px;
}
