:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

:root {
  --background-color: #ffffff;

  --default-color: #1a1715;

  --heading-color: #110a06;

  --accent-color: #c85716;

  --surface-color: #ffffff;

  --contrast-color: #ffffff;

}

:root {
  --nav-color: rgba(255, 255, 255, 0.8);

  --nav-hover-color: #c85716;

  --nav-mobile-background-color: #ffffff;

  --nav-dropdown-background-color: #ffffff;

  --nav-dropdown-color: #1a1715;

  --nav-dropdown-hover-color: #c85716;

}

.light-background {
  --background-color: #fffaf2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252626;
  --contrast-color: #ffffff;
  background-color: rgba(0, 0, 0, 0.1);
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes*/



body {

  color: var(--default-color);

  font-family: var(--default-font);

  font-size:16px;

    background-image: url('https://aviationpath.in/assets/img/about/4.jpg'); 

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    background-attachment: fixed; 

    background-color: #333; 

    min-height: 60vh;  

}

#full-page-scaler {
    transform: scale(0.85);
    transform-origin: 0 0;
    -webkit-transform: scale(0.85); 
    -webkit-transform-origin: 0 0;
    
    width: 117.65%; 
min-height: 140vh;
    
    overflow-x: hidden;
    overflow-y: visible;
    height: auto;
}


#static-background {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    object-fit: cover; 
    transform: scale(1.1765);
    transform-origin: center center;
}

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{
  color: #ece7e4;
  font-family: var(--heading-font);
}
h2{
  color: #ece7e4;
  font-family: var(--heading-font);
}
h3{
  color: #ffffff;
  font-family: var(--heading-font);
}
h4{
  color: #ece7e4;
  font-family: var(--heading-font);
}
h5{
  color: #000000;
  font-family: var(--heading-font);
}
h6 {
  color: #ece7e4;
  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);
  }
}

.zoom75 {
  transform: scale(0.85);
  transform-origin: top left;
  width: calc(100% / 0.75);
  margin: 0 auto;
  overflow-x:hidden;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0 0 0;
}

.header .top-row {
  padding-bottom: 10px;
  padding-top:10px;
  position: relative;

}

.header .top-row .logo {
  text-decoration: none;
  text-align: left;
}

.header .top-row .logo img {
  max-height: 40px;
  margin-right: 10px;
}

.header .top-row .logo .sitename {
  font-size: 28px;
  font-weight: 400;
  color: var(--heading-color);
  font-family: var(--heading-font);
  padding-left:10px;
  margin: 0;
  text-align: left;
  position: absolute;
  left: 50%;
  transform: none;
  position:static;

}

.header .social-links a {
  color: var(--heading-color);
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--accent-color);
}

.header .social-links .header-contact-btn {
  background-color: #c85716ed !important;
  color: var(--contrast-color) !important;
  padding: 12px 25px !important;
  border-radius: 30px !important;
  font-size: 18px !important;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  z-index: 99999;
  line-height: 1.2 !important;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(200, 87, 22, 0.3);
}

.header .social-links .header-contact-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(200, 87, 22, 0.5);
}

@media(max-width: 1200px) {
  .header .social-links {
    padding-right: 40px;
  }
}



.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 5px;
}


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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  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;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 10px;
}

.page-title p {
  font-weight: 300;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color:  rgb(0 0 0 / 12%);
  padding: 60px 0;
  scroll-margin-top: 133px;
  overflow: clip;
}

@media (max-width: 576px) {

  section,
  .section {
    scroll-margin-top: 73px;
    padding: 40px 0;
  }
  
  .section-title h2 {
        font-size: 2rem; 
    }

    .section-title p {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 3.5rem;
  font-weight: 350;
  line-height: 1.2;
  color: var(--surface-color);;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color:#f76b1b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1.154rem;
  line-height: 1.8;
  color:#dedede;
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 120px 0 0 0;
  height: 117.65vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
  bottom:0;
  padding:0 0 0;
}

.hero .video-background video {
  width: 100%;
  height: 100%;
  z-index: 3;
  object-fit: cover;
}

.hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 55%);
  z-index: 2;
}

