/**
* 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: "Lostar", 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: #101c1f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #00dafe; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #faf8f6; /* 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: #f8fdfe;  /* The default color of the main navmenu links */
  --nav-hover-color: #f3f8f9; /* 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: #00dafe; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #00dafe; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #fcfbfa; /* 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: #00dafe;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #00dafe;
  --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: 'Lostar', serif;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #f42a3e;
  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: #00dafe;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  padding-left: 0 !important;
}

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

.header .logo img {
  height: 40px;
  margin-right: 8px;
  padding-left: 0px !important;
  margin-left: 0px !important;
  float: left !important;
}

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

.scrolled .header {
  box-shadow: 0px 0 18px #00dafe;
}

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

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

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

  .sign-in-btn:hover,
  .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;
  }

  .sign-in-btn {
    font-size: 1rem;
    color: #f2f5f6;
    border: 1px solid #f7f8f9;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #00dafe;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  /* .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 20px;
    cursor: pointer;
    transition: color 0.3s;
  } */
  .mobile-nav-toggle {
    position: absolute; /* Set consistent positioning */
    top: 15px;          /* Align to the same top value */
    right: 15px;        /* Align to the same right value */
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    z-index: 9999;      /* Ensure it stays above other elements */
    transition: color 0.3s, transform 0.3s; /* Optional transition for effects */
  }

  .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 #00dafe;
  }

  .sign-in-btn,
  .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: #00dafe;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0d0d0e;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: rgb(228, 223, 223);
    color: #00dafe;
    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: #00dafe;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #00dafe;
  }

  .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 .mobile-nav-toggle {
    position: absolute; /* Same as above */
    top: 15px;          /* Same top alignment */
    right: 15px;        /* Same right alignment */
    font-size: 32px;    /* Optional for slight differentiation */
    z-index: 9999;      /* Matches the hamburger button */
    color: #fff;        /* Optional color change for the close button */
    transform: rotate(180deg); /* Optional: visual rotation */
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    transition: 0.3s;
  }

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

/* ============================= slider ====================== */
#slider {
	position: relative;
	z-index: 10;
}

.subpage #slider>.img {
	width: 100%;
	position: relative;
	z-index: 1;
}

.subpage #slider>.img img {
	width: 100%;
	position: relative;
	z-index: 1;
}


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

/* ==========================
   Custom Preloader
   ========================== */
/* ==========================
   Modern Preloader (Glass + Neon)
   ========================== */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0f0f10 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container {
  text-align: center;
  width: 240px;
}

.loader-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 50px;
}

.loader-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #00ffe0, #0078ff, #00ffe0);
  animation: loadMove 1.3s infinite linear;
}

.loader-text {
  margin-top: 16px;
  color: #00fff7;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1.2px;
  font-size: 0.95rem;
  opacity: 0.8;
}

@keyframes loadMove {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #00dafe;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: 2px solid white;
  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;
}

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/

.whatsapp-button {
  position: fixed;
  bottom: 65px; /* Distance from the bottom of the screen */
  right: 20px; /* Distance from the right of the screen */
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  z-index: 1000; /* Ensure it appears above other elements */
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-button:hover {
  background-color: #1ebe57; /* Darker green on hover */
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 40px;
    height: 40px;
  }

  .whatsapp-button i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# 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: 15px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 10px;
  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
--------------------------------------------------------------*/

.swiper {
  width: 100%;
  height: 100vh;
  padding-top: 40px; /* Full height for large devices */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #f7f5f5; /* Background color as fallback */
}

.swiper-slide img {
  width: 100%; /* Default image size */
  height: auto;
  max-height: 100%; /* Prevents overly large images */
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(119, 118, 118, 0.5);
}

/* Pagination and navigation customization */
.swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #ff6f61;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: #007bff;
  font-size: 24px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .swiper {
    height: 35vh; /* Smaller height for mobile */
  }

  .swiper-slide img {
    width: 100%; /* Full width on mobile */
    max-height: 100%; /* Scale proportionally */
  }
}
/*--------------------------------------------------------------
# Welcome header
--------------------------------------------------------------*/
.header-text {
  text-align: center;
  margin: 20px 0;
  color: #00dafe;
}
.header-text h2 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  color: #00dafe; /* Matches the light blue tone in the image */
  margin: 0;
}

.header-text h2 .create {
  font-family: 'Brush Script MT', cursive; /* Artistic cursive style */
  font-size: 5.5rem; /* Slightly larger for emphasis */
  font-weight: normal;
}

.header-text h2 .and-be {
  font-family: 'Playfair Display', serif; /* Bold serif style */
  font-size: 3rem;
  font-weight: bold;
  display: block; /* Moves to the next line */
  margin-top: 5px; /* Adjusts spacing */
}

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

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


