/* Fonts */
: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: "Roboto",  sans-serif;
    --nav-font: "Lato",  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: #1f1e1e; /* 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: #ffa500; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* 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: #000000;  /* The default color of the main navmenu links */
    --nav-hover-color: #ffa500; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ffa500; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f3f4f4;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #000000;
    --contrast-color: #ffffff;
  }
  
  /* 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);
  }
  /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
#header {
    color: var(--default-color);
    background-color: var(--accent-color);
    padding: 10px 0;
    transition: none !important; /* Remove unnecessary delay */
    margin-top: 0 !important;
    z-index: 997;
  }

  
  
  #header .logo {
    line-height: 1;
  }
  
  #header .logo img {
    max-height: 60px;
    margin-right: 8px;
  }
  
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 300;
    color: var(--heading-color);
    font-weight: bold;
    white-space: nowrap;
  }
  
  .scrolled #header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
 

  /*--------------------------------------------------------------
# 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(--contrast-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 .nav-item .nav-link{
    display:flex;
  }
  .navmenu .nav-item .nav-link i,
  .navmenu .nav-item .nav-link span{
    padding:1px;
  }
  /* Navmenu padding icn and text*/


#navmenu .nav-item .dropdown a .bi
{
 padding:1px;
}
  
}

/* 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-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-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 ul a {
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .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;
  }
  .navmenu .nav-item .nav-link{
    display:flex;
    align-items: center;
    justify-content: center;
  }
  .navmenu .nav-item a .nav-link i,
  .navmenu .nav-item a .nav-link span{
    padding:1px;
  }

}







  /*--------------------------------------------------------------
# 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);
    padding: 20px 0;
    position: relative;
  }
  
  .page-title h1 {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 5px 0;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    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 70%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
  }
  
  .section-title p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
  }
  
  .about .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }
  
  .about h1 {
    color: var(--heading-color);
    font-size: 30px;
  }
  
  .about p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  /* .about .swiper-pagination {
    position: absolute;
    bottom: 30px;
 
  }
  
  .about .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    background: #ffffff;
    opacity: 0.3;
  }
  
  .about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
  } */
  
  .about .section-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  /* Pagination for About Section */
.about .swiper-pagination {
  position: absolute;
  bottom: 30px; /* Adjust bottom distance */
  left: 50%; /* Center the pagination */
  transform: translateX(-50%); /* Center the pagination dots horizontally */
  z-index: 10;
  display: flex;
  gap: 8px;
}

.about .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff; /* White color for bullets */
  opacity: 0.3;
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color); /* Active bullet color */
  opacity: 1;
  transform: scale(1.2); /* Enlarge the active dot */
}

