/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1c7041;; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #1c7041; /* 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: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1c7041;; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --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);
}

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

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

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

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

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

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

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

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# 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;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 20px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-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: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .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 {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    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-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: 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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

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

.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: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

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

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# 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(--surface-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;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.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: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# 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 .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  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 .custom-accordion .accordion-item .btn-link: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 .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


.language-switcher {
  display: flex;
  gap: 10px;
}

.language-switcher button {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

.language-switcher button.active {
  background: #1c7041;
  color: white;
  border-color: #1c7041;
}

/* For RTL support when Arabic is selected */
[dir="rtl"] .navmenu {
  direction: rtl;
}

.styled-translation {
  white-space: pre-wrap; /* Preserves spaces and line breaks */
  word-wrap: break-word; /* Ensures text doesn't overflow */
}
.carousel-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* #1c7041; */
/* Add this CSS to your stylesheet */
.carousel-item {
  position: relative;
  /* height: 100vh;
  min-height: 600px; */
  overflow: hidden;
}


.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.carousel-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 15px;
  text-align: center;
}

.slide-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-title span {
  color: #ffc107;
}


/* Animation classes */
.animate__animated {
  animation-duration: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide-title {
    font-size: 36px;
  }

  .slide-description {
    font-size: 16px;
  }

  .carousel-item {
    min-height: 500px;
  }
}

/* Optional: Add a cool gradient overlay */
.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}

/* Optional: Add a floating effect to the content */
.carousel-container {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.carousel {
  width: 100%;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1c7041;
  --bs-btn-border-color: #1c7041;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1c7041;
  --bs-btn-hover-border-color: #1c7041;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1c7041;
  --bs-btn-active-border-color: #1c7041;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1c7041;
  --bs-btn-disabled-border-color: #1c7041;
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full page height */
  background-color: #f8f9fa; /* Optional background */
}

.loading-container p {
  font-size: 18px;
  color: #333;
}

/*
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.modal-header h3 {
  margin: 0;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  margin-bottom: 20px;
}

.modal-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.modal-footer {
  text-align: right;
}

.btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #5a6268;
}*/


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-dialog.modal-lg {
  max-width:900px; /* Larger modal width */
  width: 90%; /* Responsive width */
}

.modal-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #1c7041;;
  color: white !important;
  border-bottom: 1px solid #ddd;
}

.modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.close {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.close:hover {
  color: #f8f9fa;
}

.modal-body {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  background-color: #f8f9fa;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: #5a6268;
}

.modal-title {
 
  color: white;
}


.partners {
  text-align: center;
  /*padding: 20px 0;*/
  /* background-color: #f9f9f9; */
}
.partners-slider {
  overflow: hidden;
  white-space: nowrap;
}
.slider-track {
  display: inline-flex;
  animation: scroll 15s linear infinite;
}
.slider-item {
  display: inline-block;
  padding: 10px;
}
.partner-logo {
  max-height: 100px;
  max-width: 100px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



.section-title2{
  padding-bottom: 0px;
  padding-top: 60px;
}

















.partners .carousel-item::before {
  /*content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;*/
}



.partners .carousel {
  padding: 0 50px;
}

.partner-item {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.partner-name {
  color: #333;
  font-size: 1rem;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
  color: #007bff;
}

.partners .carousel-control-prev,
.partners .carousel-control-next {
  width: 40px;
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.partners .carousel-control-prev {
  left: 0;
}

.partners .carousel-control-next {
  right: 0;
}

.partners .carousel-item {
  padding: 20px 0;
}

.partner-item {
  position: relative;
  z-index: 100; /* Ensure it's above other elements */
}

.partner-item {
  pointer-events: auto; /* Ensure the link is clickable */
}



.event-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.event-modal .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.event-modal .modal-content img {
  margin-top: 15px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.event-modal .modal-content p {
  margin: 10px 0;
}

.event-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.img-fluid_footer{
  max-width: 80px;
}


.blog-pagination li a .active {
  background:#1c7041;
  color: #ffffff;;
  margin: 0 5px;
  transition: 0.3s;
}



/* Search Icon */
.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  padding: 0.5rem;
}

.search-icon:hover {
  color: #1c7041;
}

/* Search Popup */
.search-popup {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  width: 35rem;
}

.search-form .input-group {
  display: flex;
  align-items: center;
}

.search-form .form-control {
  border-radius: 20px 0 0 20px;
  border-right: none;
}

.search-form .btn {
  border-radius: 0 20px 20px 0;
  background-color: #1c7041;
  border-color: #1c7041;
}

.search-form .btn:hover {
  background-color: #1c7041;
  border-color: #1c7041;
}



.search-widget {
  margin-bottom: 2rem;
}

.search-widget .widget-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.search-widget form {
  display: flex;
  align-items: center;
}

.search-widget input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
}

.search-widget button {
  padding: 0.5rem 1rem;
  background-color: #1c7041;
  border: none;
  border-radius: 0 5px 5px 0;
  color: white;
  cursor: pointer;
}

.search-widget button:hover {
  background-color: #1c7041;
}




/* Language Switcher Container */
.language-switcher-container {
  position: relative;
}

/* Current Language Button */
.language-switcher .current-language {
  background: none;
  border: 1px solid #ddd;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.language-switcher .current-language:hover {
  background: #1c7041;
  border-color: #1c7041;
}

.language-switcher .current-language i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Language Dropdown */
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.language-dropdown button {
  background: none;
  border: none;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
}

.language-dropdown button:hover {
  background: #f8f9fa;
  color: #1c7041;
}

.language-dropdown button.active {
  background: #1c7041;
  color: white;
}





/* Mobile Navigation Toggle */
/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none; /* Hide by default on larger screens */
  font-size: 24px;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: #2563eb;
}
 @media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    display: block;
  }

  #navmenu ul {
    display: none; 
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 300px;
    
  }

  #navmenu ul li {
    margin: 10px 0;
  }

  #navmenu ul li a {
    padding: 10px 20px;
    display: block;
  }


  #navmenu.mobile-nav-active ul {
    display: flex;
  }
 }



 











 .mobile-nav-toggle {
  display: none; /* Hide by default on larger screens */
  font-size: 24px;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: #2563eb;
}

