/**************************/
/* HEADER */
/**************************/
.clearfix{
  clear:both;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #fdf2e9; */
  /* background-color: #ffffff; */

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 2.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #cf711f;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 3px;
  color: #fff;
  background-color: #e67e22;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #cf711f;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);

  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  padding: 4.8rem 0 9.6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-container {
  background: linear-gradient(to bottom, #ffffff, #d0e1f9, #8faedf, #4c87c4);
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

/* .hero-img-box {
  width: 500px;
  height: 500px;
} */
.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Us Section */
.about-us {
  background: conic-gradient(
    from 180deg at 50% 50%,
    #4db4a5 0deg,
    /* Light Teal */ #70bcc5 90deg,
    /* Medium Teal */ #85c5d7 180deg,
    /* Light Blue */ #70bcc5 270deg,
    /* Medium Teal */ #4db4a5 360deg /* Light Teal */
  );
  padding: 16rem 1rem; /* Adjust padding as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* White text color */
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 81%);
  /* border: 300px solid red; */
  /* border-bottom: 100px solid transparent; */
}

.about-us-container {
  /* border: 2px solid red; */
  width: 100%;
  /* max-width: 80rem; Container width */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
}

/* .about-us-text {
} */

.about-us-text h1 {
  font-size: 4.5rem; /* Responsive heading size */
  margin-bottom: 1rem;
}

.about-us-text p {
  font-size: 2rem; /* Responsive text size */
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn-read-more {
  background-color: #ffffff; /* White button */
  color: black; /* Teal text color */

  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.btn-read-more:hover {
  background-color: #e7e5e5;
}

.icon-circle {
  background-color: #ffffff; /* White circle */
  width: 20rem; /* Circle size */
  height: 20rem;
  border-radius: 50%; /* Circular shape */
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-book {
  color: #4db4a5;
  font-size: 10rem;
  font-weight: bold;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  /* background-color: #d1dfee; */
  /* #d1dfee 70%,
    #9dbce1 100% */
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

/**************************/
/* PRICING SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
  cursor: pointer;
}
.pricing-plan--starter:hover {
  box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.15);
}

.pricing-plan--complete {
  background-color: #d3e6fb;
  cursor: pointer;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}
.pricing-plan--complete:hover {
  box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.15);
  background-color: #d3e6fb;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CONTACT US */
/**************************/

.contact_container {
  background: #f09e56cb;
  padding: 4rem;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  height: 46rem;
  /* margin: 7rem auto; */
  margin-top: 20rem;
  margin-bottom: 4rem;
  border-radius: 10px;
}

/*===========================Contact all Information==================================*/

.contact_information {
  background: #1375dd;
  padding: 3rem;
  border-radius: 10px;
  position: relative;
  bottom: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: white;
}

.contact_photo {
  margin-bottom: 20px;
  /* width: 200px; */
}
.contact_photo img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.contact_info p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.contactus_header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contactus_header h1 {
  font-size: 2.4rem;
}

.contact_number li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact_number li strong {
  font-size: 2rem;
}

.contact_number span {
  margin-left: 20px;
}

.social-icons {
  margin-top: 1rem !important;
}
.social-icons a {
  color: white;
  margin-right: 10px;
  text-decoration: none;
  font-size: 20px;
  /* color: white !important; */
}

.contact_social-media a:hover {
  background: transparent;
}

/*===========================Contact all Information End==================================*/

/*===========================Form==================================*/

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 60px;
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  /* margin-bottom: 10px; */
}

form input,
textarea {
  background: white;
  padding: 1.4rem;
  border: none;
  color: black;
  border-radius: 10px;
  width: 100%;
}

/*===========================Form End==================================*/

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 1rem 0;
  border-top: 1px solid #cec9c9;
  margin-top: 16rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: 4%;
}