.about .swiper-pagination .swiper-pagination-bullet:hover {
  background-color: rgba(255, 255, 255, 0.8); /* Hover effect */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about h1 {
    font-size: 24px; /* Adjust font size for smaller screens */
  }

  .about .swiper-pagination {
    bottom: 20px; /* Adjust pagination position on mobile */
  }

  .about .swiper-pagination .swiper-pagination-bullet {
    width: 10px; /* Smaller bullets on mobile */
    height: 10px;
  }

  .about .swiper-pagination .swiper-pagination-bullet-active {
    transform: scale(1.1); /* Smaller active scale on mobile */
  }
}
  
  /*--------------------------------------------------------------
  # About 2 Section
  --------------------------------------------------------------*/
  .about-2 .content {
    background-color: var(--surface-color);
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .about-2 .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .about-2 .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .about-2 p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .about-2 .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
  }
  
  .about-2 .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }
  
  .about-2 .lead {
    line-height: 1.6;
    font-size: 18px;
    font-weight: normal;
    color: var(--default-color);
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .services .services-item .services-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .services .services-item .services-icon i {
    font-size: 48px;
  }
  
  .services .services-item h3 {
    font-size: 17px;
    font-weight: 400;
    color: var(--heading-color);
  }
  
  /*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
  .stats {
    padding-top: 60px;
  }
  
  .stats .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .stats .lead {
    line-height: 1.6;
    font-size: 18px;
    font-weight: normal;
    color: var(--default-color);
  }
  
  .stats .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .stats p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .stats .btn-get-started {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    padding: 8px 30px;
    border: 2px solid transparent;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
  }
  
  .stats .btn-get-started:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
  }
  
  .stats .count-numbers .number {
    font-size: 1.8rem;
    color: var(--heading-color);
    position: relative;
    display: block;
    padding-bottom: 7px;
    margin-bottom: 10px;
  }
  
  .stats .count-numbers .number:after {
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Blog Posts Section
  --------------------------------------------------------------*/
  .blog-posts .title-wrap {
    padding-bottom: 30px;
  }
  
  .blog-posts .content-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: var(--default-color);
  }
  
  .blog-posts .content-title {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .blog-posts .post-entry .thumb {
    margin-bottom: 20px;
  }
  
  .blog-posts .post-entry .thumb img {
    transition: 0.3s all ease;
  }
  
  .blog-posts .post-entry .thumb:hover img {
    opacity: 0.8;
  }
  
  .blog-posts .post-entry .meta {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .blog-posts .post-entry .meta .cat {
    text-transform: uppercase;
    font-weight: normal;
    color: var(--heading-color);
  }
  
  .blog-posts .post-entry .meta .date {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }
  
  .blog-posts .post-entry .post-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .blog-posts .post-entry .post-content h3 {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .blog-posts .post-entry .post-content h3 a {
    color: var(--heading-color);
  }
  
  .blog-posts .post-entry .post-content h3 a:hover {
    color: var(--accent-color);
  }
  
  .blog-posts .author .pic {
    flex: 0 0 50px;
    margin-right: 20px;
  }
  
  .blog-posts .author .author-name {
    line-height: 1.3;
  }
  
  .blog-posts .author .author-name strong {
    color: var(--heading-color);
    font-weight: normal;
  }
  
  .blog-posts .author .author-name span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
  }
  
  /*--------------------------------------------------------------
  # Tabs Section
  --------------------------------------------------------------*/
  .tabs .service-item .service-icon,
  .tabs .service-unit .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 4px;
    position: relative;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    margin-right: 20px;
    font-size: 16px;
  }
  
  .tabs .service-item .service-contents h3,
  .tabs .service-unit .service-contents h3{
    font-size: 16px;
    color: var(--heading-color);
  }
  
  .tabs .service-item.link,
  .tabs .service-unit.link  {
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 7px;
  }
  
  .tabs .service-item.link .service-contents,
  .tabs .service-unit.link .service-contents {
    color: var(--default-color);
  }
  
  .tabs .service-item.link .service-contents *:last-child,
  .tabs .service-unit.link .service-contents *:last-child{
    margin-bottom: 0;
  }
  
  .tabs .service-item.link:hover,
  .tabs .service-unit.link:hover {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
  }
  
  .tabs .service-item.link:hover .service-icon,
  .tabs .service-unit.link:hover .service-icon {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
  }
  
  .tabs .service-item.link.active,
  .tabs .service-unit.link.active {
    background: var(--surface-color);
  }
  
  .tabs .service-item.link.active .service-icon,
  .tabs .service-unit.link.active .service-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .tabs .service-item.link:active,
  .tabs .service-unit.link:active{
    text-decoration:none;
  }

      
    /* .swiper-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  
      color: white;
      z-index: 2; 
    } */
  /* Enhance list styling for location visibility */
.list-check {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.list-check li {
  margin-bottom: 8px;
  font-weight: 500; /* Slightly bold for emphasis */
  color: var(--default-color);
}

.list-check li strong {
  font-weight: 700; /* Bolder for location titles */
  color: var(--accent-color); /* Matches theme accent */
}

/* Improve spacing in the text */
.p-4 p {
  margin-bottom: 15px;
  line-height: 1.6; /* Better readability */
  color: var(--heading-color);
}

/* Adjust hover effects for links (if applicable) */
.list-check li:hover strong {
  color: var(); /* Highlights on hover */
}

/* Ensure responsiveness */
@media (max-width: 768px) {
  .list-check li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .p-4 h3 {
    font-size: 18px;
  }
}

  /* .tabs .service-item.link.active {
    background: var(--surface-color); 
    border-color: var(--accent-color);
  } */
  /*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .accordion .accordion-button {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .accordion .accordion-button:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .accordion .accordion-button[aria-expanded="true"] {
  color: var(--accent-color);
}

.faq .accordion .accordion-button[aria-expanded="true"]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .accordion .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}
  
 
  
  
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .testimonials .testimonial {
    max-width: 500px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .testimonials .testimonial .name {
    font-size: 18px;
    color: var(--heading-color);
  }
  
  .testimonials .testimonial .img-wrap img {
    margin: 0 auto;
    width: 70px;
    border-radius: 50%;
  }
  
  /* .testimonials .swiper-pagination {
    position: absolute;
    bottom: 0px;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
    opacity: 0.3;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
  } */
   
  
  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  .portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
  }
  
  .portfolio .portfolio-filters li:hover,
  .portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }
  
  .portfolio .portfolio-filters li:first-child {
    margin-left: 0;
  }
  
  .portfolio .portfolio-filters li:last-child {
    margin-right: 0;
  }
  
  @media (max-width: 575px) {
    .portfolio .portfolio-filters li {
      font-size: 14px;
      margin: 0 0 10px 0;
    }
  }
  
  .portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
  }
  
  .portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
  }
  
  .portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
  }
  
  .portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details Section
  --------------------------------------------------------------*/
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  
  .portfolio-details .swiper-wrapper {
    height: auto;
  }
  
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
  }
  
  .portfolio-details .swiper-button-prev:after,
  .portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  
  .portfolio-details .swiper-button-prev:hover:after,
  .portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 575px) {
  
    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
      display: none;
    }
  }
  
  /* .portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }
  
  .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  } */
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
  }
  
  .portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
  }
  
  .portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
  }
  
  .portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
  }
  
  /*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
  .team .team h3 {
    font-size: 20px;
  }
  
  .team .team h3 a {
    color: var(--heading-color);
  }
  
  .team .team .pic {
    margin-bottom: 30px;
  }
  
  .team .team .pic img {
    border-radius: 4px;
  }
  
  .team .team .position {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
  }
  
  .team p {
    line-height: 1.7;
    color: var(--default-color);
  }
  
  .team .more {
    position: relative;
    padding-right: 30px;
    display: inline-block;
  }
  
  .team .more span {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 16px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    color: var(--contrast-color);
    line-height: 1.6;
    text-align: center;
    transition: 0.3s all ease;
  }
  
  .team .more span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .team .more:hover {
    color: var(--contrast-color);
  }
  
  .team .more:hover span {
    background: var(--accent-color);
  }
  
  .team .more.dark {
    color: var(--default-color);
  }
  
  .team .more.dark>span {
    color: var(--default-color);
  }
  
  .team .more.dark:hover {
    color: var(--accent-color);
  }
  
  .team .more.dark:hover span {
    color: var(--contrast-color);
    background: var(--accent-color);
  }
  
  .team .swiper-wrapper {
    height: auto;
  }
  
  .team .slider-nav a {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--accent-color);
    border-radius: 4px;
    transition: 0.2s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .team .slider-nav a i {
    color: var(--contrast-color);
  }
  
  .team .slider-nav a:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  }
  
  .team .slider-nav a:first-child {
    margin-right: 5px;
  }
  
  /*--------------------------------------------------------------
  # Blog Posts 2 Section
  --------------------------------------------------------------*/
  .blog-posts-2 article {
    height: 100%;
  }
  
  .blog-posts-2 .post-img {
    max-height: 440px;
    overflow: hidden;
  }
  
  .blog-posts-2 .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 5px 0;
  }
  
  .blog-posts-2 .title a {
    color: var(--heading-color);
    transition: 0.3s;
  }
  
  .blog-posts-2 .title a:hover {
    color: var(--accent-color);
  }
  
  .blog-posts-2 .meta-top {
    margin-top: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-posts-2 .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog-posts-2 .meta-top i {
    font-size: 24px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .blog-posts-2 .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }

  /*--------------------------------------------------------------
  # customized swiper wrapper and slides for the custom carousel js
  --------------------------------------------------------------*/

.swiper-wrapper{
  position:relative;
  max-width:100%;
  margin:auto;
  /* height:100%; */
  display:flex;
  transition: transform 0.5s ease-in-out;
  height:auto;
}
.swiper-slide{
  min-width:100%;
  box-sizing:border-box;
  /* height: calc(100vw * 9 / 16); */
  height:auto;
  position:relative;
}
.swiper-slide  img{
  width: 100%;
  height:100%;
  object-fit:cover; 
  display:block;
}
.swiper-slide a img{
  width: 100%;
  height:100%;
  object-fit:cover; 
  display:block;
}


.init-swiper {
  width: 100%; /* Ensure swiper stays confined to its column */
  overflow: hidden;
  position:relative;
}
.init-swiper-tabs{
  width: 100%; /* Ensure swiper stays confined to its column */
  overflow: hidden;
  position:relative;
}
.init-swiper-tabs .swiper-slide{
  height:100%;
}

 /*--------------------------------------------------------------
  # CUSTOMIZED NAVBAR
  --------------------------------------------------------------*/
  
    
/* Text content styling */


.swiper-txt {
  position: absolute; /* Positioned absolutely within .carousel-slide */
  bottom: 10%; /* Moves the content towards the bottom */
  left: 5%; /* Aligns content slightly towards the left */
  transform: none; /* Removes the previous center positioning */
  text-align: left; /* Aligns text to the left */
  color: var(--surface-color);
  background-color: rgba(255, 165, 0, 0.5); /* Orange with 50% transparency */
  padding: 15px; /* Reduced padding for smaller screens */
  border-radius: 10px;
  width: 80%; /* Responsive width */
  max-width: 400px; /* Prevents the box from being too wide on large screens */
  z-index: 10; /* Ensures text is above the image */
  box-sizing: border-box;
}

.swiper-txt h2 {
  font-size: 1.5rem; /* Scales the heading */
  margin: 5px 0;
}

.swiper-txt p {
  font-size: 1rem; /* Adjusted for smaller screens */
  margin: 5px 0;
}

.swiper-txt .btn {
  display: inline-block;
  padding: 8px 15px;
  color: var(--surface-color);
  background-color: var(--accent-color);
  text-decoration: none;
  border-radius: 5px;
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.9rem; /* Smaller button text for responsiveness */
}

.swiper-txt .btn:hover {
  background-color: var(--background-color);
  color: var(--accent-color);
}


/* Additional adjustments for screens 576px and below */
@media screen and (max-width: 576px) {
  .swiper-txt {
    bottom: 3%; /* Further reduces distance from the bottom */
    left: 5%; /* Adds more margin on smaller screens */
    width: 90%; /* Makes the box slightly smaller */
    max-width: none; /* Removes the max-width limit */
    padding: 8px; /* Reduces padding to prevent overlap */
  }

  .swiper-txt h2 {
    font-size: 1rem; /* Further reduces heading size */
  }

  .swiper-txt p {
    font-size: 0.8rem; /* Further reduces paragraph size */
  }

  .swiper-txt .btn {
    padding: 5px 10px; /* Reduces button padding */
    font-size: 0.7rem; /* Further reduces button text size */
  }
}


.back,
.front {
  position: absolute;
  top: 50%; /* Vertically centered */
  transform: translateY(-50%); /* Adjust for proper centering */
  z-index: 3; /* Ensure buttons stay on top of content */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
}

.back {
  left: 10px; /* Slightly inside the left edge */
}

.front {
  right: 10px; /* Slightly inside the right edge */
}

.back:hover,
.front:hover{
  background-color: rgba(255, 165, 0, 0.8); /* Highlight effect on hover */
}


/* Pagination dots (optional adjustment for visibility) */
.swiper-pagination {
  bottom: 10px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 3;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .back,
  .front {
    padding: 8px 10px;
    font-size: 1rem;
  }

  .back {
    left: 5px;
  }

  .front {
    right: 5px;
  }
}
/* Remove the default focus outline */
.back:focus,
.front:focus {
  outline: none; /* Removes the default focus outline */
  box-shadow: none; /* Removes any default shadow */
}

/* Reset the active state background */
.back:active,
.front:active {
  background-color: rgba(0, 0, 0, 0.5); /* Your intended background color */
  outline: none; /* Prevents the default outline */
  box-shadow: none; /* Prevents any additional styling */
}

/* Basic button styling */
.btn {
  background-color: #ffa500; /* Button color */
  color: white; /* Text color */
  padding: 10px 20px; /* Padding for spacing */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  display: inline-block; /* Ensure it respects margin and padding */
  font-weight: bold; /* Make text bold */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect */
.btn:hover {
  background-color: black; /* Change background to black on hover */
  color: white; /* Ensure text remains white */
}

/* Responsive design */
@media (max-width: 767px) {
  .btn {
    width: 100%; /* Make the button span full width on small screens */
    text-align: center; /* Ensure text is centered */
  }
}

/* Additional styling for margin */
.mb-3 {
  margin-bottom: 1rem;
}


 /*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/



.animated {
  opacity: 0;
  /* transform: translateY(20px); */
  }
  .come-up{
  opacity:0;
  transform:translateY(100px);
  animation: come-up 1s forwards;
  }
  
  
  @keyframes come-up {
  0%{
    opacity:0;
    transform: translateY(100px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
  }
  
  /* For testing effects without JavaScript */
  .slide-left {
  opacity: 0;
  transform: translateX(-100px); /* Start off-screen to the left */
  animation: slide-in-left 2s ease forwards;
  }
  
  .slide-right {
  opacity: 0;
  transform: translateX(100px); /* Start off-screen to the right */
  animation: slide-in-right 2s ease forwards;
  }
  
  /* Keyframes for left slide */
  @keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
  }
  
  /* Keyframes for right slide */
  @keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
  }
  
  /* Fade-in and scale-up animation */
  @keyframes fade-scale-up {
  0% {
    opacity: 0;
    transform: scale(0.8); /* Slightly smaller */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Full size */
  }
  }
  
  
  /* Class to apply animation */
  .fade-scale-up {
  opacity: 0; /* Start hidden */
  transform: scale(0.8); /* Initial size */
  animation: fade-scale-up 1s ease forwards;
  }

/* #header .navmenu .nav-item .dropdown a .chevron-down{
    background-color: #ffa500;
    box-shadow: rgba(0, 0, 0, 0.3)
  } */

  /****WHATSAPP ICON****/
/* Floating WhatsApp Button */
.whatsapp-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1000;
}