@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    display: block;
  }

  #navmenu ul {
    display: none; 
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
  }

  #navmenu ul li {
    margin: 10px 0;
  }

  #navmenu ul li a {
    padding: 10px 20px;
    display: block;
  }

  #navmenu.mobile-nav-active ul {
    display: flex;
  }
}

.language-switcher {
  position: relative;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.language-dropdown button {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.language-dropdown button:hover {
  background: #f9f9f9;
}

.language-dropdown button.active {
  background: #2563eb;
  color: white;
}










.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;
}

@media (max-width: 1199px) {
  .navmenu ul {
      display: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      background-color: var(--nav-mobile-background-color);
  }

  .mobile-nav-active .navmenu ul {
      display: block;
  }
}
.mobile-nav-active .navmenu {
  position: fixed;
  inset: 0; /* Cover the entire viewport */
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  z-index: 9998; /* Ensure it is above other elements */
  display: block; /* Ensure visibility */
}

.mobile-nav-active .mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9997;
}


.mobile-nav-overlay.mobile-nav-active {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.mobile-nav-active .navmenu ul {
  display: block;
  list-style: none;
  background: #fff; /* Mobile menu background */
  padding: 10px 0;
  margin: 0;
}






.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  background-color: rgba(42, 44, 57, 0.9);

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: 80px;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  height: 50px;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 100%;
  width: auto;
}

/* Header Controls */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn,
.language-btn,
.mobile-menu-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  color: #ffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.search-btn:hover,
.language-btn:hover {
  color: #e0a718;
}

/* Language Control */
.language-control {
  position: relative;
}

.language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 120px;
  z-index: 1001;
}

