body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #ffffffff;
}

a:hover {
  color: #eca9f5e8;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  padding: 25px 0;
  z-index: 10;
  position: relative;
}

#header .logo h1 {
  font-size: 35px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 66px;
}

.logo h1 {
  display: flex;
  align-items: center;
  gap: 10px; 
}



@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# faded back container
--------------------------------------------------------------*/
.back-container {
  position: relative;       
  width: 90%;               
  max-width: 1500px;   
  min-height: 500px;        
  margin: 0 auto;           
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 75px 20px;

  background: rgba(36, 33, 33, 0.53);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  margin-top: 45px
}



#back .back-container .content {
  width: 100%;
  max-width: 1100px; 
}

#who-are-we .back-container .content {
  width: 100%;
  max-width: 1250px
}

#who-are-we .back-container .content {
  width: 100%;
  max-width: 1250px
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(34, 34, 34, 0.8);
  transition: 0.4s;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffffff;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #9e9696ff;
  text-decoration: none;
}

.nav-menu-active {
  right: 0;
}

.nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: rgba(34, 34, 34, 0.5);
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 10px 12px;
  border-radius: 2px;
}

.nav-toggle i {
  color: #fff;
  font-size: 18px;
}

.nav-toggle-active {
  right: 275px;
  color: #9e9696ff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #884922;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #007f7f;
}

.navbar .getstarted {
  background: #007f7f;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #00ffff;
}



/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #743e1d;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(75, 40, 19, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #743e1d;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #007f7f;
}

.navbar-mobile .getstarted {
  margin: 15px;
}



#main {
  width: 100%;
  min-height: 100vh; /* full viewport height */
  background: url("../img/background2.jpg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed; /* keeps the image still on scroll */
  position: relative;
  margin-top: -80px;
  z-index: 9;
  padding: 100px 0; /* breathing space */
}
/*--------------------------------------------------------------
# Back Section
--------------------------------------------------------------*/
#back {
  width: 100%;
  min-height: 100vh; /* allow it to grow with content */
  background: url("../img/background2.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: -80px;
  z-index: 9;
  padding: 100px 0; /* add top and bottom breathing room */
}


#back .back-container + .back-container {
  margin-top: 100px;   
}



#back h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  line-height: 56px;
  color: #f8f5f7ff;
}

#back h2 {
  color: #ffffffff;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 500;

}

#back p {
  color: #ffffffff;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;

}

#back .redirect-buttons button[type="submit"] {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 15px 150px;
  border-radius: 50px;
  margin: 10px;
  border: none;
  color: #fff;

  /* Transparent gradient with purple and orange shades */
  background: linear-gradient(
    to right,
    rgba(182, 138, 255, 0.5) 0%,   /* light purple with 50% opacity */
    rgba(255, 183, 108, 0.45) 51%, /* soft orange with 45% opacity */
    rgba(255, 120, 200, 0.4) 100%  /* pinkish-orange at the end with 40% opacity */
  );

  margin-top: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;

  /* Subtle glass effect */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); /* softer glow */
  border: 1px solid rgba(255, 255, 255, 0.2);

  width: 100%;
  max-width: 370px;
  box-sizing: border-box;
}

#back .redirect-buttons button[type="submit"]:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25); /* slightly brighter glow */
}




@media (min-width: 1024px) {
  #back {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #back h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #back h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0px;
  }
  #back .redirect-buttons input {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  position: relative;       
  width: 100%;               
  margin: 0 auto;           
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 75px 20px;

  background: rgba(36, 33, 33, 0.53);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  font-weight: bold; 
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 75px;          /* total width of the line */
  height: 2px;
  background: #fff;
  bottom: 0;
  left: 50%;            
  transform: translateX(-50%); 
}