.whatsapp-icon {
	background-color: #25d366;
	/* color: white; */
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 35px;
	cursor: pointer;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	animation: bounce 2s infinite;
	border: none;
	outline: none;
}

.whatsapp-icon i {
	position: relative;
	z-index: 2;
}

.whatsapp-dropdown {
	display: none;
	position: absolute;
	bottom: 10px;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	min-width: 220px;
	text-align: center;
	padding: 10px 0;
}

.whatsapp-dropdown a {
	display: block;
	text-decoration: none;
	color: #25d366;
	padding: 10px;
	font-weight: bold;
}

.whatsapp-dropdown a:hover {
	background: #f1f1f1;
	border-radius: 5px;
}

/* Bounce Animation */
@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* Show Dropdown on Hover */
.whatsapp-container:hover .whatsapp-dropdown {
	display: block;
}

.sitename{
  text-transform: uppercase;

}


@media (min-width:1207px) and (max-width:4000px){
  .sitename{
    white-space: nowrap;
  }
}

@media screen and (max-width:388px){
  .logo img{
   display:none;
  }
}
  

 /*--------------------------------------------------------------
# Swiper.js for Inside Sections
--------------------------------------------------------------*/
.kibo-swiper {
  width: 100%;
  padding: 40px 0;
  /* overflow: visible; */
  position: relative;
}