.lang-option {
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.lang-option:hover {
  background: #f5f5f5;
}

.lang-option.active {
  background: #1c7041;
  color: white;
}

/* Navigation */
.site-navigation {
  flex-grow: 1;
  margin: 0 2rem;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.menu-item {
  position: relative;
}

.menu-item-wrapper {
  position: relative;
}

.menu-link,
.menu-trigger {
  color: #ffff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.menu-link:hover,
.menu-trigger:hover {
  color: #e0a718;
}

/* Submenu Styling */
.submenu-container {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.submenu-container.expanded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  background: #1c7041;;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 200px;
  list-style: none;
}

/* Nested Submenus */
.level-1 .submenu-container {
  left: 100%;
  top: 0;
}

.level-2 .submenu-container {
  left: 100%;
  top: 0;
}

.level-3 .submenu-container {
  left: 100%;
  top: 0;
}

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  right: 10%;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.search-form button {
  background: #e0a718;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-form button:hover {
  background: #e0a718;
}

/* Mobile Styles */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }

  .site-navigation {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    margin: 0;
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .site-navigation.active {
    transform: translateX(0);
  }

  .main-menu {
    flex-direction: column;
    gap: 0;
  }

  .menu-item {
    width: 100%;
  }

  .menu-link,
  .menu-trigger {
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  .submenu-container {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .submenu-container.expanded {
    display: block;
  }

  .submenu {
    box-shadow: none;
    padding-left: 1rem;
  }

  .language-btn span {
    display: none;
  }
}

/* RTL Support */
[dir="rtl"] .submenu-container {
  left: auto;
  right: 0;
}
 
/* Enhanced Search Button Styles */
.search-btn {
  position: relative;
  background: #f5f5f5;
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.search-btn:hover {
  background: #e9ecef;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.search-btn:hover i {
  transform: scale(1.1);
}

/* Search Popup Enhancement */
.search-overlay {
  position: absolute;
  top: calc(100% + 10px);
  right: 15%;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 450px;
  transform-origin: top right;
  animation: searchPopup 0.3s ease;
}

@keyframes searchPopup {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (max-width: 1400px) {
  .search-overlay {
   
    right: 5%;
    
  }
}
.search-form {
  display: flex;
  gap: 0.75rem;
}

.search-form input {
  flex-grow: 1;
  padding: 0.75rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.search-form input:focus {
  outline: none;
  border-color: #1c7041;
  background: white;
  box-shadow: 0 0 0 4px rgba(28, 112, 65, 0.1);
}

.search-form input::placeholder {
  color: #adb5bd;
}

.search-form button {
  background: #1c7041;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(28, 112, 65, 0.2);
}

.search-form button:hover {
  background: #155732;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28, 112, 65, 0.3);
}

.search-form button:active {
  transform: translateY(0);
}

.search-form button i {
  font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .search-btn {
    width: 25px;
    height: 25px;
  }

  .search-btn i {
    font-size: 0.8rem;
  }

  .search-overlay {
    width: calc(100vw - 2rem);
    right: 1rem;
    padding: 1rem;
  }

  .search-form input {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .search-form button {
    width: 38px;
    height: 38px;
  }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
  .search-btn {
    background: #2d2d2d;
    color: #ffffff;
  }

  .search-btn:hover {
    background: #3d3d3d;
  }

  .search-overlay {
    background: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .search-form input {
    background: #2d2d2d;
    border-color: #3d3d3d;
    color: white;
  }

  .search-form input:focus {
    border-color: #1c7041;
    background: #2d2d2d;
  }

  .search-form input::placeholder {
    color: #6c757d;
  }
}

/* RTL Support */
[dir="rtl"] .search-overlay {
  right: auto;
  left: 0;
  transform-origin: top left;
}

[dir="rtl"] .search-form {
  flex-direction: row-reverse;
}
@media (max-width: 1199.98px) {
  .menu-link, .menu-trigger{
    color: black;
  }
  .submenu {
    background: #ffff;
   
}

}



/* Contact page styles */
.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact-section .info-item .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-section .info-item:hover .icon {
  background-color: var(--bs-primary) !important;
}

.contact-section .info-item:hover .icon i {
  color: white !important;
}

.php-email-form .form-control {
  padding: 12px;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.php-email-form .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 253, 93, 0.25);
}

.btn-lg {
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.card {
  border: none;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Optional: Add some responsive adjustments */
@media (max-width: 768px) {
  .info-item {
    text-align: center;
    flex-direction: column;
  }
  
  .info-item .icon {
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }
}
.text-primary2, .text-primary2-hover:hover {
  color: #198754 !important;
}
.contact-section .info-item:hover .icon {
  background-color: #198754 !important;
}
.text-primary2 {
  color: #198754 !important;
}
.modal {
  background-color: transparent;
}

@media (max-width: 768px) {
  .hero .carousel-container {
      margin-top: 10vh;
  }
}


.partner-item {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .partner-logo {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }
  
  .partner-name {
    margin-top: 10px;
    padding: 0 15px;
  }
}



.fc-header-toolbar {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fc-toolbar-title {
  font-size: 18px !important;
  text-align: center;
}

.fc-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.fc-button {
  font-size: 14px !important;
  padding: 5px 10px !important;
}

.fc-dayGridMonth-view .fc-daygrid-day-number,
.fc-timeGridWeek-view .fc-daygrid-day-number,
.fc-timeGridDay-view .fc-daygrid-day-number {
  font-size: 12px;
}


/* Add this to your CSS */
.partners {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.carousel {
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 15px;
  width: 33.333%;
  transition: transform 0.3s ease;
}

.partner-logo {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.partner-name {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

/* Fix for Chrome specific flex issues */
.d-flex.justify-content-around {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: 100%;
}
.level-0 {  
  color: #fff;  

}
.submenu .menu-link {
  max-height: 150px; /* Restricts the text width */
  display: block;  /* Ensures it behaves as a block element */
  white-space: normal; /* Allows text to wrap */
  word-break: break-word; /* Ensures words break if needed */
  overflow-wrap: break-word; /* Ensures wrapping in all cases */
}
/*
.level-0 {
  color: #fff; text-decoration: none;
  padding: 0rem 0rem; 
  display: flex; gap: 0.5rem;
  font-size: 1rem; 
  transition: color 0.3s ease; 
  white-space: normal; 
  word-wrap: break-word; 
  overflow-wrap: break-word;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  min-height: 60px;
}  */

/*
.menu-item.has-submenu:hover .submenu-container {
  transition: all 1.5s ease; 
  display: block;
}

.submenu-container:hover {
  transition: all 1.5s ease;
  display: block;
}
*/
@media (max-width: 768px) {
  .submenu .menu-link {
    color: #0a0909 !important;
  }
  .level-0 {
    color: #0a0909;
}
}


.see_More {
  display: inline-block;
  padding: 5px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #5046e5;
  /*border: 2px solid #5046e5;
 / border-radius: 30px;*/
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.see_More:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-right: 2px solid #ff6b6b;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.see_More:after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.see_More:hover {
  color: #ff6b6b;
  border-color: #ff6b6b;
  transform: translateY(-3px);
}

.see_More:hover:before {
  left: 0;
}

.see_More:hover:after {
  transform: translateX(5px);
  animation: arrowFloat 1.2s infinite alternate;
}

.see_More:active {
  transform: translateY(1px);
}

@keyframes arrowFloat {
  0% { transform: translateX(3px); }
  100% { transform: translateX(8px); }
}


.header-container2 {
  background-color: rgba(42, 44, 57, 0.9);
}


.hero {
 
  margin-top: 130px;
}


/* Header Center Styles */
#header_center {
  background-color: #f8f9fa;
  padding: 0px 0;
  border-bottom: 1px solid #e7e7e7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#header_center .container {
  max-width: 1400px;
  margin: 0 auto;
}

#header_center .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

#header_center .logo img {
  max-height: 150px;
  transition: transform 0.3s ease;
}

#header_center .logo img:hover {
  transform: scale(1.05);
}

#header_center .slogo {
  text-align: center;
  padding: 0px 0;
}

#header_center .slogo h4 {
  margin: 5px 0;
  color: #005f73;
  font-weight: 600;
}

#header_center .slogo h4.arab {
  font-size: 1.5rem;
  color: #065a63;
  font-family: 'Amiri', 'Scheherazade New', serif;
  margin-bottom: 8px;
}

#header_center .alger {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header_center .alger img {
  max-height: 130px;
  transition: transform 0.3s ease;
}

#header_center .alger img:hover {
  transform: scale(1.05);
}

/* Animation for the middle section */
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
  animation-duration: 1s;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  #header_center .slogo h4 {
    font-size: 1.2rem;
  }
  
  #header_center .slogo h4.arab {
    font-size: 1.3rem;
  }
  
  #header_center .logo img,
  #header_center .alger img {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  #header_center .slogo {
    margin-top: 4px;
  }
  
  #header_center .slogo h4 {
    font-size: 1rem;
  }
  
  #header_center .slogo h4.arab {
    font-size: 1.1rem;
  }
}