.section-title p {
  margin-bottom: 0;
  font-style: italic;
  color: #ffffffe8;
  font-size: 16px;
  font-weight: bold; 
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 300;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #53346D;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Who are We
--------------------------------------------------------------*/


/*
.who-are-we {
  padding-bottom: 30px;
}

.who-are-we .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.49);
  margin-bottom: 30px;
}

.who-are-we .card-icon {
  text-align: center;
  margin-top: -32px;
}

.who-are-we .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 10px;
  text-align: center;
  background-color: #53346D;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  transition: 0.3s;
  display: inline-block;
}

.who-are-we .card-body {
  padding-top: 12px;
}

.who-are-we .card-title {
  font-weight: 700;
  text-align: center;
}

.who-are-we .card-title a {
  color: #743e1d;
}

.who-are-we .card-title a:hover {
  color: #007f7f;
}

.who-are-we .card-text {
  color: #5e5e5e;
  text-align: center;
}

.who-are-we .card:hover .card-icon i {
  background: #fff;
  color: #007f7f;
}

@media (max-width: 1024px) {
  .who-are-we {
    background-attachment: scroll;
  }
}
*/







/*-------------------------------------------------------------------------------*/

.who-are-we .card {
  border-radius: 10px;
  border: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: transform 0.7s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: #1d2124e3;
}

.who-are-we-box {
  background-color: rgba(53, 51, 51, 0); 
  border-radius: 20px;
  padding: 30px 20px 20px 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  backdrop-filter: blur(4px); 
}

.who-are-we .card img {
  width: 100%;
  border-bottom: 5px solid #15191bec;
  background-color: #15191bec;
  background: #15191bec;

  padding: 30px;
  object-fit: cover;
}

.who-are-we .card-body {
  background-color: rgba(53, 51, 51, 0); 
  padding-top: 12px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.who-are-we .card-icon {
  text-align: center;
  margin-top: -32px;
}

.who-are-we .card-icon i {
  font-size: 32px;
  color: rgba(53, 51, 51, 0); 
  width: 64px;
  height: 64px;
  padding-top: 10px;
  background-color: #15191bff; 
  color: #ffffffff !important;
  border-radius: 50%;
  border: 4px solid #fff;
  display: inline-block;
  transition: 0.7s;
}

.who-are-we .card:hover .card-icon i {
  background-color: #ffffffff !important;
  color: #ffffff !important;;
  box-shadow: 0 0 12px rgba(0, 127, 127, 0.3);

}

.card-img-container {
  background-color: rgba(53, 51, 51, 0); 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.card:hover .card-img-container {
  background: linear-gradient(
    to right,
    rgba(201, 20, 0, 0.57) 0%,    /* warm reddish-orange */
    rgba(206, 79, 0, 0.6) 50%, /* soft warm orange */
    rgba(180, 0, 108, 0.59) 100%  /* pale golden-orange */
  );
  transition: background 0.3s ease; /* smooth hover effect */
}

.card:hover {
  background: linear-gradient(
    to right,
    rgba(201, 20, 0, 0.57) 0%,    /* warm reddish-orange */
    rgba(206, 79, 0, 0.6) 50%, /* soft warm orange */
    rgba(180, 0, 108, 0.59) 100%  /* pale golden-orange */
  );
  transition: background 0.3s ease; /* smooth hover effect */
}


.profile-img-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card:hover .profile-img-wrapper {
    border: none;
}



.profile-img {
  min-width: 123%;
  min-height: 123%;
  object-fit: cover;
  object-position: center;
}


/* Text styling */
.who-are-we .card-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f4e66;
}

.who-are-we .card-title a {
  color: #ffffffdc;
  text-decoration: none;
}

.who-are-we .card:hover .card-title a {
  text-decoration: underline;
}

.who-are-we .card-text {
  color: #ffffffff;
  font-size: 14.5px;
  line-height: 1.5;
}

.who-are-we .card:hover .card-icon i {
  background: linear-gradient(
    to right,
    rgba(212, 83, 68, 0.99) 0%,    /* warm reddish-orange */
    rgba(226, 134, 77, 1) 50%, /* soft warm orange */
    rgba(235, 87, 176, 1) 100%  /* pale golden-orange */
  );
  transition: background 0.7s ease; /* smooth hover effect */
}


.who-are-we .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}




.collapse-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.toggle-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;          
  height: 90px;
  font-size: 40px;      
  background-color: rgba(53, 51, 51, 0.8);
  border: 2px solid white;
  border-radius: 50%;    
  color: #ffffff;
  font-weight: bold;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.toggle-button:hover {
  background: linear-gradient(
    to right,
    rgba(182, 138, 255, 0.5) 0%,   
    rgba(255, 183, 108, 0.45) 51%, 
    rgba(255, 120, 200, 0.4) 100%  
  );
  transform: scale(1.2);
  color: #1f4e66;
  border: none; 
  border-color: rgba(200, 140, 170, 0.8);
}








/*--------------------------------------------------------------
# video
--------------------------------------------------------------*/
.video-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  flex-wrap: wrap;
}


.video-wrapper {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(116, 62, 29, 0.4);
  max-width: 900px;
  width: 120%;
  min-height:750px; 

}


#videoFrame {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}



.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
}



/* Video description section */
.card-videoDescription {
  margin-top: 15px;
  font-size: 16px;
  color: #eee;
  background-color: #222;
  padding: 12px 18px;
  border-left: 5px solid #96328da8;
  border-radius: 8px;
  text-align: left;
  min-width: 880px;     

}

#prevBtn.btn, #nextBtn.btn {
  all: unset;
}
.nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;        
  height: 70px;
  font-size: 30px;      
  background-color: rgba(53, 51, 51, 0.8);
  border: 2px solid white;
  border-radius: 50%;   
  color: #ffffff;
  font-weight: bold;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}


.nav-button:hover {
  background: linear-gradient(
    to right,
    rgba(182, 138, 255, 0.5) 0%,   
    rgba(255, 183, 108, 0.45) 51%, 
    rgba(255, 120, 200, 0.4) 100%  
  );
  transform: scale(1.3);
  color: #1f4e66;
  border: none; 
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}







/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Frequenty Asked Questions
--------------------------------------------------------------*/
.faq {
  padding-bottom: 45px;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #ffffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
    text-align: left;

}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
    text-align: left;

}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a,
.faq .faq-list a:visited,
.faq .faq-list a:link {
  color: #eca9f5e8;
  text-decoration: none;
}

.faq .faq-list a.collapsed {
  color: #ffffff;
}

.faq .faq-list a:hover {
  color: #eca9f5e8;
}

.faq .faq-list a.collapsed:hover {
  color: #eca9f5e8;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}


.content .faq {
  margin-top: 0;
  padding-top: 0;
}

.faq .pub-list a.collapsed:hover {
  color: #eca9f5e8;
}

.faq .pub-list li {
  margin-bottom: 20px;
}

.faq .pub-list {
  margin-bottom: 100px;
}

.faq .pub-list a {
  display: block;
  position: relative;
  font-family: #ffffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
  text-align: left;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(0,51,51,0.75);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}