.hero h1 {
  font-size: 2.73rem !important;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.73rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.73rem;
  }
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: white, transparent 60%;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
  }
}

.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 1rem;
}

.hero .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .hero-buttons .btn.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .hero .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
    min-height: 80vh;
  }

  .hero .hero-content {
    min-height: 80vh;
  }
}

/* ===============================
    Enrollment Section - Dark Glassmorphic Style
    =============================== */
.enroll-section {
 background-color: rgb(0 0 0 / 12%) !important;
  position: relative;
  overflow: hidden;
  padding: 80px 0;

  --contrast-color: #ffffff;
}


.enroll-form .card {
  
  background-color: rgb(0 0 0 / 46%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: 20px;
  border: 1px solid #c8571654; 
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  animation: floatAnimation 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enroll-form .card:hover {
  transform: translateY(-8px); 
  box-shadow: 0 12px 40px rgba(255, 122, 0, 0.25);
}


.enroll-form .card-body {
  padding: 2.5rem; 
  color: var(--contrast-color); 
  z-index: 2;
}

.enroll-form .card-body h4 {
  color: #f77d37;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgb(205 99 1 / 50%); 
  font-family :inherit;}


.enroll-form .form-control,
.enroll-form .form-select,
.enroll-form textarea {
  background: rgba(255, 255, 255, 0.1); 
  color: var(--contrast-color); 
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px; 
  padding: 0.9rem 1.25rem;
  transition: all 0.3s ease;
}


.enroll-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family :inherit;
    
}

.enroll-form .form-control:focus,
.enroll-form .form-select:focus {
 
  background: rgba(255, 255, 255, 0.2);
  border-color: #ff7a00;
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.3);
  outline: none;
}

.enroll-form button {
  background: #bc5216;
  border: none;
  padding: 1rem 1.5rem; 
  font-size: 1.05rem;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%; 
  margin-top: 1rem;
}

.enroll-form button:hover {
  background: #e86d00;
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.5); 
}


@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px); 
  }
}


.highlight-box.gold {

  background: #ff7a00; 
  color: #fff;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight-box.white {

  background: rgb(0 0 0 / 42%);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ff8037f2;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  background-color: rgb(0 0 0 / 12%);
  padding-bottom: 60px;
}



@media (max-width: 991px) {
    .about .row > .col-lg-6{
        margin-bottom: 20px;
    }
 
  
}



.about .content p.lead {
  font-size: 1.7rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 2.5rem;
}

.about .stats-wrapper {
  display: flex;
  gap: 3rem;
  margin: -2.2rem 6px;
  padding: 2.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .stats-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.about .stats-wrapper .stat-item {
  display: flex;
  flex-direction: column;
}

.about .stats-wrapper .stat-item .number {
  font-size: 3rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.about .stats-wrapper .stat-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about .cta-wrapper {
  margin-top: 2.5rem;
}

.about .cta-wrapper .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.125rem;
  
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
  font-weight: 400;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border-radius: 10px;
  padding: 8px 20px;
}

.about .cta-wrapper .btn-link i {
  transition: transform 0.3s ease;
}

.about .cta-wrapper .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .cta-wrapper .btn-link:hover i {
  transform: translateX(4px);
}

.about .image-wrapper {
  position: relative;
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about .image-wrapper img {
  border-radius: 8px;
  box-shadow: none;
}

.about .image-wrapper .floating-element {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: transparent;
  padding: 2rem;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: none;
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-element {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.about .image-wrapper .floating-element .quote-content blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 300;
}

.about .image-wrapper .floating-element .quote-content cite {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 100%);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 60px 0;
  }
}


about {
    position: relative; 
    z-index: 2; 
}

/* --- NEW GLASSMORPHISM STYLES FOR ABOUT SECTION --- */

.glass-card {
    background-color:color-mix(in srgb, rgb(0 0 0), rgba(0, 0, 0, 0.125) 70%) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    padding: 30px; 
    margin-bottom: 20px;
    color: var(--contrast-color);
    width: 100% !important;
    height: auto !important;
    max-width: 1200px;
}

.glass-card-small {
    background-color: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem;
    color: var(--contrast-color);
}


.glass-card h2, .glass-card h3, .glass-card h4 {
    color: #e9ecefd1 !important;
}
.glass-card .content p, .glass-card .content p.lead {
    color: var(--contrast-color); 
    opacity: 0.85;
}
.glass-card .stats-wrapper .stat-item .label {
    color: var(--contrast-color);
}




/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.features .tabs-header {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .features .tabs-header {
    margin-bottom: 60px;
  }
}

.features .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 0;
  background: var(--surface-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 4px;
  }
}