/* Slide Styling */
.kibo-swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 600px; /* Adjusted for coverflow visibility */
  height: 400px; /* Matches 1.77 aspect ratio (600 / 1.77 ≈ 338) */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /* overflow:visible; */
  transition: transform 0.3s ease;
  
}

.kibo-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* Active Slide Highlight */
.kibo-swiper .swiper-slide-active {
  transform: scale(1.1); /* Slightly larger for emphasis */
  z-index: 10;
}

/* Pagination Styling */
.kibo-swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  
  display: flex;
  justify-content: center;
  gap: 8px;
}

.kibo-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--default-color); /* #1f1e1e */
  opacity: 0.5;
  transition: all 0.3s ease;
}

.kibo-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color); /* #ffa500 */
  opacity: 1;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .kibo-swiper .swiper-slide {
    width: 300px; /* Smaller slides for mobile */
    height: 169px; /* Maintains 1.77 ratio (300 / 1.77 ≈ 169) */
  }

  .kibo-swiper .swiper-slide-active {
    transform: scale(1.05); /* Slightly less scaling on mobile */
  }

  .kibo-swiper .swiper-pagination {
    bottom: 5px;
  }

  .kibo-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 576px) {
  .kibo-swiper {
    padding: 20px 0;
  }

  .kibo-swiper .swiper-slide {
    width: 250px;
    height: 141px; /* Maintains 1.77 ratio */
  }
}



