@import url(var.css);
.hero-slider {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0.35);
  padding: 40px 20px;
  width: 100%;
  height: 100%;
}

.slide-content .slider-inner-cont{
  max-width: 100%;
  width: 600px;
  padding: 30px 15px;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.144);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.slide-content h1, .slide-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
  width: 100%;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  width: 100%;
  text-align: left;
}

.slide-content .cta-cont{
  width: 100%;
  display: flex;
}
.slide-content a:hover {
  background: #ffc107;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 3;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--pri-col);
}



/*newsletter*/

.news-letter-sb{
  width: 100%;
  margin: 30px 0;
  position: relative;
}

.news-letter-bg-img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.news-letter-sb .news-letter-form{
  width: 100%;
  padding: 30px 10px;
  background-color: rgba(0, 0, 0, 0.35);
  gap: 20px;
  align-items: center;
  color: #fff;
  justify-content: center;
}

.news-letter-sb .news-letter-form h2{
  font-size: 40px;
  color: var(--pri-col);
}




/* KYALA ASSOCIATES START ************** */

.kyala-section {
  background: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--n-fam);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.kyala-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.kyala-container:hover {
  transform: translateY(-5px);
}

.kyala-content {
  flex: 1 1 400px;
  padding: 40px;
}

.kyala-title {
  font-family: var(--h-fam);
  font-size: 2rem;
  color: var(--pri-col);
  margin-bottom: 10px;
}

.kyala-subtitle {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.kyala-text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.kyala-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.kyala-list li {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.kyala-btn {
  display: inline-block;
  background: var(--pri-col);
  color: #fff;
  padding: 12px 25px;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-bottom: 15px;
}

.kyala-btn:hover {
  background: var(--hover);
  color: var(--sec-col);
  transform: translateY(-3px);
}

.kyala-image {
  flex: 1 1 300px;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kyala-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* KYALA ASSOCIATES END ************** */





/*******************LOCATION START ***********************/



.location-sect{
  width: 100%;
  padding: 40px 10px;
  margin: 40px 0;
  gap: 30px;
}

.location-sect .location-info{
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
  flex-wrap: wrap;
}

.location-sect, .location-info .left{
  display: flex;
  flex-direction: column;
}

.location-info .left{
  max-width: 100%;
  width: 400px;
  gap: 20px;
}




/*******************LOCATION END ***********************/




/*contact page START*************************/

.contact-main {
  padding: 150px 20px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction:column;
  gap:30px;
  justify-content: center;
  align-items: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(15px);
}

.contact-info {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  background: rgba(75, 75, 75, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.info-card:hover {
  background: rgba(204, 204, 204, 0.2);
  transform: translateY(-5px);
}

.info-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-card p a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-form {
  max-width: 100%;
  width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}




/*contact page END*************************/





/***************ABOUT PAGE START ****************/

.about-main {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--h-fam);
  padding: 150px 20px;
  overflow-x: hidden;
  position: relative;
}

.about-main::before{
  content: '';
  position: fixed;
  right: -30%;
  top: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: var(--pri-col);
  opacity: 0.2;
}


.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-header{
  width: 100%;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  min-height: 250px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fef8f3, #f9f9f9);


}

.about-header .about-header-cont{
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  gap: 20px;
  flex-wrap: wrap;
}
.about-header .about-header-cont img{
  width: 80px;
  object-fit: contain;
}



.about-intro h1 {
  font-size: 2.5rem;
  color: var(--pri-col);
  margin-bottom: 15px;
}

.about-intro .about-descs{
  max-width: 100%;
  width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-intro .about-descs h3{
  padding: 15px;
  position: relative;
  background-color: var(--pri-col);
  overflow: hidden;
  margin-top: 20px;
  color: #fff;
}

.about-descs h3::before{
  content: "";
  width: 1000px;
  height: 1000px;
  background-color: var(--bg-page);
  position: absolute;
  top: -400%;
  left: 30%;
  rotate: 40deg;
}

.about-descs h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32%;
  height: 4px;
  background-color: var(--hover);
}


.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-values{
  width: 100%;
  padding: 30px 10px;
  margin: 50px 0;
}

.about-values h2,
.about-team h2 {
  font-size: 2rem;
  color: var(--sec-col);
  margin-bottom: 30px;
}

.about-team h2{
  text-align: center;
  margin-bottom: 70px;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 16px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.value-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}


.mission-vision{
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin: 50px 0;
  position: relative;
  z-index: 1;
}

.mission-vision div{
  max-width: 100%;
  width: 400px;
  background-color: var(--bg-page);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 3px solid var(--pri-col);
  border-radius: 3px;
  box-shadow: 2px 4px 8px 4px rgba(0,0,0,0.08);
}

.mission-vision div h3{
  font-size: 25px;
}

/* Team Section */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 50px 20px 70px 20px;
  max-width: 95%;
  width: 250px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.team-card img{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.team-card .avatar {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--pri-col);
  color: #fff;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.team-card h3 {
  margin-bottom: 5px;
  color: var(--sec-col);
}

.team-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}



/***************ABOUT PAGE END ****************/



/***************** TOS AND PRIVACY POL ****************/


.legal-wrapper {
  max-width: 950px;
  margin: 100px auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.legal-section {
  margin-bottom: 4rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #111;
  margin-bottom: 1.2rem;
  border-bottom: 3px solid #0077b6;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.legal-section h2 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #0077b6;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-section p {
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.legal-section a:hover {
  text-decoration: underline;
}

.effective-date {
  font-style: italic;
  color: #555;
  margin-top: 2rem;
  border-top: 1px solid #eee;
  padding-top: 0.8rem;
}




/***************** TOS AND PRIVACY POL ****************/

@media screen and (max-width: 764px) {
    .hero-slider{
        height: 650px;
    }
    .filters {
      position: fixed;
      top: -100%;
      z-index: 999;
    }
    .filters.hang{
      top: -100%;
    }
    .filters.hang.active{
      top: 5%;
    }

    .filters-toggle-res{
      display: flex;
    }
    .filters .fa-xmark{
      display: block;
    }
    .about-descs h3::before{
      display: none;
    }
    .about-descs h3::after{
      width: 100%;
    }
    .about-main::before{
      right: -110%;
    }
}