@import url('.css/clash-display.css');

*,
*::before,
*::after {
  box-sizing: border-box;
  /* overflow-x: hidden; */
}

:root {
  --c-dark: #16191b;
  --c-brand: #0043ec;
  --c-brand-gold: rgb(254, 202, 30);
  --c-brand-light: #6970dd;
  --c-brand-dark: #444;
  --c-brand-rgb: rgba(78, 87, 212, 0.272);
  --c-body: #727272;
  --font-base: 'ClashDisplay', sans-serif;
  --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.107);
  --transition: all 0.5s ease;
}

.hidden {
  opacity: 0;
  transform: translateY(20px);
}
.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

.linear {
  background: linear-gradient(
    to right,
    #0043ec,
    #67ef6e
  ); /* Adjust colors as needed */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent; /* For non-webkit browsers */
  font-weight: bold; /* Optional */
}

body {
  font-family: var(--font-base);
  line-height: 1.7;
  color: var(--c-body);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1 .h2 .h3 .h4 .h5 .h6 {
  font-weight: 600;
  color: var(--c-dark);
}

.logo {
  height: 30px;
  padding-left: 0;
  padding-right: 5px;
  margin-right: 0;
}

a {
  text-decoration: none;
  color: var(--c-brand);
  transition: var(--transition);
}

a:hover {
  color: var(--c-brand-light);
}

img {
  max-width: 100%;
  height: auto;
}

.text-brand {
  color: var(--c-brand);
  font-weight: bold;
}

.section-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.theme-shadow {
  box-shadow: var(--box-shadow);
}

/* Navbar */
.navbar {
  opacity: 0.9;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--c-dark);
}

.navbar-nav a:hover {
  border-bottom: var(--c-brand) 2px solid;
  transition: ease 0.3s;
}

.navbar-nav .nav-link.active {
  color: var(--c-brand);
}

.navbar p {
  color: var(--c-brand);
}

.navbar h6,
footer h2 {
  position: relative;
  bottom: -4px;
  font-weight: 600;
  font-family: Panchang, sans-serif;
}

@media (max-width: 767px) {
  .navbar-nav .nav-link {
    font-size: 14px;
  }

  .navbar-nav a:hover {
    border-bottom: none;
    transition: ease-out 0.3s;
  }

  .navbar h6 {
    color: var(--c-dark);
  }
}

/* Buttons */
.btn {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 10px 24px;
}

.btn-brand {
  background-image: linear-gradient(
    to right,
    #0043ec,
    #67ef6e
  ); /* Adjust colors as needed */
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px; /* Adjust border radius as needed */
}

.btn-brand:hover {
  background-color: var(--c-brand-light);
  border-color: var(--c-brand-light);
  color: #fff;
}

.btn-light {
  border-color: var(--c-brand);
}

#button-container {
  background-image: linear-gradient(
    to right,
    #0043ec,
    #67ef6e
  ); /* Green gradient */
  padding: 10px 24px; /* Adjust padding as needed */
  border-radius: 8px; /* Adjust border radius as needed */
  display: inline-block; /* Makes the container behave like a block element */
  text-align: center; /* Centers the button within the container */
  color: white; /* Text color */
  cursor: pointer; /* Pointer cursor on hover */
}

/* Optional: Add some shadow for better visual effect */
#button-container {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero */
#hero {
  background: url('../assets/images/chooks.jpg') no-repeat center center/cover;
  height: 80vh;
  overflow: hidden;

  h1 {
    position: relative;
    font-family: 'Panchang', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: var(--c-brand-light);
    left: 70px;
  }

  h1:nth-child(2) {
    font-family: 'Panchang', sans-serif;
    font-size: 100px;
    color: var(--c-brand);
    /* font-style: italic; */
  }
  h1:nth-child(3) {
    font-family: 'Panchang', sans-serif;
    font-size: 60px;
    color: #67ef6e;
    /* font-style: italic; */
  }

  h5 {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    /* color: var(--c-brand); */
    text-transform: uppercase;
    left: 70px;
  }

  .btn {
    position: relative;
    /* bottom: -100px; */
    left: 70px;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  #hero {
    background-position: center;
    background-size: cover;
    height: 60vh;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #hero h1 {
    font-size: 70px;
    right: -20px;
    bottom: -200px;
    color: var(--c-dark);
    text-align: center;
  }
  #hero h5 {
    font-size: 16px;
    left: 5px;
    color: #333;
    bottom: -200px;
  }

  #hero img {
    position: relative;
    width: 100%;
    height: 100%;
    bottom: 200px;
    opacity: 0.7;
  }

  #hero .btn {
    position: relative;
    bottom: -200px;
    left: -10px;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    display: flex;
    flex-direction: column;
    font-size: 40px;
    text-align: center;
    left: -3px;
    bottom: -200px;
    color: var(--c-dark);
  }
  #hero h5 {
    font-size: 14px;
    left: 5px;
    color: #333;
    bottom: -200px;
  }

  #hero .btn {
    position: relative;
    bottom: -60px;
    left: -90px;
  }
}