/*--------------------------------------------------------------
# Search box
--------------------------------------------------------------*/
.search-box {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.search-box input {
  width: 70%;
  border: 2px solid #00dafe;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Basic Button Styles
--------------------------------------------------------------*/

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #00dafe;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #007bff;
}

.btn:active {
  transform: scale(0.98);
}

/* Container for Buttons */
.btn_container {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center the buttons horizontally */
  gap: 10px; /* Space between buttons */
  margin: 10px auto; /* Center the container on the page */
}

/* Responsive Layout: Stack Buttons Vertically on Small Screens */
@media (max-width: 600px) {
  .btn_container {
    flex-direction: row; /* Ensure buttons are side-by-side even on smaller screens */
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Gallery container */
.gallerys {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  justify-content: center;
}

/* Gallery items */
.gallery-item {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

/* Mobile view: Two items per row */
@media (max-width: 600px) {
  .gallery-item {
    width: calc(50% - 10px); /* Adjust for the gap */
  }
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.751); /* Dark semi-transparent background */
  backdrop-filter: blur(3px); /* Blurred background */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto; /* Allow scrolling vertically if content exceeds modal height */
  padding: 0; /* Optional padding for spacing */
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto; /* Restrict the maximum width */
  height: auto; /* Restrict the maximum height */
  margin: auto; /* Center content vertically and horizontally */
}

#modalImage, #modalVideo {
  width: 100%; /* Make the image fill the modal-content */
  max-width: 700px; /* Limit the maximum width of the image */
  height: 100%; /* Maintain aspect ratio */
  max-height: 700px;
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Optional shadow for aesthetic */
}

.close {
  position: absolute;
  top: 10px; /* Place the close button near the top */
  right: 10px; /* Align close button to the top-right corner */
  font-size: 20px;
  color: #FFFFFF; /* Pure bright white */
  cursor: pointer;
  background: #000000; /* Solid pure black */
  padding: 10px 15px;
  border-radius: 50%;
  border: 2px solid #FFFFFF; /* Bright white border */
  z-index: 1001; /* Ensure close button is always on top */
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.close:hover {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
  transform: scale(1.1);
}

/* ****************************** */
/* ==== Modern Gallery ==== */
/* ==== Modern Gallery with Lightbox ==== */
.modern-gallery {
  background: #fff;
  padding: 60px 0;
}

.mg-btn-container .mg-btn {
  background: #111;
  color: #fff;
  border: none;
  margin: 5px;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
  cursor: pointer;
}

.mg-btn:hover,
.mg-btn.active {
  background: #37d4f0;
  color: #fff;
}

.mg-wrapper {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

.mg-wrapper::-webkit-scrollbar {
  width: 8px;
}
.mg-wrapper::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.mg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.mg-item,
.mg-video {
  display: block;
  width: 230px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.mg-item img,
.mg-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mg-item:hover,
.mg-video:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.mg-video {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mg-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* ****************************** */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  border-radius: 10px;
  filter: drop-shadow(0 5px 10px 0 #ffffff);
  width: 250px;
  height: 90px;
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: 0.6s ease-in;
}

.card h4{
  color:#000000e1
}

.card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: -15px;
  background: #00dafe;
  height:220px;
  width: 25px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card:hover::before{
    transition-delay:0.2s ;

  transform: scale(40);
}

.card:hover h4{
    color: #ffffff;

}

.card p{
    padding: 10px 0;
}


@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.review-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.review-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.review-card {
  background: #faf5f5;
  border-radius: 10px;
  box-shadow: 6px 4px 6px rgba(0, 0, 0, 0.334);
  padding: 20px;
  min-width: 300px;
  max-width: 300px;
  text-align: center;
  flex-shrink: 0;
}

.review-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviewer-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f4f4f9;
}

.reviewer-name {
  font-size: 14px;
  color: #555;
  font-weight: bold;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .review-card {
    min-width: 250px;
    max-width: 250px;
  }

  .prev-btn,
  .next-btn {
    width: 30px;
    height: 30px;
  }
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px; /* Adjust spacing between stars */
}

.star {
  display: inline-block;
  width: 20px; /* Adjust size */
  height: 20px; /* Adjust size */
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 
    50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  ); /* Star shape */
}

/* Full Star */
.star.full {
  background-color: gold;
}

/* Half Star */
.star.half {
  background: linear-gradient(to right, gold 50%, #ddd 50%);
}

/* Empty Star */
.star.empty {
  background-color: #ddd; /* Gray for empty star */
}

.review-count {
  color: #666; /* Review count color */
  font-size: 2rem; /* Adjust size as needed */
}


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

.contact .info-item i {
  color: rgba(118, 113, 113, 0.792);
  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: #00dafe;
}

.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: #00dafe;
  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%);
}


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



/*--------------------------------------------------------------
# more Section
--------------------------------------------------------------*/

.icon-container {
  display: flex;
  gap: 20px; /* Adjust spacing between icons */
}

.icon {
  width: 80px; /* Adjust size */
  height: auto;
}

/* Hover effect */
.icon:hover {
  transform: scale(1.1); /* Grows the icon slightly */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

/* Active/click effect */
.icon:active {
  transform: scale(0.95); /* Slightly shrinks on click */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); /* Reduces shadow for a pressed effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .icon {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .icon {
    width: 40px;
  }
}