
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins",  sans-serif;
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #CF7D32; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #CF7D32; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000000; /* Used as the background color for mobile navigation menu */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #fff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 45px;
  margin-right: 8px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: #000;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 80px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
  color: #fff;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.whatsapp-btn-wrapper {
  position: fixed;
  right: 1%;
  bottom: 4em;
  z-index: 99;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: unset;
}

/*--------------------------------------------------------------
# Form Css
--------------------------------------------------------------*/


form#banner_frm {
  position: absolute;
  right: 0;
  top: 17%;
  z-index: 99;
  background-color: #fff;
  width: 340px;
  padding: 25px;
}

form#banner_frm {
  position: absolute;
  right: 0;
  top: 17%;
  z-index: 99;
  background-color: #fff;
  width: 340px;
  padding: 25px;
}

form#banner_frm input#bf-submit {
    background-color: #2980b4;
    color: #fff;
    width: 100%;
    margin-top: 8px;
    padding: 8px 0;
    border: 0;
}

button#bf_refresh_captcha {
    margin-left: 15px;
    background-color: #2980b4;
    color: #fff;
    font-size: 20px;
    border: 0;
}

form#banner_frm .col.col-capcha-text {
  max-width: 80px;
}

form#banner_frm .col.col-capcha-label {
  max-width: 100px;
}

label.form-check-label {
  font-size: 12px;
}

form label.error {
  display: none !important;
}

.form-control.error, .form-select.error {
  border-color: #ff0000;
}
.form-check.mt-2 {
  padding-left: 15px;
}
label.form-check-label {
  font-size: 10px;
  line-height: 12px;
}

input.form-check-input {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}


.enq-btn{
    background: #2980b4;
    padding: 8px 20px;
    margin-left: 10px;
    border-radius: 4px;
    color: #fff;
}

.enq-btn:hover, .enq-btn:focus:hover {
  color: #fff;
  background: #CF7D32;
}

#exampleModal .modal-dialog {
  max-width: 350px;
}

#popup_model_frm .col.col-capcha-text {
  max-width: 80px;
}

#popup_model_frm .col.col-capcha-label {
  max-width: 100px;
}

button#pf_refresh_captcha {
    padding: 0 8px;
    margin-left: 8px;
    background-color: #2980b4;
    color: #fff;
    font-size: 18px;
    border: 0;
}

input#pf-submit {
  width: 100%;
  color: #fff;
  border: 0;
  background-color: #2980b4;
  border: 0;
  padding: 8px 0;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h3.sub-heading {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 0;
}
.w-text{
  color: #fff;
}
.y-text{
  color: #CF7D32;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0;
  margin-top: 6em;
}

img.banner-vector {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 73px;
  /* margin: 0 auto; */
}

img.banner-vector-2 {
  width: 71%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 73px;
  margin-left: 8%;
  /* margin: 0 auto; */
}
#hero .carousel-item {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 88vh;
}

#hero .carousel-inner .carousel-item.slider-1 {
  background-image: url(../img/d2.jpg) !important;
}

#hero .carousel-inner .carousel-item.slider-2 {
  background-image: url(../img/d1.jpg) !important;
}
.banner-vector, .banner-vector-2{
    DISPLAY:NONE !IMPORTANT;
}
#hero  .carousel-item .txt-block {
  background-color: #3c3c3c;
  position: absolute;
  top: auto;
  bottom: -8px;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
#hero  .carousel-item .txt-block h2 {
  font-size: 38px;
  color: #fff;
  margin-right: 1em;
  text-transform: uppercase;
}
#hero .carousel-item .txt-block span {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
}
#hero .carousel-indicators {
  margin-bottom: 5rem;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about-youthville {
  background-color: #000;
  color: #fff;
  height: 560px;
  position: relative;
}
#about-youthville img {
  width: 300px;
  margin-left: 90px; /* Add this line */
}
img.arrow-vector {
  position: absolute;
  left: -240px;
  right: 0;
  top: 30px;
  bottom: auto;
  width: 160px !important;
}
.facilities-icons{
  position: relative;
}
img.arrow-vector-2 {
  position: absolute;
  left: auto;
  right: -130px;
  top: -255px;
  bottom: auto;
  width: 240px !important;
  z-index: 1;
}


/*--------------------------------------------------------------
#  facilities Section
--------------------------------------------------------------*/
section#facilities {
  z-index: -1;
  position: relative;
  min-height: 400px; /* Adjust height as needed */
  padding: 60px 0 20px; /* Top: 60px, Bottom: 40px */

}

section#facilities img {
  width: 400px;
  position: relative;
  left: 10%;
  margin-top: 20px; /* Adjust the value as needed */
}


.facilities-icons {
  background-color: #000;
  height: 547px;
}
.facilities-icons figure.icon-box {
  color: #fff;
}
.swiper.facilities-slider {
  padding: 10% 0;
}
.icon-box figcaption {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1em;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
a.video-lightbox i.bi.bi-play-fill {
    position: absolute;
    left: 0;
    right: 0;
    top: 42%;
    text-align: center;
    color: #fff;
    background-color: #2980b4;
    width: 40px;
    margin: 0 auto;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

#testimonials .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.82);
}
#testimonials .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
#testimonials .swiper-slide img { height: auto; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #3C3C3C;
  font-size: 16px;
  padding: 6em 0 4em;
  position: relative;
  text-transform: uppercase;
}


.footer-img-main {
  width: 420px;
  margin-bottom: 10px;
}

.footer-img-sub {
  width: 140px;
  margin-left: 120px;
  margin-top: -120px; /* Move it up closer */
  position: relative;
}


.footer h6 {
  color: #fff;
}

ul.list-unstyled.locations-list {
  display: flex;
  flex-wrap: wrap;
}

ul.list-unstyled.locations-list li {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
ul.list-unstyled.locations-list a{
  color: #fff;
}
ul.list-unstyled.locations-list a:hover{
  color: #CF7D32;
}

.contact-list a{
  color: #fff;
}
.contact-list a:hover{
  color: #CF7D32;
}
.footer .social-links {
  margin: 0;
}

.footer .social-links li {
  margin: 0 15px 0 0;
}
.footer .social-links a {
  color: #2980b4;
}
.footer .social-links a:hover { 
  text-decoration: none;
  color: #CF7D32;
}

#otpModal,
#otpModal .modal-dialog,
#otpModal .modal-content {
  z-index: 20000 !important;
}

.modal-backdrop.otp-backdrop {
  z-index: 19999 !important;
}