/*--------------------------------------------------------------
# Program Section for Inside Pages
--------------------------------------------------------------*/

.program-section {
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--surface-color); /* #ffffff */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.program-section h3 {
  color: var(--heading-color); /* #000000 */
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--accent-color); /* #ffa500 */
  display: inline-block;
  padding-bottom: 5px;
}

.program-section .custom-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: center; 
}

.program-section .custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color); /* #1f1e1e */
}

.program-section .custom-list li::before {
  content: "\f058"; /* Bootstrap Icons check-circle */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color); /* #ffa500 */
  font-size: 1.2rem;
}

.program-section p {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--default-color); /* #1f1e1e */
}

.program-section p strong {
  color: var(--heading-color); /* #000000 */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .program {
    padding: 20px 10px;
  }

  .program-section {
    padding: 15px;
    margin-bottom: 20px;
  }

  .program-section h3 {
    font-size: 1.5rem;
  }

  .program-section .custom-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .program-section {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .program-section .custom-list {
    max-width: 100%;
  }

  .program-section .custom-list li {
    padding-left: 25px;
    font-size: 0.9rem;
  }

  .program-section .custom-list li::before {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Kibo Booking Form
--------------------------------------------------------------*/
.kibo-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--background-color); /* #ffffff */
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  color: var(--default-color); /* #1f1e1e */
}

/* Form Fields */
.kibo-form .row.gtr-uniform > * {
  margin-bottom: 20px;
}

.kibo-form input[type="text"],
.kibo-form input[type="email"],
.kibo-form input[type="tel"],
.kibo-form input[type="number"],
.kibo-form select,
.kibo-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--default-color); /* #1f1e1e */
  background: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kibo-form input:focus,