.features .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.features .tabs-header .nav-tabs .nav-link {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .tabs-header .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: var(--contrast-color);
}

.features .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.features .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 12px;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.features .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.features .tab-content .content-area {
   padding:30px;
      background: 
    color-mix(in srgb, rgb(0 0 0), rgba(0, 0, 0, 0.125) 70%) !important;
    border-radius:12px;
}

@media (max-width: 992px) {
  .features .tab-content .content-area {
    padding: 25px;
    margin-bottom: 30px;
    background: 
    color-mix(in srgb, rgb(0 0 0), rgba(0, 0, 0, 0.125) 70%) !important;
  }
}

.features .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, #ff8d4b, transparent 62%);
  color: #ff6e1a;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.features .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.features .tab-content .content-area h3 {
  font-size: 36px;
  font-weight: 370;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .features .tab-content .content-area h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .features .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.features .tab-content .content-area p {
  font-size: 17px !important;
  line-height: 1.7;
  color: #ffffffd9;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .features .tab-content .content-area p {
    font-size: 15px;
  }
}

.features .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .features .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.features .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .features .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.features .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.features .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.features .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.features .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.features .tab-content .content-area .feature-points .point-item span {
  font-size: 15.5px;
  line-height: 1.6;
  color: #ececec;
}

.features .tab-content .content-area .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.features .tab-content .content-area .explore-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.features .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.features .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.features .tab-content .visual-content {
  position: relative;
  padding-left: 40px;
}

@media (max-width: 992px) {
  .features .tab-content .visual-content {
    padding-left: 0;
    position: relative;
  }
}

.features .tab-content .visual-content img {
  width: 100%;
  border-radius: 8px;
}

.features .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.features .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.features .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.features .tab-content .visual-content .floating-element .floating-card .card-info span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.features .tab-content .visual-content .floating-element .floating-card .card-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .features .tab-content .visual-content .floating-element .floating-card .card-info strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# Features Cards Section (Pastel Theme & 3x2 Grid)
--------------------------------------------------------------*/

.features-cards { 
  display: grid;
  
  /* FIX: 3 cards per row for desktops */
  grid-template-columns: repeat(3, 1fr); 
  
  gap: 30px; 
  max-width: 1100px;
  margin: 0 auto 80px auto;
  padding: 0 15px; 
}

@media (max-width: 1199px) { 
  .features-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px; 
    gap: 20px;
  }
}

@media (max-width: 768px) { 
  .features-cards {
    /* Switch to 2 columns for tablets */
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 20px;
  }
}

@media (max-width: 575px) { 
  .features-cards {
    /* Single column for mobile */
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 15px;
  }
}

/* --- Individual Feature Card Styling --- */
.feature-card { 
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* NEW PASTEL STYLING */
  background-color: var(--surface-color); /* Pure white card */
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.08), /* Very soft shadow for floating effect */
    inset 0 0 0 1px rgba(0, 0, 0, 0.03); /* Almost invisible inner border */
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px; /* Reduced internal padding */
  color: var(--default-color); 
}