@media (width <= 480px) {
  #hero h1 {
    position: relative;
    font-size: 40px;
    text-align: center;
    left: -3px;
    bottom: -30px;
    color: var(--c-dark);
  }

  #hero h1:nth-child(2) {
    font-size: 60px;
    font-style: stretch;
  }

  #hero h1:nth-child(3) {
    font-family: 'Panchang', sans-serif;
    font-size: 50px;
    color: #67ef6e;
    /* font-style: italic; */
  }

  #hero h5 {
    position: relative;
    text-align: center;
    font-size: 12px;
    left: 5px;
    color: #333;
    bottom: -30px;
  }

  #hero img {
    position: relative;
    width: 50%;
    height: 70%;
    bottom: 100px;
    opacity: 0.9;
  }

  #hero .btn {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 10px 0;
    font-size: 14px;
    bottom: -20px;
    left: 30px;
  }
}

@media (481px <= width <= 767px) {
  #hero h1 {
    font-size: 40px;
    text-align: center;
    left: -3px;
    bottom: -100px;
    color: var(--c-dark);
  }

  #hero h1:nth-child(2) {
    font-size: 60px;
  }

  #hero h5 {
    text-align: center;
    font-size: 14px;
    left: 5px;
    color: #333;
    bottom: -70px;
  }

  #hero img {
    position: relative;
    width: 50%;
    height: 70%;
    bottom: 120px;
    opacity: 0.5;
  }

  #hero .btn {
    position: relative;
    /* display: flex; */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* bottom: -200px; */
    width: 40%;
    padding: 10px 0;
    /* margin: 10px auto; */
    font-size: 14px;
    left: 40px;
  }
}

/*text animation*/

.text-area {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: 700;
}
.text-area {
  opacity: 0;
  transform: translate(0, -100px) rotate(0deg) scale(0);
  animation: animate 5s forwards;
}
.text-area h1 {
  display: inline-block;
}
.text-area h1:nth-of-type(2) {
  animation-delay: 0.1s;
}
.text-area h1:nth-of-type(3) {
  animation-delay: 0.2s;
}
.text-area h1:nth-of-type(4) {
  animation-delay: 0.3s;
}
.text-area h1:nth-of-type(5) {
  animation-delay: 0.4s;
}
.text-area h1:nth-of-type(6) {
  animation-delay: 0.5s;
}
.text-area h1:nth-of-type(7) {
  animation-delay: 0.6s;
}
.text-area h1:nth-of-type(8) {
  animation-delay: 0.7s;
}
@keyframes animate {
  30% {
    transform: translate(0, -50px) rotate(0deg) scale(1);
  }
  60% {
    transform: translate(0, 20px) scale(0.8) rotate(0deg);
  }
  100% {
    transform: translate(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .text-area {
    font-size: 40px;
  }
}

.section-title {
  margin-bottom: 60px;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #0043ec, #67ef6e);
  margin: 16px auto 24px auto;
}

.section-title p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.iconbox {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: var(--c-brand-rgb); */
  color: var(--c-brand);
  font-size: 34px;
  flex: none;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.about-img {
  border-radius: 4px;
}

/* Services */
.service {
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
  padding-bottom: 200px;
  border-radius: 4px;
  opacity: 0.9;
}

.service::after {
  content: '';
  width: 40px;
  height: 40px;
  /* background: var(--c-brand-light); */
  position: absolute;
  bottom: 0;
  right: 0;
  transition: var(--transition);
  border-radius: 2px;
}

.service:hover::after {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0043ec, #67ef6e);
  z-index: -1;
}

.service:hover h5,
.service:hover p {
  color: #fff;
}

.service:hover .iconbox {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* counter */

#counter {
  color: var(--c-body);

  .col-lg-3 {
    border-right: 0.01rem solid #000;
  }
}

@media (max-width: 767px) {
  #counter {
    display: none;
  }

  #counter .col-lg-3 {
    border-right: none;
  }

  #counter h1,
  h6 {
    color: #fff;
  }
}

@media (max-width: 576px) {
  .count {
    border-right: none;
  }
}

/* Review */

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap; // For form validation feedback
  align-items: stretch;
  width: 40%;
  right: 25%;

  > .form-control,
  > .form-select {
    position: relative; // For focus state's z-index
    flex: 1 1 auto;
    width: 1%;
    min-width: 0; // https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size
  }

  // Bring the "active" form control to the top of surrounding elements
  > .form-control:focus,
  > .form-select:focus {
    z-index: 3;
  }
}