/* Media query for mobile devices */
/*
@media (max-width: 768px) {
  .site-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #0a2240;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
  }

  .site-navigation.active {
    left: 0;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item {
    width: 100%;
    margin: 5px 0;
  }

  .menu-link {
    padding: 10px 0;
  }
}

*/


#header_center {
  /*background: url(https://www.m-culture.gov.dz/templates/Culture/images/alg.jpg) right no-repeat;*/
  background-color: #fff;
  
}

.site-header {

  background-color: #fff;

}






























/* Header Center Styles */
#header_center {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f4 100%);
  padding: 0px 0;
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0, 73, 118, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#header_center::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 210, 210, 0.7) 0%, rgba(255,255,255,0) 70%);
  z-index: -1;
  animation: shiftLight 15s infinite linear;
  opacity: 0.6;
}

@keyframes shiftLight {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#header_center .container {
  max-width: 1400px;
  margin: 0 auto;
}

#header_center .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

#header_center .logo img {
  max-height: 120px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

#header_center .logo img:hover {
  transform: scale(1.05) translateY(-3px);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

#header_center .slogo {
  text-align: center;
  padding: 0px 0;
  position: relative;
  overflow: hidden;
 /* backdrop-filter: blur(5px);*/
}

#header_center .slogo h4 {
  margin: 5px 0;
  color: #005f73;
  font-weight: 600;
}

#header_center .slogo h4.arab {
  font-size: 1.5rem;
  color: #065a63;
  font-family: 'Amiri', 'Scheherazade New', serif;
  margin-bottom: 8px;
}

#header_center .alger {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header_center .alger img {
  max-height: 80px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transform-origin: center;
}

#header_center .alger img:hover {
  transform: scale(1.05) translateY(-3px) rotate(5deg);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

/* Animation for the middle section */
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
  animation-duration: 1s;
}

/* Responsive adjustments */
@media (max-width:1000px) {
  #header_center .slogo h4 {
    font-size: 1.2rem;
  }
  
  #header_center .slogo h4.arab {
    font-size: 1.3rem;
  }
  
  #header_center .logo img,
  #header_center .alger img {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  #header_center .slogo {
    margin-top: 4px;
  }
  
  #header_center .slogo h4 {
    font-size: 1rem;
  }
  
  #header_center .slogo h4.arab {
    font-size: 1.1rem;
  }
}

/* Original Header Container Styles (Modified) */



@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}



.menu-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-link:hover {
  color: white;
  transform: translateY(-2px);
}

.menu-link:hover::after {
  transform: scaleX(1);
}






#header_center .slogo h4.arab {
  font-size: 2rem;
  background: linear-gradient(to right, #012c08, #076307, #04740d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Tajawal', 'Noto Sans Arabic', sans-serif;
  margin-bottom: 4px;
  margin-top: 4px;
  letter-spacing: 1px;
  font-weight: 800;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  padding: 5px 0;
}

#header_center .slogo h4.arab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #012c08, transparent);
  z-index: -1;
}

#header_center .slogo h4 {
  margin: 4px 0;
 font-size: 1.5rem;
  color: #051937;
  font-family: 'Cairo', 'Dubai', sans-serif;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
   /*background: rgba(255, 255, 255, 0.7);*/
 backdrop-filter: blur(5px);
  border-radius: 30px;
 /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
  transform: translateY(0);
  transition: all 0.3s ease;
}

#header_center .slogo h4:hover {
  transform: translateY(-3px);
 /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
}

.search-overlay {
  z-index: 1000;
}

@media (max-width: 1000px) {
  #header_center .logo img, #header_center .alger img {
      max-height: 60px;
      display: none;
  }

  .hidden-xs{
    display: none;
  }

  
#header_center .slogo h4.arab {
  font-size: 1.3rem;
}
#header_center .slogo h4 {
  font-size: 1rem;
}

}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}


.services2 .service-item {
  box-shadow:none;

}


.services2 .service-item .icon i {
  font-size: 30px;
  line-height: 1;
  transition: 0.5s;
}


.services2 .service-item:hover .details .icon i {
  color: #18181b !important;
}



.services2 .details {
  height: 300px;

}




.services2 .img-fluid {
  min-height: 250px;
}
.page-title {
  margin-top: 40px;
}
#header_center .container {
  max-width: 1400px;
  margin: 0 auto;
}
.p-4 {
  padding: 1rem !important;
}

@media (max-width: 1199.98px) {
  .menu-link, .menu-trigger {
    color: #fff ;
  }
}
@media (max-width: 1020px) {
  .menu-link, .menu-trigger {
    color: #18181b;
  }
}

