﻿@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

main {
  flex: 1;
}

.bg-body {
  background-color: #f3f3f1 !important;
}

.shadow {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

.layout {
  background: #f3f3f1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.text-light {
  color: #7e8299 !important;
}

.text-700 {
  color: #5e6278;
}

.k-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 1.5rem;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 14px;
}
.k-btn:focus {
  outline: none;
  box-shadow: none;
}

.k-btn-primary {
  background-color: #9a2f37;
  color: #fff;
  border-color: #9a2f37;
}
.k-btn-primary:hover {
  background-color: #811e25;
}

.k-btn-outline-primary {
  background-color: #fff;
  color: #9a2f37;
  border-color: #9a2f37;
}
.k-btn-outline-primary:hover {
  background-color: #9a2f37;
  color: #fff;
}

.heading {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8b817a;
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  flex-direction: column;
  gap: 10px;
}
.heading h1 {
  letter-spacing: 3px;
  font-weight: bold;
}
.heading h2 {
  font-size: 2rem;
}
@media (max-width: 575px) {
  .heading {
    display: none;
  }
}

.navbar-toggler {
  color: #fff;
}
.navbar-toggler:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}

.navbar {
  background-color: #1e1e1e;
}
.navbar .nav-link {
  color: #fff;
  padding: 10px 20px !important;
  letter-spacing: 1px;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #fff;
  background-color: #8b817a;
}
@media (min-width: 992px) and (max-width: 1400px) {
  .navbar .nav-link {
    padding: 10px !important;
  }
}
.navbar .nav-item {
  padding: 5px 5px;
}

.carousel-inner {
  height: 500px;
}
.carousel-inner .carousel-item img {
  width: 100%;
  height: 500px;
}
.carousel-inner .carousel-item video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .carousel-inner {
    height: 400px;
  }
}

.news-wrapper {
  display: flex;
  flex-direction: column;
  animation: scroll-roller 50s linear infinite;
  animation-delay: 5s; /* ⏱️ Delay animation start by 5 seconds */
  animation-fill-mode: both; /* Ensures initial state is held before the animation starts */
}

/* ✅ Pause animation on hover */
.news-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scroll-roller {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.h-max {
  max-height: 700px; /* Limit the height of the entire news section */
  overflow: hidden;
}

.new-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.new-list a {
  color: #9a2f37;
  display: inline-block;
  margin-bottom: 5px;
}
.new-list li:not(:last-child) {
  padding-bottom: 15px;
}

.line-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-3 p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.link-item {
  text-decoration: none;
  padding: 15px;
  display: inline-block;
  transition: 0.3s;
}
.link-item h6 {
  color: #1e1e1e;
}
.link-item p {
  color: #6f6f6f;
}
.link-item:hover {
  background: #8b817a;
}
.link-item:hover h6,
.link-item:hover p {
  color: #fff !important;
}

.top-50px {
  top: 50px;
}

.news-link {
  transition: 0.3s;
  padding: 10px;
}
.news-link p {
  color: #6f6f6f;
}
.news-link:hover {
  background-color: #e4e4d9;
}

.item-link {
  background: #fff;
  border: 1px solid #f1f1f2;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  cursor: pointer;
}
.item-link span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: max-content;
  gap: 5px;
  font-size: 20px;
}
.item-link span::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #f3f3f1;
  display: block;
  border-radius: 3px;
}
.item-link:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.line-h-30 {
  line-height: 30px;
}

.team-card {
  border-radius: 20px;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  padding: 35px 20px;
}
.team-card .team-card-img {
  width: 200px !important;
  aspect-ratio: 1/1;
  padding: 2px;
  border-radius: 50%;
  border: 1px solid #9a2f37;
  overflow: hidden;
}
.team-card .team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.card-title-wrapper {
  display: grid;
  grid-template-columns: 60px auto;
  gap: 10px;
}
.card-title-wrapper.vertical {
  grid-template-columns: auto;
  place-content: center;
  text-align: center;
  justify-items: center;
}

.nav-pills .nav-link {
  color: #3f4254;
}
.nav-pills .nav-link.active {
  background-color: #9a2f37;
}

.p-item {
  padding: 1rem 0;
}
.p-item:not(:last-child) {
  border-bottom: 1px solid #e1e3ea;
}

.facilities {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 30px;
  padding: 20px 0;
}
.facilities:not(:last-child) {
  border-bottom: 1px solid #e1e3ea;
}
.facilities img {
  width: 300px;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .facilities {
    grid-template-columns: auto;
  }
  .facilities img {
    width: 100%;
  }
}

.social-media-list .social-links {
  justify-content: center !important;
}