.faq {
  border-right: 0.1rem solid #4e57d4;
}

.accordion-item {
  box-shadow: var(--box-shadow);
}

.accordion-item h5 {
  font-size: 16px;
  color: #0043ec;
}

@media (max-width: 767px) {
  #faq {
    margin-top: 50px;
    /* background: var(--c-brand-light); */
  }

  #faq h6 {
    color: #000;
  }
}

.testimonial-area {
  padding: 80px 0;
}
.section-header h4 {
  color: #6970dd;
  font-weight: 600;
}
.section-header {
  padding-bottom: 15px;
}
.section-header h2 {
  font-weight: 700;
  color: #fff;
}
.section-header p {
  color: #6f6b80;
  width: 40%;
  margin: auto;
}
.icon-area {
  text-align: center;
}
.icon-area i {
  color: #4e57d4;
  font-size: 80px;
  margin-bottom: 20px;
}
.content p {
  color: #6f6b80;
  width: 60%;
  margin: auto;
}
.person {
  position: relative;
  width: 100px;
  height: 100px;
  display: block;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  margin-top: 50px;
  top: -50px;
}
.person img {
  width: 100%;
  height: 100%;
}
.content h5 {
  position: relative;
  top: -40px;
  font-weight: 900;
  margin-top: 15px;
  color: #fff;
}

.content h6 {
  position: relative;
  top: -40px;
}

.testimonial-area {
  background: url('../assets/images/3274.jpg') no-repeat center center/cover;
}
.carousel-indicators {
  bottom: -20px;
}
.carousel-indicators [data-bs-target] {
  width: 60px;
  height: 10px;
  background-color: #6970dd;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-header p {
    width: 85%;
  }
  .content p {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .testimonial-area {
    padding: 30px 0;
  }
  .section-header p {
    width: 95%;
  }
  .content p {
    width: 100%;
  }
  .icon-area i {
    font-size: 50px;
  }
}

.ri-double-quotes-l {
  font-size: 40px;
  color: #6970dd;
  position: relative;
  opacity: 0.3;
  left: -390px;
  padding: 0;
  /* bottom: -55px; */
}

.text {
  top: -40px;
  position: relative;
  color: #fff;
}

.ri-double-quotes-r {
  font-size: 40px;
  color: #6970dd;
  position: relative;
  opacity: 0.3;
  right: -360px;
  margin: 0;
  top: -80px;
}

footer {
  background: var(--c-dark);
  padding: 86px 0;
}
.single-content {
  text-align: center;
  padding: 115px 0;
}
.single-box p {
  color: #fff;
  line-height: 1.9;
}
.single-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.single-box .card-area i {
  color: #ffffff;
  font-size: 20px;
  margin-right: 10px;
}
.single-box ul {
  list-style: none;
  padding: 0;
}
.single-box ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 2.5;
  font-weight: 100;
}
.single-box h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
#basic-addon2 {
  background: #fe1e4f;
  color: #fff;
}
.socials i {
  font-size: 18px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .single-box {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-box {
    margin-bottom: 50px;
  }
}