.services2 .details {
  height: 300px;
  z-index: 1000;
  background: white;
}

/* 

  .partner-name {
    --glow-color: #64d2ffb3;
    --text-color: rgba(17, 16, 16, 0.9);
    
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
      0 4px 20px rgba(0, 0, 0, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: 
      all 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
  }

  .partner-name::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle at center,
      var(--glow-color) 0%,
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .partner-name:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 8px 32px rgba(0, 120, 255, 0.2),
      inset 0 0 12px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.02);
  }

  .partner-name:hover::before {
    opacity: 0.6;
  }

  .partner-name:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .partner-name {
      will-change: transform, box-shadow, background;
    }
  } 


*/
/*
.partner-name {
  font-family: 'Sora', 'General Sans', sans-serif;
  font-size: 1rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  
  color: #f8fafc;
  background: #020617;
  
  padding: 1rem 1.5rem 0.9rem 1.2rem;
  margin-top: 1.25rem;
  border-radius: 0;
  position: relative;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
  
  border: none;
  box-shadow: 6px 6px 0px #facc15;
  
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-name::before,
.partner-name::after {
  content: '';
  position: absolute;
  background: #facc15;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-name::before {
  width: 6px;
  height: 6px;
  top: 10px;
  right: 10px;
}

.partner-name::after {
  width: 20px;
  height: 2px;
  bottom: 10px;
  left: 10px;
}

.partner-name:hover {
  background: #0f172a;
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px #facc15;
}

.partner-name:hover::before {
  transform: scale(1.5) rotate(45deg);
}

.partner-name:hover::after {
  width: 40px;
}

.partner-name:active {
  transform: translate(0px, 0px);
  box-shadow: 2px 2px 0px #facc15;
  transition: transform 0.1s, box-shadow 0.1s;
}

@keyframes textReveal {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.partner-name:hover span {
  display: inline-block;
  animation: textReveal 2s ease-in-out infinite;
}

.partner-name-wrapper {
  position: relative;
  display: inline-block;
}

.partner-name-wrapper::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), transparent);
  z-index: -1;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-name-wrapper:hover::before {
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
}

*/
/*
.partner-name {
  --primary: oklch(55% 0.22 260);
  
  color: var(--primary);
  font-size: max(1rem, 1cqi); 
  font-weight: 510; 
  font-family: 'Geist Variable', system-ui, sans-serif;
  margin-top: 0.5lh;
  display: inline-block;
  position: relative;
  padding-block: 0.25lh;
  transition: 
    color 0.4s oklch,
    font-weight 0.3s var(--ease-pro),
    transform 0.3s var(--ease-pro);
  
  font-optical-sizing: auto;
  font-variation-settings: 'wght' 510;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: subpixel-antialiased;
}

.partner-name::after {
  content: '';
  position: absolute;
  bottom: 0.15lh;
  left: 0;
  width: 100%;
  height: 0.7px; 
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-pro);
  will-change: transform;
}

.partner-name:hover {
  color: oklch(60% 0.25 260);
  font-variation-settings: 'wght' 600;
  transform: translateX(0.05lh);
}

.partner-name:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.partner-name:active {
  --primary: oklch(65% 0.28 260);
  transition-duration: 0.2s;
}

:root {
  --ease-pro: cubic-bezier(0.32, 0.72, 0, 1);
}

@container (width < 400px) {
  .partner-name {
    font-size: max(0.9rem, 0.9cqi);
  }
}
*/
.partner-name {
  --glow: radial-gradient(circle at center, oklch(60% 0.3 260 / 0.4) 0%, transparent 70%);
  
  color: black;
  font-size: clamp(1rem, 1cqi + 0.1rem, 1rem); /* Enhanced fluid typography */
  font-weight: 510;
  font-family: 'Geist Variable', 'SF Pro', system-ui, sans-serif;
  margin-top: 0.5lh;
  display: inline-block;
  position: relative;
  padding: 0.25lh 0.5lh;
  transition: 
    color 0.4s oklch,
    font-variation-settings 0.5s var(--ease-spring),
    transform 0.3s var(--ease-out),
    text-shadow 0.4s ease;
  
  /* Ultra-modern text styling */
  font-variation-settings: 'wght' 510, 'wdth' 100, 'slnt' 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: style weight;
  line-height: 1.4;
  letter-spacing: -0.01em;
  
  /* Glassmorphism effect */
  background: oklch(98% 0.01 260 / 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 0.5lh;
  border: 0.5px solid oklch(90% 0.05 260 / 0.2);
  box-shadow: 
    0 1px 1px oklch(100% 0 0 / 0.05),
    0 2px 6px oklch(55% 0.2 260 / 0.1);
}

/* Holographic underline effect */
.partner-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #1c7041,
    #1c7041,
    transparent
  );
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s var(--ease-pro);
  filter: blur(0.5px);
  opacity: 0.8;
}

/* Hover state with 3D effect */
.partner-name:hover {
  font-variation-settings: 'wght' 650, 'wdth' 105, 'slnt' -5;
  transform: translateY(-0.1lh) perspective(500px) rotateX(5deg);
  background: oklch(98% 0.01 260 / 0.25);
  box-shadow: 
    0 2px 12px oklch(55% 0.25 260 / 0.15),
    0 4px 24px oklch(55% 0.2 260 / 0.1);
}