.kibo-form select:focus,
.kibo-form textarea:focus {
  border-color: var(--accent-color); /* #ffa500 */
  box-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
  outline: none;
}

.kibo-form textarea {
  resize: vertical;
  min-height: 100px;
}

.kibo-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color); /* #000000 */
}

.kibo-form small {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #666;
}

/* Checkboxes and Radios */
.kibo-form .form-group {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.kibo-form input[type="checkbox"],
.kibo-form input[type="radio"] {
  margin-right: 10px;
  accent-color: var(--accent-color); /* #ffa500 */
  width: 18px;
  height: 18px;
}

.kibo-form .form-group label {
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--default-color); /* #1f1e1e */
  line-height: 1.4;
}

/* Section Headers */
.kibo-form p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color); /* #000000 */
  text-align: center;
}

.kibo-form p strong {
  color: var(--accent-color); /* #ffa500 */
}

/* Message for Removed Packages */
.kibo-form .form-message {
  background: #fff8e1;
  padding: 15px;
  border-left: 4px solid var(--accent-color); /* #ffa500 */
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: left;
}

.kibo-form .form-message p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--default-color); /* #1f1e1e */
  text-align: left;
}

.kibo-form .form-message a {
  color: var(--accent-color); /* #ffa500 */
  text-decoration: underline;
}