.feature-card:hover {
  transform: translateY(-5px); 
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15), 
    inset 0 0 0 1px rgba(0, 0, 0, 0.05); 
}


/* --- Icon Styling (Pastel Orange Circles) --- */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; 
    height: 38px;
    border-radius: 50%;
    /* Pastel orange background */
    background-color: color-mix(in srgb, var(--accent-color), transparent 50%); 
    color: var(--contrast-color);
    font-size: 16px;
    margin-bottom: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
}

.icon-circle .icon {
    width: 20px; 
    height: 20px;
    /* This ensures your SVGs turn white (contrast-color) against the pastel orange background */
    fill: var(--contrast-color); 
}


/* --- Card Text Content --- */
.feature-card .card-title {
  font-size: 20px; 
  font-weight: 600; 
  color: var(--heading-color); 
  margin: 0 0 5px 0; 
  line-height: 1.2;
}

.feature-card .card-description {
  font-size: 14px; 
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.5;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 0;
}

.call-to-action .container {
  padding: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px;
  }
}

.call-to-action .content h3 {
  font-size: 48px;
  font-weight: 700;
}

.call-to-action .content h3 em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

.call-to-action .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  z-index: -1;
}

.call-to-action .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 400;
  font-size: 18px;
}

.call-to-action .content .cta-btn {
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: var(--accent-color);
}

.call-to-action .content .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.call-to-action .img {
  position: relative;
}

.call-to-action .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-radius: 15px;
  transform: rotate(6deg);
  z-index: 2;
}

.call-to-action .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
}

.call-to-action .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  z-index: 3;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, #ffffffe3, transparent 60%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
    transition-timing-function: linear !important;
  height: auto;
}


.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: color-mix(in srgb, #ffffffe3, transparent 60%) !important;
  border-radius: 90px !important;
 
  
 
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color:  #ff640c;
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 5px 20px;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 389;
  color: #ffffff;
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0px 62px 18px 105px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: white;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding-top: 60px;
  padding-bottom: 60px;
}