.partner-name:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  opacity: 1;
}

/* Active state with "pressed" effect */
.partner-name:active {
  transform: translateY(0.05lh) scale(0.98);
  transition-duration: 0.1s;
  background: oklch(98% 0.01 260 / 0.4);
  box-shadow: inset 0 1px 2px oklch(100% 0 0 / 0.1);
}

/* Focus state with futuristic glow */
.partner-name:focus-visible {
  outline: none;
  box-shadow: 
    0 0 0 2px #198754,
    0 0 20px oklch(60% 0.4 260 / 0.4);
}

/* Modern easing variables */
:root {
  --ease-pro: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.5, 1.5, 0.5, 1);
}

/* Dark mode adaptation */
@media (prefers-color-scheme: dark) {
  .partner-name {
    background: oklch(20% 0.02 260 / 0.3);
    border-color: #1c7041;
  }
}

/* Ultra-wide screens */
@media (min-width: 2000px) {
  .partner-name {
    font-size: 1.25rem;
    padding: 0.35lh 0.75lh;
  }
}

/* Micro-interaction for touch devices */
@media (pointer: coarse) {
  .partner-name {
    padding: 0.4lh 0.75lh;
    min-width: 44px; /* Better touch target */
  }
}
.partner-item:hover .partner-name {
  color: #1c7041;
}

@media (max-width: 768px) {
.services .details h3 {

  font-size: 16px;
}

.services .details p {
  font-size: 12px;
}
.services2 .details {
  height: 320px;
  z-index: 1000;
  background: white;
}

}

/*
body {
  overflow-x: auto; 
}

.full-width-scroll-container {
  width: 100vw; 
  overflow-x: auto;
  overflow-y: visible;
}

.main-content-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  min-width: 0; 
}

.expandable-content {
  width: max-content; 
  min-width: 100%;
  overflow-x: visible;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
}

.expandable-content-wrapper {
  width: 100%;
  overflow-x: scroll; 
  overflow-y: visible; 
  scrollbar-gutter: stable; 
}

.always-visible-horizontal-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: scroll; 
  overflow-y: visible; 
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  white-space: pre-wrap;
  box-sizing: border-box;
  scrollbar-gutter: stable;
}

.always-visible-horizontal-scroll::-webkit-scrollbar,
.expandable-content-wrapper::-webkit-scrollbar {
  width: 0px; 
  height: 12px; 
}

.always-visible-horizontal-scroll::-webkit-scrollbar:horizontal,
.expandable-content-wrapper::-webkit-scrollbar:horizontal {
  height: 12px;
}

.always-visible-horizontal-scroll::-webkit-scrollbar-track,
.expandable-content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

.always-visible-horizontal-scroll::-webkit-scrollbar-thumb,
.expandable-content-wrapper::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 6px;
  border: 2px solid #f1f1f1;
}

.always-visible-horizontal-scroll::-webkit-scrollbar-thumb:hover,
.expandable-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}


.always-visible-horizontal-scroll,
.expandable-content-wrapper {
  scrollbar-width: auto; 
  scrollbar-color: #c1c1c1 #f1f1f1;
}

*/
/* Base styles */
body {
  overflow-x: auto; 
}

.full-width-scroll-container {
  width: 100vw; 
  overflow-x: auto;
  overflow-y: visible;
}

.main-content-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  min-width: 0; 
}

/* CONDITIONAL CONTENT CONTAINER */
.content-container {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  overflow: hidden;
}

/* When horizontal scroll is needed */
.content-container.with-horizontal-scroll {
  position: relative;
}

/* When horizontal scroll is NOT needed */
.content-container.without-horizontal-scroll {
  /* Simple container without scrollbar */
}

/* TOP SCROLLBAR - Only appears when needed */
.top-horizontal-scrollbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 20px;
  overflow-x: scroll !important;
  overflow-y: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
  margin: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: block; /* Only shows when needsHorizontalScroll is true */
}

/* Scrollbar track - dynamically sized */
.scrollbar-track {
  height: 1px;
  background: transparent;
  width: calc(100% + 50px); /* Default width, will be updated by JS */
  min-width: calc(100% + 50px);
}

/* CONTENT AREA STYLES */

/* Normal content (no horizontal scroll needed) */
.normal-content {
  width: 100%;
  overflow-x: hidden; /* No horizontal scroll */
  overflow-y: visible;
  padding: 15px;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  box-sizing: border-box;
  background-color: #fafafa;
  border-radius: 8px;
}