.kibo-form .form-message a:hover {
  color: #cc8400; /* Darker orange */
}

/* Buttons */
.kibo-form .actions {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.kibo-form .actions li {
  display: inline-block;
}

.kibo-form input[type="submit"],
.kibo-form input[type="reset"] {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.kibo-form input[type="submit"].primary {
  background: var(--accent-color); /* #ffa500 */
  color: var(--contrast-color); /* #ffffff */
}

.kibo-form input[type="submit"].primary:hover {
  background: #cc8400; /* Darker orange */
  transform: translateY(-2px);
}

.kibo-form input[type="reset"] {
  background: #e0e0e0;
  color: var(--default-color); /* #1f1e1e */
}

.kibo-form input[type="reset"]:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .kibo-form {
    padding: 20px 15px;
  }

  .kibo-form .row.gtr-uniform > * {
    margin-bottom: 15px;
  }

  .kibo-form input[type="submit"],
  .kibo-form input[type="reset"] {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .kibo-form .actions {
    flex-direction: column;
    gap: 10px;
  }

  .kibo-form .actions li {
    width: 100%;
  }

  .kibo-form .actions input {
    width: 100%;
  }

  .kibo-form .form-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .kibo-form input[type="checkbox"],
  .kibo-form input[type="radio"] {
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .kibo-form {
    box-shadow: none;
  }

  .kibo-form .form-group label {
    font-size: 0.9rem;
  }

  .kibo-form .form-message p {
    font-size: 0.9rem;
  }

  .kibo-form input[type="checkbox"],
  .kibo-form input[type="radio"] {
    width: 16px;
    height: 16px;
  }
}


/**************************************



Book now button



********************************************/



/* Scroll-down container */
.scroll-down {
  position: fixed; /* Use fixed instead of absolute for always-on-screen */
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  font-size: 1rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--surface-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Make text responsive */
.scroll-down .scroll-text {
  color: var(--default-color);
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

/* Icon styles */
.scroll-down i {
  display: inline-block;
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  transition: color 0.3s ease;
  color: var(--accent-color);
}

/* Hover color */
.scroll-down:hover i {
  color: darkorange;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .scroll-down {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .scroll-down i {
    font-size: 1.4rem;
  }

  .scroll-down .scroll-text {
    font-size: 0.9rem;
  }
}

/* CSS-only hide after click */
/* .scroll-down:active {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
} */


















  
  