.team .member-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.team .member-card:hover .member-media .social-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team .member-card .member-media {
  position: relative;
  aspect-ratio: 1/1;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.team .member-card .member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team .member-card .member-media .social-list {
  list-style: none;
  position: absolute;
  inset-inline: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  background: color-mix(in srgb, var(--background-color), var(--accent-color) 6%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 8px 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.team .member-card .member-media .social-list a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--default-color);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.team .member-card .member-media .social-list a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  transform: translateY(-2px);
}

.team .member-card .member-content {
  padding: 18px 18px 22px;
}

.team .member-card .member-content .member-name {
  font-size: 1.05rem;
  margin: 0 0 4px 0;
  color: black;
}

.team .member-card .member-content .member-role {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.team .member-card .member-content .member-bio {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.team .team-highlight {
  background: radial-gradient(1200px 300px at 20% -10%, color-mix(in srgb, var(--accent-color), transparent 82%), transparent 60%), radial-gradient(900px 300px at 120% 110%, color-mix(in srgb, var(--accent-color), transparent 86%), transparent 60%), var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 14px;
  padding: 22px 22px;
}

.team .team-highlight .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-right: 14px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-highlight .icon-wrap i {
  font-size: 1.25rem;
}

.team .team-highlight .title {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  
}

.team .team-highlight .desc {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.team .join-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(1200px 300px at 20% -10%, color-mix(in srgb, var(--accent-color), transparent 82%), transparent 60%), radial-gradient(900px 300px at 120% 110%, color-mix(in srgb, var(--accent-color), transparent 86%), transparent 60%), var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
}

.team .join-card .join-content {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.team .join-card .join-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .join-card .join-content .btn-join {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.team .join-card .join-content .btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), white 10%);
  color: var(--contrast-color);
}

.team .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .team .team-highlight .icon-wrap {
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  .team .member-card .member-content {
    padding: 16px;
  }

  .team .member-card .member-content .member-bio {
    font-size: 0.9rem;
  }

  .team .join-card .join-content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-container {
 
    padding: 60px 0;
}

.contact .contact-form-container .form-intro {
  margin-bottom: 60px;
}

.contact .contact-form-container .form-intro h2 {
  font-size: 36px;
  font-weight: 386;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro h2 {
    font-size: 28px;
  }
}

.contact .contact-form-container .form-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-form-container .contact-form .row {
  margin-bottom: 40px;
}

.contact .contact-form-container .contact-form .row:last-of-type {
  margin-bottom: 0;
}

.contact .contact-form-container .contact-form .form-field {
  position: relative;
  margin-bottom: 40px;
  
}

.contact .contact-form-container .contact-form .form-field.message-field {
  margin-bottom: 50px;
}

.contact .contact-form-container .contact-form .form-field .field-label {
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .form-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), #c85716 80%) #a54a16;
  background:#ffffff;
  padding: 20px 0 15px 0;
  font-size: 16px;
  color:#190c00;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.contact .contact-form-container .contact-form .form-field .form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.contact .contact-form-container .contact-form .form-field .form-input::placeholder {
  
  opacity: 1;
}

.contact .contact-form-container .contact-form .form-field .message-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  padding-top: 25px;
}

.contact .contact-form-container .contact-form .send-button {
  background: #c85716;
  border: 2px solid #ff8037;
  color: #120700;
  border-radius: 12px;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-container .contact-form .send-button .button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .contact-form-container .contact-form .send-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-form-container .contact-form .send-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact .contact-sidebar {
  background: color-mix(in srgb, rgb(0 0 0), rgba(0, 0, 0, 0.125) 70%);
  height: 100%;
  padding: 60px 40px;
}

.contact .contact-sidebar .contact-header {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-header h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ff8037;
  letter-spacing: -0.3px;
}

.contact .contact-sidebar .contact-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0.85;
}

.contact .contact-sidebar .contact-methods {
  margin-bottom: 60px;
}

.contact .contact-sidebar .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact .contact-sidebar .contact-method:last-child {
  margin-bottom: 0;
}

.contact .contact-sidebar .contact-method .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.contact .contact-sidebar .contact-method .contact-icon i {
  font-size: 20px;
}

.contact .contact-sidebar .contact-method .contact-details {
  flex: 1;
}

.contact .contact-sidebar .contact-method .contact-details .method-label {
  font-size: 12px;
  font-weight: 600;
  color: #ff8037;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact .contact-sidebar .contact-method .contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 0;
}

.contact .contact-sidebar .connect-section {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 40px;
}

.contact .contact-sidebar .connect-section .connect-label {
  font-size: 12px;
  font-weight: 600;
  color: #ff8037;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contact .contact-sidebar .connect-section .social-links {
  display: flex;
  gap: 15px;
}

.contact .contact-sidebar .connect-section .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color:  rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact .contact-sidebar .connect-section .social-links .social-link i {
  font-size: 16px;
}

.contact .contact-sidebar .connect-section .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact .contact-form-container {
    padding: 40px 0;
  }

  .contact .contact-sidebar {
    padding: 40px 30px;
    margin-bottom: 40px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-form-container .form-intro {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact .contact-form-container .contact-form .row {
    margin-bottom: 20px;
  }

  .contact .contact-form-container .contact-form .form-field {
    margin-bottom: 30px;
  }

  .contact .contact-sidebar {
    padding: 30px 25px;
  }

  .contact .contact-sidebar .contact-header,
  .contact .contact-sidebar .contact-methods {
    margin-bottom: 40px;
  }

  .contact .contact-sidebar .contact-method {
    margin-bottom: 30px;
  }
}


/* Fix theme sections covering mobile background */