.list-item i::before {
  color: #9a2f37;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 auto;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid #9a2f37;
  color: #9a2f37;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
  background: #9a2f37;
  color: white;
}

footer {
  height: 80px;
  background: #8b817a;
  padding: 20px 50px;
}
footer .footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 10px;
}
footer .footer p {
  margin: 0;
  flex: 1 1 auto;
  text-align: left;
}
@media (max-width: 768px) {
  footer .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer p,
  footer .footer .social-links {
    flex: unset;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: 5px 0;
  }
  footer .footer .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  footer {
    height: 90px;
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
#contact {
  width: 100%;
  height: 100%;
}
#contact .section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 300 60px "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 6px;
}
#contact .contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
}
@media screen and (max-width: 1300px) {
  #contact .contact-wrapper {
    flex-direction: column;
  }
}
#contact .form-horizontal {
  max-width: 400px;
  font-family: "Lato";
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1300px) {
  #contact .form-horizontal {
    margin: 0 0;
  }
}
#contact .form-control,
#contact textarea {
  max-width: 400px;
  letter-spacing: 1px;
}
@media screen and (max-width: 569px) {
  #contact .form-control,
  #contact textarea {
    margin: 0 auto;
  }
}
#contact .send-button {
  color: white;
  margin-top: 15px;
  height: 34px;
  width: 100%;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  background: #9a2f37;
}
@media screen and (max-width: 410px) {
  #contact .send-button {
    width: 99%;
  }
}
#contact .alt-send-button {
  width: 400px;
  height: 34px;
  transition: all 0.2s ease-in-out;
}
#contact .alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}
#contact .send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
}
#contact .direct-contact-container {
  max-width: 400px;
}
@media screen and (max-width: 1300px) {
  #contact .direct-contact-container {
    margin: 60px auto 0;
    max-width: 300px;
  }
}
@media screen and (max-width: 569px) {
  #contact .direct-contact-container {
    float: none;
    margin: 60px auto 0;
    max-width: 280px;
  }
}
#contact .contact-list {
  list-style: none;
  margin-left: -10px;
  padding-right: 20px;
}
#contact .contact-list .list-item {
  line-height: 4;
}
#contact .contact-list .contact-text {
  font: 300 15px "Lato", sans-serif;
}
#contact .contact-list .contact-text a {
  color: black;
  text-decoration: none;
  transition-duration: 0.2s;
}
#contact .contact-list .contact-text a:hover {
  color: #9a2f37;
  text-decoration: none;
}
#contact .contact-list .place {
  margin-left: 12px;
}
#contact .contact-list .phone {
  margin-left: 12px;
}
#contact .contact-list .gmail {
  margin-left: 12px;
}
#contact .social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  left: 0;
}
#contact .social-media-list li {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  background-color: rgb(27, 27, 27);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#contact .social-media-list li a {
  font-size: inherit;
}
#contact .social-media-list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all 0.2s ease-in-out;
}
#contact .social-media-list li:hover {
  background-color: #fff;
}
#contact .social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}
#contact .social-media-list li:hover a {
  color: #000;
}
@media screen and (max-width: 569px) {
  #contact .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  #contact .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}
#contact .copyright {
  font: 200 14px "Oswald", sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}
#contact hr {
  border-color: rgba(255, 255, 255, 0.6);
}

.map {
  border-radius: 20%;
  margin-top: 20px;
}

.login-container {
  background: rgba(139, 129, 122, 0.2); /* #8b817a with 80% opacity */
  padding: 70px 30px 30px 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  width: 380px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  margin: 50px auto;
}

.login-header {
  background: #9a2f37;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.input-group {
  margin-top: 20px;
  position: relative;
  width: 100%;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-bottom: 2px solid #9a2f37;
  border-radius: 25px;
  background: transparent;
  color: black;
  outline: none;
  font-size: 14px;
  padding-left: 40px;
  box-sizing: border-box;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 18px;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-top: 10px;
}

.remember-forgot a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-style: italic;
  transition: color 0.3s ease;
}

.remember-forgot a:hover {
  color: #9a2f37;
}

.login-btn {
  width: 50%;
  padding: 12px;
  border: none;
  background: #9a2f37;
  color: black;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  margin-top: 20px;
  transition: 0.3s;
  font-weight: bold;
  text-transform: uppercase;
}

.login-btn:hover {
  background: none;
  border: 2px solid #9a2f37;
  color: #9a2f37;
}

.DisableItems input, .DisableItems button {
  pointer-events: none;
  opacity: 0.5;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: 5px;
  font-size: 12px;
  color: black;
}