/* Scrollable content (horizontal scroll needed) */
.scrollable-content {
  width: 100%;
  max-width: 100%;
  overflow-x: scroll !important;
  overflow-y: visible;
  padding: 15px;
  white-space: pre-wrap; /* Preserve formatting but allow some wrapping */
  box-sizing: border-box;
  background-color: #fafafa;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* When content container doesn't need horizontal scroll */
.without-horizontal-scroll .normal-content {
  border-radius: 8px; /* Full border radius when no top scrollbar */
}

/* When content container needs horizontal scroll */
.with-horizontal-scroll .scrollable-content {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* RESPONSIVE BEHAVIOR */

/* Ensure images don't force horizontal scroll unless really needed */
.normal-content img {
  max-width: 100%;
  height: auto;
}

.scrollable-content img {
  max-width: none; /* Allow images to extend beyond container */
  height: auto;
}

/* Tables in normal content should be responsive */
.normal-content table {
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  word-wrap: break-word;
}

/* Tables in scrollable content can extend */
.scrollable-content table {
  min-width: 100%;
  width: max-content;
}

/* Pre and code blocks */
.normal-content pre,
.normal-content code {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.scrollable-content pre,
.scrollable-content code {
  white-space: pre;
  min-width: calc(100% + 20px);
}

/* SCROLLBAR STYLING */

/* Only style scrollbars for elements that actually scroll */
.top-horizontal-scrollbar::-webkit-scrollbar,
.scrollable-content::-webkit-scrollbar {
  width: 0px; 
  height: 12px !important;
}

.top-horizontal-scrollbar::-webkit-scrollbar:horizontal,
.scrollable-content::-webkit-scrollbar:horizontal {
  height: 12px !important;
}

.top-horizontal-scrollbar::-webkit-scrollbar-track,
.scrollable-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

.top-horizontal-scrollbar::-webkit-scrollbar-thumb,
.scrollable-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 6px;
  border: 2px solid #f1f1f1;
}

.top-horizontal-scrollbar::-webkit-scrollbar-thumb:hover,
.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Firefox scrollbar styling */
.top-horizontal-scrollbar,
.scrollable-content {
  scrollbar-width: auto !important; 
  scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Normal content shouldn't have custom scrollbars */
.normal-content {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.normal-content::-webkit-scrollbar {
  display: none; /* Webkit */
}

/* VISUAL ENHANCEMENTS */

/* Add scroll hint to top scrollbar */
.top-horizontal-scrollbar::before {
  content: "↔ Scroll horizontally";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #6c757d;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .top-horizontal-scrollbar {
    height: 16px;
  }
  
  .scrollable-content,
  .normal-content {
    padding: 10px;
  }
  
  .top-horizontal-scrollbar::before {
    font-size: 9px;
    left: 5px;
  }
}

@media (max-width: 480px) {
  .top-horizontal-scrollbar {
    height: 14px;
  }
  
  .scrollable-content,
  .normal-content {
    padding: 8px;
  }
  
  .top-horizontal-scrollbar::before {
    display: none; /* Hide hint on very small screens */
  }
}

/* ACCESSIBILITY */
.top-horizontal-scrollbar:focus,
.scrollable-content:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
.top-horizontal-scrollbar,
.scrollable-content {
  scroll-behavior: smooth;
}

/* PRINT STYLES */
@media print {
  .top-horizontal-scrollbar {
    display: none !important;
  }
  
  .content-container {
    border: none;
    background: white;
  }
  
  .scrollable-content,
  .normal-content {
    overflow: visible !important;
    background: white;
    padding: 0;
  }
}

/* LEGACY SUPPORT - Keep existing classes for backward compatibility */
.always-visible-horizontal-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible; 
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  white-space: pre-wrap;
  box-sizing: border-box;
}

.expandable-content {
  width: max-content; 
  min-width: 100%;
  overflow-x: visible;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
}

.expandable-content-wrapper {
  width: 100%;
  overflow-x: auto; 
  overflow-y: visible; 
}

/* CONTENT TYPE SPECIFIC HANDLING */

/* Handle embedded content that might need horizontal scroll */
.content-area iframe,
.content-area video,
.content-area canvas {
  max-width: 100%;
}

.scrollable-content iframe,
.scrollable-content video,
.scrollable-content canvas {
  max-width: none;
}

/* Handle wide text blocks */
.normal-content .wide-content,
.normal-content .no-wrap {
  white-space: normal !important;
  word-wrap: break-word !important;
}

.scrollable-content .wide-content,
.scrollable-content .no-wrap {
  white-space: nowrap;
  min-width: calc(100% + 50px);
}

/* TRANSITION EFFECTS */
.content-container {
  transition: all 0.3s ease;
}

.top-horizontal-scrollbar {
  transition: opacity 0.3s ease;
}

/* DEBUGGING (remove in production) */
/*
.with-horizontal-scroll {
  border: 2px solid green !important;
}

.without-horizontal-scroll {
  border: 2px solid blue !important;
}

.scrollable-content {
  background: rgba(255, 0, 0, 0.1) !important;
}

.normal-content {
  background: rgba(0, 255, 0, 0.1) !important;
}
*/

/*
.carousel-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; 
  z-index: 1;
}

.carousel-background-image-alternative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center center; 
  z-index: 1;
}


.carousel-background-image-contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
  z-index: 1;
  background-color: #000; 
}
*/
/* Simple solution - Replace your current CSS with this: */

/* Ultra Modern Carousel CSS for React Component */

:root {
  --primary-gradient: linear-gradient(135deg, #e1e2e9 0%, #135722 100%);
  --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Ultra Modern Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: var(--primary-gradient);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
  z-index: 1;
}

/* Floating particles animation */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
      radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
      radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
      radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particles-float 20s linear infinite;
  z-index: 1;
}

@keyframes particles-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

/* Carousel Modern Styling */
.carousel {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.carousel-item {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass morphism background image container */
.carousel-background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 95%;
  object-fit: contain; /* CHANGED: Shows full image without cropping */
  object-position: center center; /* Centers the image */
  //border-radius: 30px;
 // box-shadow: var(--shadow-strong);
  z-index: 1;
  backdrop-filter: blur(10px);
  //border: 1px solid var(--glass-border);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  //background: rgba(248, 249, 250, 0.1); /* ADDED: Background for small images */
}

.carousel-background-image:hover {
  transform: translate(-50%, -50%) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
/*
.carousel-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  padding: 40px;
  border-radius: 25px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  max-width: 600px;
  width: 90%;
  transition: all 0.3s ease;
}

.carousel-container:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) translateY(-5px);
}

.carousel-container h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.carousel-container p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}
*/
/* Ultra Modern Button */
.btn-get-started {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--accent-gradient);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(241, 147, 251, 0.3);
  overflow: hidden;
  border: none;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-get-started:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(241, 147, 251, 0.4);
  color: white;
  text-decoration: none;
}

.btn-get-started:hover::before {
  left: 100%;
}

/* Modern Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 80px !important;
  height: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-size: contain;
  filter: invert(1);
}

/* Modern Indicators */
.carousel-indicators {
  bottom: 30px;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  transition: all 0.3s ease;
  margin: 0;
}

.carousel-indicators .active {
  background: white;
  transform: scale(1.3);
}

/* Ultra Modern Waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  overflow: hidden;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
}

.wave1 {
  fill: rgba(255, 255, 255, 0.1);
  animation: wave-float 6s ease-in-out infinite;
}

.wave2 {
  fill: rgba(255, 255, 255, 0.08);
  animation: wave-float 8s ease-in-out infinite reverse;
}

.wave3 {
  fill: rgba(255, 255, 255, 0.06);
  animation: wave-float 10s ease-in-out infinite;
}

@keyframes wave-float {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-10px) translateY(-5px); }
  50% { transform: translateX(0) translateY(-10px); }
  75% { transform: translateX(10px) translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-background-image {
    width: 95%;
    height: 70%;
    border-radius: 20px;
  }

  .carousel-container {
    padding: 25px;
    max-width: 90%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 60px !important;
    height: 60px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .btn-get-started {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Loading animation */
.carousel-item.loading .carousel-background-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Smooth transitions */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 100px) {
.hero{
  margin-top: 184px;
}
}
/* Special margin for large screens */
/* [dir="rtl"] .submenu-container .level-2 {
    right:100px !important;
     text-align: left !important;;
}

[dir="rtl"] .submenu-container .level-2 .expanded .submenu {
    right:100px !important;
  
}

[dir="rtl"] .submenu-container .level-2 .submenu {
    right:100px !important;
} */

/* Level-2 submenu container positioning */
[dir="rtl"] .submenu-container.level-2 {
    right: 100% !important;
    left: auto !important;
    top: 0 !important;
}

/* Level-2 submenu content positioning */
[dir="rtl"] .submenu-container.level-2 .submenu {
    right: 0 !important;
    left: auto !important;
    text-align: right !important;
}

/* Level-2 menu items text alignment */
[dir="rtl"] .menu-item.level-2 {
    text-align: right !important;
    direction: rtl !important;
}

[dir="rtl"] .menu-item.level-2 .menu-link {
    text-align: right !important;
    direction: rtl !important;
    padding-right: 15px !important;
    padding-left: 5px !important;
}

[dir="rtl"] .menu-item.level-2 .menu-trigger {
    text-align: right !important;
    direction: rtl !important;
    padding-right: 15px !important;
    padding-left: 5px !important;
}

/* Level-2 menu item wrapper */
[dir="rtl"] .menu-item.level-2 .menu-item-wrapper {
    text-align: right !important;
    direction: rtl !important;
}

/* Chevron icons positioning for level-2 */
[dir="rtl"] .menu-item.level-2 .menu-trigger i {
    margin-left: 8px !important;
    margin-right: 0 !important;
    float: left !important;
}

/* Ensure proper width and display */
[dir="rtl"] .submenu-container.level-2 {
    min-width: 250px !important;
    display: block !important;
}

@media (max-width: 1000px) {
    .hidden-xs {
        display: none;
    }
}
/* Responsive adjustments */
@media (max-width: 1000px) {
  #header_center .slogo h4 {
    font-size: 1.2rem;
  }
  
  #header_center .slogo h4.arab {
    font-size: 1.3rem;
  }
  
  #header_center .logo img,
  #header_center .alger img {
    max-height: 60px;
  }
}

      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
             white-space: normal;
        }

       

        p {
            margin-bottom: 0px !important;
            margin-top: 0px !important;
            text-align: justify;
            color: #333;
            font-size: 1.05em;
        }

        ol, ul {
            margin: 15px 0;
            padding-right: 25px;
              margin-bottom: 0px !important;
              margin-top: 0px !important;
        }

        li {
            margin-bottom: 8px;
            color: #444;
            line-height: 1.6;
        }

        ol li::marker {
            color: #1c7041;
            font-weight: bold;
        }

        ul li::marker {
            color: #f5576c;
        }

        .highlight {
            background: linear-gradient(120deg, #ffd89b 0%, #19547b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        ol li {
          display: list-item;
          list-style-position: inside;
      }

      ol li p {
          display: inline;
          margin: 0 !important;
          padding: 0;
      }

      ul li {
          display: list-item;
          list-style-position: inside;
      }

      ul li p {
          display: inline;
          margin: 0 !important;
          padding: 0;
      }
      .hero .btn-get-started {
        
          background: var(--accent-color) !important; ;
          border: 2px solid var(--accent-color) !important; ; 
      }
      .submenu .menu-link {
      
      color: #fff !important; 
  }