/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --default-font: "Poppins";
  --heading-font: "Poppins",  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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1aa3ab; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd; /* 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: #fff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #4db173;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4db173;
  --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:  "Mulish"; */
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  font-family: "Poppins", sans-serif;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  padding-top: 40px;
}

.header .topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  font-family: "Poppins", sans-serif;
  background-color: #1aa3ab;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  height: 80px;
  padding: 10px 0;
}


.header .logo img {
  max-height: 150px;
  margin-right: 8px;
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* .scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fbc013;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  /* .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  } */

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Dropdown container */
.navmenu li {
  position: relative;
}

/* Hide submenu by default */
.navmenu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #fff;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Show dropdown on hover */
.navmenu li:hover > .dropdown-menu {
  display: block;
  border-radius: 0px;
  margin: 11px;
}

/* Dropdown items */
.navmenu .dropdown-menu li {
  padding: 0;
}

.navmenu .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;

}

/* Hover effect */
.navmenu .dropdown-menu li a:hover {
  background-color: #f5f7fa;
}
.logo-class {
  
  max-height: 40%; /* Adjust the height as needed */
  width: auto; /* Maintain aspect ratio */
}

@media (max-width: 991px) {
  .logo-class {
    max-height: 50px; /* Adjust for tablets */
  }
}

@media (max-width: 575px) {
  .logo-class {
    max-height: 40px; /* Adjust for mobile screens */
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 0; /* Reduce space below the logo */
  display: flex;
  align-items: center; 
  margin-top: -50px;
}

.footer .footer-about .logo img {
  max-height: 150px;
  margin-right: 6px;
  display: block;
}
.footer .footer-contact {
  padding-top: 5px; /* Reduce space between logo and paragraph */
  margin-top: -50px; /* Remove any unwanted margin */
}
.footer-talk{
  width: 150%; /* Makes the image responsive */
     /* Limits the size of the image */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any extra space below the image */
    margin: 10px auto; /* Centers the image inside the div */
    border-radius: 5px;
}
@media (max-width: 768px) {
  .footer-talk {
      max-width: 150px; /* Reduce size for smaller screens */
  }
}

@media (max-width: 480px) {
  .footer-talk {
      max-width: 120px; /* Further reduce size for mobile devices */
  }
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  margin-top: 5px;
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 15px;
  padding-top: 10px;
  margin-right: 50px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer-support {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  height: 35%;
}

.support-container {
  display: flex;
  align-items: center;
  background-color: #1CA5A8; /* Background color similar to your image */
  padding: 5px;
  border-radius: 10px;
  color: white;
  width: 55%;
  max-width: 400px;
  height: 35%;
  margin-top: -1%
}

.support-icon {
  width: 49px; 
  height: auto;
  margin-right: 15px;
}

.support-text h4 {
  font-size: 13px;
  font-weight: bold;
  margin: 0;
}

.support-text p {
  font-size: 13px;
  font-weight: bold;
  margin: 5px 0 0;
}

@media (max-width: 768px) {
  .support-container {
    display: flex;
    align-items: center;
    background-color: #1CA5A8; 
    padding: 5px;
    border-radius: 10px;
    color: white;
    width: 85%;
    max-width: 400px;
    height: 35%;
    margin-top: -1%
  }
}

@media (max-width: 480px) {
  .support-container {
    display: flex;
    align-items: center;
    background-color: #1CA5A8; 
    padding: 5px;
    border-radius: 10px;
    color: white;
    width: 85%;
    max-width: 400px;
    height: 35%;
    margin-top: -1%
  }
}
/*--------------------------------------------------------------
# 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);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 90px;
  overflow: clip;
  margin-bottom: 5%;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fbc013;
  padding-bottom: 20px;
  position: relative;
}


.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}
.blogstyle{
  font-family: "Poppins";
  color: #fbc013;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
/*-
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  font-weight:bold;
  display: flex;
  align-items: center;
  background: url("../img/Logo/SMS_HEADER_Image.png");
  background-size: cover;

}

.hero:before {
  content: "";
  
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 39px;
  font-weight: bold;
  line-height: 56px;
  color: #fbc013;
  margin-top: -10px;
}


.hero p {
  color: black;
  margin: 5px 10px 30px 0;
  font-size: 18px;
  font-weight: 500;
}
.autogenteratetext{
  color: #1aa3ab;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.hero img {
  max-width: 20%;
  height: auto;
  display: block;
  
  margin-bottom: 2px; 
}

@media (max-width: 640px) {
  .hero img {
    max-width: 80%; /* Adjust the size for smaller screens */
    margin: 0 auto 15px; /* Centers the image and adds spacing */
    display: block;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.container-circle {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.header-circle {
  margin-bottom: 40px;
}

.subtitle-circle {
  color: #ff9800;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}

.title-circle {
  color: #333;
  font-size: 36px;
  margin-bottom: 20px;
}

.description-circle {
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.navigation-circle ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.navigation-circle a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.navigation-circle a.active,
.navigation-circle a:hover {
  background-color: #ff9800;
  color: white;
}

.features-circle {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.connecting-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
}

/* Default style for Principal (dotted) */
.connecting-circle.principal {
  border: 4px dotted #1aa3ab;
}

/* Full circle styles for other roles */
.connecting-circle.staff {
  border: none;
  background-color: rgba(30, 144, 255, 0.1);
  border: 4px solid rgba(30, 144, 255, 0.6);
}

.connecting-circle.parent {
  border: none;
  background-color: rgba(76, 175, 80, 0.1);
  border: 4px solid rgba(76, 175, 80, 0.6);
}

.connecting-circle.student {
  border: none;
  background-color: rgba(156, 39, 176, 0.1);
  border: 4px solid rgba(156, 39, 176, 0.6);
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 152, 0, 0.2);
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 152, 0, 0.8), rgba(255, 87, 34, 0.8));
}

.admins-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.admins-item.active {
  opacity: 1;
  visibility: visible;
}

.admin-item {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  margin-top: -35px; /* Half of height to center */
  margin-left: -35px; /* Half of width to center */
  z-index: 5;
  transition: transform 0.5s ease;
}

/* Position each feature item around the circle */
.admin-item:nth-child(1) {
  transform: translateX(200px); /* 0 degrees */
}

.admin-item:nth-child(2) {
  transform: translateX(184px) translateY(77px); /* 25.7 degrees */
}

.admin-item:nth-child(3) {
  transform: translateX(141.4px) translateY(141.4px); /* 45 degrees */
}

.admin-item:nth-child(4) {
  transform: translateX(77px) translateY(184px); /* 67.5 degrees */
}

.admin-item:nth-child(5) {
  transform: translateY(200px); /* 90 degrees */
}

.admin-item:nth-child(6) {
  transform: translateX(-77px) translateY(184px); /* 112.5 degrees */
}

.admin-item:nth-child(7) {
  transform: translateX(-141.4px) translateY(141.4px); /* 135 degrees */
}

.admin-item:nth-child(8) {
  transform: translateX(-184px) translateY(77px); /* 157.5 degrees */
}

.admin-item:nth-child(9) {
  transform: translateX(-200px); /* 180 degrees */
}

.admin-item:nth-child(10) {
  transform: translateX(-184px) translateY(-77px); /* 202.5 degrees */
}

.admin-item:nth-child(11) {
  transform: translateX(-141.4px) translateY(-141.4px); /* 225 degrees */
}

.admin-item:nth-child(12) {
  transform: translateX(-77px) translateY(-184px); /* 247.5 degrees */
}

.admin-item:nth-child(13) {
  transform: translateY(-200px); /* 270 degrees */
}

.admin-item:nth-child(14) {
  transform: translateX(77px) translateY(-184px); /* 292.5 degrees */
}

.admin-item:nth-child(15) {
  transform: translateX(141.4px) translateY(-141.4px); /* 315 degrees */
}

.admin-item:nth-child(16) {
  transform: translateX(184px) translateY(-77px); /* 337.5 degrees */
}

.icon {
  width: 100%;
  height: 100%;
  background-color: var(--color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 2px solid white;
}

.feature-icon {
  width: 30px;
  height: 30px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  font-weight: 500;
}

.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.8);
}

.admin-item:hover .tooltip {
  opacity: 1;
}

/* Draw lines from each icon to the center */


/* Adjust the rotation of connecting lines based on position */
.admin-item:nth-child(1)::before {
  transform: rotate(180deg); /* 0 degrees */
}

.admin-item:nth-child(2)::before {
  transform: rotate(205.7deg); /* 25.7 degrees */
}

.admin-item:nth-child(3)::before {
  transform: rotate(225deg); /* 45 degrees */
}

.admin-item:nth-child(4)::before {
  transform: rotate(247.5deg); /* 67.5 degrees */
}

.admin-item:nth-child(5)::before {
  transform: rotate(270deg); /* 90 degrees */
}

.admin-item:nth-child(6)::before {
  transform: rotate(292.5deg); /* 112.5 degrees */
}

.admin-item:nth-child(7)::before {
  transform: rotate(315deg); /* 135 degrees */
}

.admin-item:nth-child(8)::before {
  transform: rotate(337.5deg); /* 157.5 degrees */
}

.admin-item:nth-child(9)::before {
  transform: rotate(0deg); /* 180 degrees */
}

.admin-item:nth-child(10)::before {
  transform: rotate(22.5deg); /* 202.5 degrees */
}

.admin-item:nth-child(11)::before {
  transform: rotate(45deg); /* 225 degrees */
}

.admin-item:nth-child(12)::before {
  transform: rotate(67.5deg); /* 247.5 degrees */
}

.admin-item:nth-child(13)::before {
  transform: rotate(90deg); /* 270 degrees */
}

.admin-item:nth-child(14)::before {
  transform: rotate(112.5deg); /* 292.5 degrees */
}

.admin-item:nth-child(15)::before {
  transform: rotate(135deg); /* 315 degrees */
}

.admin-item:nth-child(16)::before {
  transform: rotate(157.5deg); /* 337.5 degrees */
}

/* Show principal features by default */
.principal-features {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-circle {
    transform: scale(0.8);
    margin-top: 50px;
  }

  .navigation-circle ul {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .features-circle {
    transform: scale(0.6);
    margin-top: 80px;
  }

  .title-circle {
    font-size: 28px;
  }

  .description-circle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .features-circle {
    transform: scale(0.5);
    margin-top: 100px;
  }

  .navigation-circle ul {
    flex-wrap: wrap;
    gap: 10px;
  }

  .navigation-circle a {
    padding: 6px 12px;
    font-size: 14px;
  }

  .title-circle {
    font-size: 24px;
  }

  .description-circle {
    font-size: 13px;
  }
}







.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 16px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 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;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.market-btn {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  padding-left: 2.8125rem;
  -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  border: 1px solid #e7e7e7;
  background-position: center left 0.75rem;
  background-color: #fff;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  text-decoration: none;
}
.market-btn .market-button-title {
  display: block;
  color: #222;
  font-size: 1.125rem;
}
.market-btn .market-button-subtitle {
  display: block;
  margin-bottom: -0.25rem;
  color: #888;
  font-size: 0.75rem;
}
.market-btn:hover {
  background-color: #f7f7f7;
  text-decoration: none;
}
.apple-btn {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.google-btn {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-btn-light {
  border-color: rgba(255, 255, 255, 0.14);
  background-color: rgba(0, 0, 0, 0);
}
.market-btn-light .market-button-title {
  color: #fff;
}
.market-btn-light .market-button-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.market-btn-light:hover {
  background-color: rgba(255, 255, 255, 0.06);
}
.market-btn-light.apple-btn {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiNGRkZGRkYiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.market-btn-light.amazon-btn {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0idXVpZDo1RDIwODkyNDkzQkZEQjExOTE0QTg1OTBEMzE1MDhDOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1QjFCQzQ2QjRGNkQxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1QjFCQzQ2QTRGNkQxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2QUM1ODJFMkIxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2QUM1ODJFM0IxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk2CzRIAAAcFSURBVHja5FxpbBZVFH2ULlhQCq2oiBWLWqCI0AoqKILgGo2KEqlGjSKKIuJaC9EgRKNYURL9YQ2KawKICO5RqZYYsKDFtS1VsSpaU2ypgQYo0HpP5lTGz2/pvNnrTU7yLXNn3px5775777tvurW3tysf5DDBEMEAwUmCEwX9+TsalCRoEfwuqBF8KagTVAt2e9nQZA+vdYRgimCi4GJBd41z7BK8LlgjeMOTVqMHuYxcwRrBgXZnZYegyO32d3NxiGG4LBVMdvkZN7JnfuzGyZNcavQkwXYPyIFkCsoED4SFoDsFHwpSPTb8CwQPO31Sp4fYbMFi5a9MEzwfRILGu2UHNORYwS9BGmIpgldVcGR+0GzQI3T0giKY1XoHZYjBAazHuTT1ywUrOOvtFfQQDBPMEmTYaNd0wZIgOIrzNB29zYKcBOcuseFIljjhKDoxxC7U0FkuGCnYmuC4ewVzNNt1ahCGGILNXy3qIOAcalEHAWuuRZ0/BUcKDvhppM/X0HlQQ+dtDZ0setm+zmKtFo9HCuM9jeuUabYv3e90x0uCfvReewoOZZAai3g4kjs1rlNnwz8LVKjRgwT1EeQIjicGCdoEM5gEsyonCGo19PIEVUFKmO0hGgRbnIwZ/fI4k1TXFtvEJgf8BtNo13R9mv1dgSDYpwJlJO6zaL/6MiLPofHXlX1hI+gYwVjBZYLBDHCz/u9DbKCgkK7AoLAZMTcJwpBZJLgozFbeLYKeFNzRFaZBpwk6TvCpClbyLDAEnS5Y39UcKacIynWInEbGa0i471DGUnMD7dk8XzxNB2IxrH/9wClcR5BmxVLRa4KvYjh3urEY4sAf/e5BT9sg5ynB7UGOxewSNFwZyXEduVIZyfpAi91g9SZNvVkWyWkPI0FYd7peQ289h2UoYkY7BI1SeinNpRo6PcJGEBzBMZq672u6EaEiCOSM09BrVsYKqlXJ12xnml8EwS/J0dDbRb/HK4LS/SIoW3CUhp5O4SbW/s+yERv6QlCa0qsgy1DWqy6m2ZjFJvtFEIZJq4beIcqoj7bSe4pt3N9UwdF+EIT1+D80dWdYOPYZZSTt7cg9fhD0vUpcmRFLrhOM7sRxJYJLHZipkbgr8JogeMPrbDT6E8EZMf7rJXjL7pOPkBf9SHecI/jAZsNB1HPKyP1gSp5CuCHIHCwU/OYVQZiN6ml4wyJPCO72Khb7S/CCCpfs93KIQVAp9p2HN7iKQbJOgu5spVHHbTcfhNKSxz0i5zHB5Zz6rQiKtvKUbpG7Q9uGNrS7K3Mjrrexk3pVgsygbIfaJDjF4V6DoqtL1H9rFDHEahPkiZBWucB2CxzegLbSwV5TnuDpF8TRfdape3Jjl94EQY0NYioFkzp5rdFR9Oe4suNwb2m2Xlh/c8xNNUiooarjZCJabgYBL2oWsWl3C92GGotNQBnNMga2M+U+VnVCBxnRkRyqiPX2MLbcKPjZfF/mNAKWjlNshhBmWccLjqJt6kuSujMbgOKmnWzQF8pY4GuznFYoza6Rm7lVGYVX7yY4fASzoWMYn/Wno4sHhcLzCkYH2DDc9C8/SC60gm4+DriaCl1FzhU8xIfVGVkopBdH9qBr6GkW8mnODqGnHE3OUwcXChoJ5MWbOQvmRMk8/lP2lxyRBLuKYxJFT1ieuZb5m9oQE/Q1CdhOpzGa5HF49TSFUTE9aWz6f5OfJ9B4olLs8JAShIC6Lg45iuHSN6bvdYlCDThnq03f72IWsUj5uIjnkCCffh97ViF/w8TRUT/ZZA5L4sViqERdEnFi5FO2KWMLZu+QEZPOdqP9jyrjnSG38L8BphHymTKVzCQKVlG5EVm4hC1GxUw8IdmVH3BiYF9K6W+h3Vkmg91RfDHRdPxiq9H8AhrtliiW/gb6MNUchsMCQgqcx9sEmwXfkghzj0ebc01OacdCwk/KeCmCijaLxZN3eFFUgZ0Wo0GLTA4ifKpKwQYPSYG3ji0LVzAdHEvgupirUvqYguwbIw+2siC3jd72XBX/FRDj1MF1+zo+xWoavgqlt18sUlI4tDHLDmfYMDiBzj72+FcifkeFGyrY8NqdspgZRYuxWD7H6pkWb6yVSbZ6+iVNNIgN/NzCYd/Ghwd7gf1nKOLsR0OKmGuIxUliJR3fyL1qvUzhzsBoMabukm4le8lUJsI7u06fynhohEfDDj0X1WxrY/yfyZl6plsp12UM+LCGtVUFRz5nFDA0DjmKPWe6irOM7tSGukV0tIrYOL9kLXs1gtKXnTih0zsOS9i48cpI5jd7QEoVPWMYa7zYabmTJ3erOLKcuJ+GfCx9qcE0jHakgQm21bSFFW6y73b1KDIEHxHzmZzKpt+RzxkpgxmEVHWwZA56uznDNNFd2ESXod7LMfu3AAMA3eQjZHI91/8AAAAASUVORK5CYII=);
}
.highlighted-class1{
  color:#4db173;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  font-family: "Poppins", cursive;
}
.phone_text{
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  text-align: justify;
  font-family: "Poppins", cursive;
}
.features h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1;
}

.features .icon-list span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  
  padding: 120px 0;
}

.features .details h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}
.eGuidStyle{
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
}
.eGuidStyle:hover{
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color:white;
}
.features .details .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.sub_heading{
  font-size: 22px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  overflow: visible;
}

.services-2 .section-title {
  text-align: left;
}

.services-2 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.services-2 .section-title p {
  color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.services-2 .swiper-wrapper {
  height: auto;
}

.services-2 .service-item {
  position: relative;
  overflow: hidden;
}

.services-2 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: black;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.services-2 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.services-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.services-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover img {
  transform: scale(1.2);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .navigation-prev {
  left: 10px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .swiper {
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}
/*--------------------------------------------------------------
# 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: 15px;
  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);
  color: var(--accent-color);
  
}
/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-item {
  background: var(--surface-color);
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process .steps-item .steps-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.work-process .steps-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process .steps-item:hover .steps-number {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.work-process .steps-item:hover .steps-image img {
  transform: scale(1.1);
}

.work-process .steps-image {
  position: relative;
  height: 280px;
}

.work-process .steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-process .steps-content {
  position: relative;
  padding: 40px 30px 30px;
}

.work-process .steps-content .steps-number {
  position: absolute;
  left: 30px;
  top: -30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.work-process .steps-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.work-process .steps-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.work-process .steps-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.work-process .steps-features .feature-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.work-process .steps-features .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 1199px) {
  .work-process .steps-image {
    height: 240px;
  }

  .work-process .steps-content {
    padding: 35px 25px 25px;
  }

  .work-process .steps-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .work-process .steps-item {
    margin-bottom: 30px;
  }

  .work-process .steps-image {
    height: 220px;
  }

  .work-process .steps-content {
    padding: 30px 20px 20px;
  }

  .work-process .steps-content .steps-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 25px;
    top: -25px;
  }

  .work-process .steps-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .work-process .steps-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq{
  background-color: #f3f9ff;
}
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: #4db173;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: #1aa3ab;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #1aa3ab;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #1aa3ab;
}

.faq .faq-container .faq-active h3 {
  color: #1aa3ab;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #1aa3ab;
}


/*--------------------------------------------------------------
# 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 */
}


.sms-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

.sms-heading {
    font-family: "Poppins";
    color: #fbc013;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
    text-align: center; 
}

.sms-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  padding: 10px;
}

.sms-module-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sms-module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.sms-image-wrapper {
  width: 100%;
  height: 100%;
  padding: 8px;
  background-color: white;
}

.sms-module-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.sms-module-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background-color: rgba(0,0,0,0.6);
  color: white;
  padding: 10px 5px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
}

.sms-module-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background-color: #1aa3ab;
  color: white;
  border-radius: 16px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sms-module-card:hover .sms-module-details {
  opacity: 1;
  visibility: visible;
}

.sms-module-card.active .sms-module-details {
  opacity: 1;
  visibility: visible;
}

.sms-details-heading {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.sms-features-list {
  list-style: none;
  flex: 1;
  font-size: 12px;
  overflow-y: auto;
}

.sms-feature-item {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  line-height: 1.2;
}

.sms-feature-item:before {
  content: "★";
  margin-right: 5px;
  flex-shrink: 0;
}

.sms-details-footer {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .sms-module-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }
  
  .sms-heading {
      font-size: 22px;
  }
}

@media (max-width: 900px) {
  .sms-module-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
  }
  
  .sms-heading {
      font-size: 20px;
  }
  
  .sms-module-title {
      font-size: 14px;
      padding: 8px 5px;
  }
  
  .sms-image-wrapper {
      padding: 6px;
  }
}

@media (max-width: 600px) {
  .sms-module-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
  }
  
  .sms-heading {
      font-size: 18px;
      margin-bottom: 15px;
  }
  
  .sms-module-details {
      padding: 10px;
  }
  
  .sms-details-heading {
      font-size: 14px;
      margin-bottom: 6px;
  }
  
  .sms-features-list {
      font-size: 10px;
  }
  
  .sms-feature-item {
      margin-bottom: 4px;
  }
  
  .sms-details-footer {
      font-size: 10px;
  }
  
  .sms-image-wrapper {
      padding: 5px;
  }
}

@media (max-width: 400px) {
  .sms-module-grid {
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
  }
  
  .sms-module-card {
      aspect-ratio: 16/9;
      max-height: 160px;
  }
  
  .sms-module-title {
      font-size: 16px;
      padding: 8px;
  }
  
  .sms-details-heading {
      font-size: 16px;
  }
  
  .sms-features-list {
      font-size: 12px;
  }
  
  .sms-details-footer {
      font-size: 12px;
  }
}


/* p */
.p{

}


.quicklink-box {
  padding: 15px;
  background-color: #1aa3ab;
  /* margin: 22px 0 0px; */
  position: relative;
  display: flex;
  width: 65%;
  max-width: 500px;
  border-radius: 10px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quicklink-box {
    
    width: 80%;
    margin: 0 auto;
  }
}

.contact-content {
  flex: 1 1 100%;
}

.contact-content p {
  font-size: 14px;
  color: #fff;
  margin: 2px;
}

.contact-content h5 {
  font-size: 14px;
  color: #fff;
}




:root{
  --marquee-bg-color: #f1f1f1;
  --marquee-bg-color-rgba: 241, 241, 241;
}
*{
  box-sizing: border-box;
}
.marquee {
            position: relative;
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            background-color: var(--marquee-bg-color);
            padding:1px;
        }
        .marquee span {
            display: inline-block;
            font-size: 16px;
            color: #1aa3ab;
            will-change: transform;
            align-self: center;
        }

.marquee::before, .marquee::after{
  content: "";
  position: absolute;
  top:0;
  bottom:0;
  width:10px;
  z-index:2;
}

.marquee::before{
  left:0;
  background: linear-gradient(to right, rgba(var(--marquee-bg-color-rgba), 1), rgba(var(--marquee-bg-color-rgba), 0));
}
.marquee::after{
  right:0;
    background: linear-gradient(to left, rgba(var(--marquee-bg-color-rgba), 1), rgba(var(--marquee-bg-color-rgba), 0));
}



.page-content {
  max-width: 1200px;
}

.page-content h1 {
  margin-bottom: 20px;
  color: #1a365d;
}

/* e-Guide link styling */
.eGuidStyle {
  display: inline-block;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s, transform 0.2s;
}


/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 40px auto;
  width: 80%; /* Reduced from 90% */
  max-width: 800px; /* Reduced from 1000px */
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  z-index: 10;
}

.close:hover {
  color: #000;
}

/* Brochure container */
.brochure-container {
  display: flex;
  background-color: #e6f0ff;
  border-radius: 20px;
  overflow: hidden;
}

/* Image section */
.image-section {
  flex: 0.8; /* Reduced from 1 */
  position: relative;
  padding: 15px; /* Reduced from 20px */
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.decorative-flags {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, 
      rgba(255,165,0,0.7) 0%, 
      rgba(255,192,203,0.7) 25%, 
      rgba(144,238,144,0.7) 50%, 
      rgba(173,216,230,0.7) 75%, 
      rgba(255,255,0,0.7) 100%);
  border-radius: 10px 10px 0 0;
}

/* Form section */
.form-section {
  flex: 1.2; /* Increased ratio compared to image section */
  padding: 30px; /* Reduced from 40px */
}

h2 {
  color: #333;
  margin-bottom: 8px; /* Reduced from 10px */
  font-size: 1.4rem; /* Reduced from 1.5rem */
}

h1 {
  color: #1a365d;
  margin-bottom: 15px; /* Reduced from 20px */
  font-size: 1.6rem; /* Reduced from 1.8rem */
  line-height: 1.3;
}


p {
  color: #555;
  margin-bottom: 15px; /* Reduced from 20px */
  line-height: 1.5;
  font-size: 0.95rem; /* Slightly smaller text */
}

.form-group {
  margin-bottom: 15px; /* Reduced from 20px */
}

label {
  display: block;
  margin-bottom: 6px; /* Reduced from 8px */
  color: #333;
  font-weight: 500;
  font-size: 0.95rem; /* Slightly smaller text */
}

/* .required {
  color: #ff5722;
} */

input, select, textarea {
  width: 100%;
  padding: 10px 15px; /* Reduced from 12px 15px */
  border: 1px solid #ddd;
 
  font-size: 0.95rem; /* Slightly smaller text */
  outline: none;
  background-color: #fff;
  font-family: "poppins";
}

textarea {
  border-radius: 20px;
  min-height: 80px; /* Reduced from 100px */
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  border-color: #4a90e2;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  background-color: white;
}

.country-code {
  display: flex;
  align-items: center;
  padding: 0 12px; /* Reduced from 0 15px */
  background-color: white;
  border-right: 1px solid #ddd;
}

.country-code img {
  width: 18px; /* Reduced from 20px */
  margin-right: 5px;
}

.phone-input input {
  border: none;
  border-radius: 0;
}

.download-btn {
  background-color: #1aa3ab;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px; /* Reduced from 15px 30px */
  font-size: 0.95rem; /* Slightly smaller text */
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}


/* Thank you content */
.thank-you-content {
  background-color: #e6f0ff;
  padding: 40px 30px; /* Reduced from 60px 40px */
  text-align: center;
  border-radius: 20px;
}

.success-icon {
  width: 70px; /* Reduced from 80px */
  height: 70px; /* Reduced from 80px */
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px; /* Reduced from 40px */
  margin: 0 auto 15px; /* Reduced from 20px */
}

.thank-you-content h2 {
  font-size: 1.8rem; /* Reduced from 2rem */
  color: #1a365d;
  margin-bottom: 15px; /* Reduced from 20px */
}

/* Responsive design */
@media (max-width: 768px) {
  .brochure-container {
      flex-direction: column;
  }
  
  .image-section, .form-section {
      width: 100%;
  }
  
  h1 {
      font-size: 1.4rem; /* Reduced from 1.5rem */
  }
  
  .modal-content {
      width: 90%;
      margin: 20px auto;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .modal-content {
      width: 95%;
      margin: 10px auto;
  }
  
  .form-section {
      padding: 20px;
  }
  
  h1 {
      font-size: 1.3rem;
  }
}





.guide-container{
  background-color: #f3f9ff;
  padding-top:  5%;
}




/* Modal Overlay */
.enquiry-modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Content */
.enquiry-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.enquiry-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
}

/* Title & Subtitle */
.enquiry-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.enquiry-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 25px;
  color: #666;
}

/* Form Structure */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.enquiry-group {
  flex: 1;
  min-width: 45%;
  display: flex;
  flex-direction: column;
}

.enquiry-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.enquiry-group input,
.enquiry-group select,
.enquiry-group textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
 
  outline: none;
}

.enquiry-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Phone Field Special Styling */
.enquiry-phone-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.enquiry-country-code {
  background-color: #f0f0f0;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Submit Button */
.enquiry-submit-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease;
}

.enquiry-submit-btn:hover {
  background-color: #0056b3;
}

/* Thank You Message */
.enquiry-thank-you {
  text-align: center;
  padding: 30px 20px;
}

.enquiry-success-icon {
  font-size: 50px;
  color: green;
  margin-bottom: 15px;
}


.enquiry-phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-code-select {
  width: 39%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

.enquiry-phone-wrapper input[type="tel"] {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}



/* Responsive Enquiry Form Styles */

/* Base styles for the modal */
.enquiry-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.enquiry-modal-content {
  background-color:#f3f9ff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Title & Subtitle */
.enquiry-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.enquiry-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 25px;
  color: #666;
}

/* Form Structure */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.enquiry-group {
  flex: 1;
  min-width: 45%;
  display: flex;
  flex-direction: column;
}

.enquiry-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.enquiry-group input,
.enquiry-group select,
.enquiry-group textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  color: #555;
}

.enquiry-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Phone Field Styling */
.enquiry-phone-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-code-select {
  width: 39%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

.enquiry-phone-wrapper input[type="tel"] {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Submit Button */
.enquiry-submit-btn {
  background-color: #1aa3ab;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease;
  width: auto;
  min-width: 150px;
}

.enquiry-submit-btn:hover {
  background-color: #158f96;
}

/* Close Button */
.enquiry-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #555;
  cursor: pointer;
  z-index: 10;
}

/* Thank You Message */
.enquiry-thank-you {
  text-align: center;
  padding: 30px 20px;
}

.enquiry-success-icon {
  font-size: 50px;
  color: green;
  margin-bottom: 15px;
}

/* Responsive styles for larger tablets and smaller desktops */
@media (max-width: 992px) {
  .enquiry-modal-content {
    width: 95%;
    max-width: 700px;
    padding: 25px;
  }

  .enquiry-title {
    font-size: 24px;
  }

  .enquiry-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
  .enquiry-modal-content {
    margin: 10% auto;
    padding: 20px;
  }

  .enquiry-row {
    gap: 15px;
  }

  .enquiry-group {
    min-width: 100%; /* Make all form fields full width on tablets */
  }

  .enquiry-title {
    font-size: 22px;
  }

  .enquiry-subtitle {
    font-size: 14px;
  }

  .enquiry-submit-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Responsive styles for mobile phones */
@media (max-width: 576px) {
  .enquiry-modal-content {
    margin: 5% auto;
    padding: 15px;
    width: 95%;
  }

  .enquiry-row {
    flex-direction: column;
    gap: 12px;
  }

  .enquiry-group label {
    font-size: 13px;
  }

  .enquiry-group input,
  .enquiry-group select,
  .enquiry-group textarea {
    padding: 8px;
    font-size: 13px;
  }

  .enquiry-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .enquiry-subtitle {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .enquiry-phone-wrapper {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .country-code-select {
    width: 100%;
  }

  .enquiry-close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
}

/* Responsive styles for small mobile phones */
@media (max-width: 375px) {
  .enquiry-modal-content {
    padding: 12px;
  }

  .enquiry-form {
    gap: 15px;
  }

  .enquiry-group {
    margin-bottom: 0;
  }

  .enquiry-title {
    font-size: 18px;
  }

  .enquiry-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .enquiry-submit-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}


#enquiryModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px 0;
}

.modal-content {
  background: #f3f9ff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  position: relative;
  margin: auto;
  box-sizing: border-box;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.enquiry-header {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #0097a7;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.enquiry-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.enquiry-column, .enquiry-column-full {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  min-width: 250px; /* Ensure columns don't get too narrow */
}

.enquiry-column-full {
  flex: 1 1 100%;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.phone-input-wrapper select {
  width: auto;
  min-width: 80px;
  flex-shrink: 0;
}

.phone-input-wrapper input {
  flex: 1;
}

.submit-button {
  padding: 12px 25px;
  background-color: #0097a7;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  align-self: flex-end;
  width: auto;
}

.submit-button:hover {
  background-color: #007c91;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .modal-content {
    width: 95%;
    padding: 25px;
  }
  
  .enquiry-header {
    font-size: 22px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .enquiry-column {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .enquiry-form {
    gap: 15px;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .enquiry-header {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .submit-button {
    width: 100%;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
  }
  
  .enquiry-header {
    font-size: 18px;
    padding: 10px;
  }
  
  .phone-input-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .phone-input-wrapper select,
  .phone-input-wrapper input {
    width: 100%;
  }
  
  input, select, textarea {
    padding: 8px;
    font-size: 13px;
  }
  
  label {
    font-size: 13px;
  }
}

/* Fix for modal display on mobile */
@media (max-height: 700px) {
  #enquiryModal {
    align-items: flex-start;
    padding-top: 10px;
  }
  
  .modal-content {
    margin-top: 0;
    margin-bottom: 20px;
  }
}



/* Thank You Popup Styling */
.thank-you-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.thank-you-content {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popup-scale 0.4s ease-out;
}

@keyframes popup-scale {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
}

.thank-you-close:hover {
  color: #333;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

.checkmark-circle .background {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1aa3ab;
  position: absolute;
}

.checkmark-circle .checkmark {
  border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
  animation-delay: 100ms;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
  animation-fill-mode: forwards;
}

.checkmark-circle .checkmark:after {
  opacity: 0;
  height: 40px;
  width: 20px;
  transform-origin: left top;
  border-right: 7px solid #fff;
  border-top: 7px solid #fff;
  border-radius: 2px !important;
  content: '';
  left: 25px;
  top: 45px;
  position: absolute;
}

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 20px;
    opacity: 1;
  }
  40% {
    height: 40px;
    width: 20px;
    opacity: 1;
  }
  100% {
    height: 40px;
    width: 20px;
    opacity: 1;
  }
}

.thank-you-title {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.thank-you-message {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.thank-you-button {
  background-color: #1aa3ab;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.thank-you-button:hover {
  background-color: #158f96;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .thank-you-content {
    padding: 30px 20px;
  }
  
  .checkmark-circle {
    width: 70px;
    height: 70px;
  }
  
  .checkmark-circle .background {
    width: 70px;
    height: 70px;
  }
  
  .checkmark-circle .checkmark:after {
    height: 35px;
    width: 18px;
    left: 22px;
    top: 40px;
    border-right: 6px solid #fff;
    border-top: 6px solid #fff;
  }
  
  .thank-you-title {
    font-size: 22px;
  }
  
  .thank-you-message {
    font-size: 14px;
  }
  
  .thank-you-button {
    padding: 10px 25px;
    font-size: 15px;
  }
}



.book-now-btn {
  background-color: #ffc107; /* Bootstrap warning yellow */
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}





/* Popup Container */
#bookingPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Popup Content */
.popup-wrapper {
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 600px;
  position: relative;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0 auto;
}

/* Close Button */
.popup-close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #7f8c8d;
  z-index: 10;
}

.popup-close-icon:hover {
  color: #2c3e50;
}

/* Popup Title */
.popup-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #2c3e50;
}

/* Popup Description */
.popup-description {
  text-align: center;
  margin-bottom: 25px;
  color: #7f8c8d;
  font-size: 14px;
}

/* Form Styles */
.demo-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-field-half {
  width: calc(50% - 8px);
}

.form-field-full {
  width: 100%;
}

/* Form Elements */
.demo-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #555;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: black;
}

/* Phone Input Container */
.phone-field-container {
  display: flex;
  gap: 5px;
}

.phone-field-container select {
  width: 120px;
  flex-shrink: 0;

}

/* Submit Button */
.form-submit-btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.form-submit-btn:hover {
  background-color: #2980b9;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .form-field-half {
    width: 100%;
  }
}



#bookingPopup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px 0;
}

/* .popup-wrapper {
  background: #f3f9ff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  position: relative;
  margin: auto;
  box-sizing: border-box;
} */

.popup-close-icon {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.popup-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #0097a7;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.demo-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-field-half, .form-field-full {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  min-width: 250px; /* Ensure columns don't get too narrow */
}

.form-field-full {
  flex: 1 1 100%;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.phone-field-container {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.phone-field-container select {
  width: auto;
  min-width: 80px;
  flex-shrink: 0;
  font-family: "poppins";
}

.phone-field-container input {
  flex: 1;
}

.form-submit-btn {
  padding: 12px 25px;
  background-color: #0097a7;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  align-self: flex-end;
  width: auto;
}

.form-submit-btn:hover {
  background-color: #007c91;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .popup-wrapper {
    width: 95%;
    padding: 25px;
  }
  
  .popup-title {
    font-size: 22px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .form-field-half {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .demo-form {
    gap: 15px;
  }
  
  .popup-wrapper {
    padding: 20px;
  }
  
  .popup-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .form-submit-btn {
    width: 100%;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .popup-wrapper {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
  }
  
  .popup-title {
    font-size: 18px;
    padding: 10px;
  }
  
  .phone-field-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .phone-field-container select,
  .phone-field-container input {
    width: 100%;
  }
  
  input, select, textarea {
    padding: 8px;
    font-size: 13px;
  }
  
  label {
    font-size: 13px;
  }
}

/* Fix for modal display on mobile */
@media (max-height: 700px) {
  #bookingPopup {
    align-items: flex-start;
    padding-top: 10px;
  }
  
  .popup-wrapper {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

/* Thank You Popup Styling */
#thankYouPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.thank-you-wrapper {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popup-scale 0.4s ease-out;
}

@keyframes popup-scale {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-close-icon {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close-icon:hover {
  color: #333;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

.checkmark-circle .background {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1aa3ab;
  position: absolute;
}

.checkmark-circle .checkmark {
  border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
  animation-delay: 100ms;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
  animation-fill-mode: forwards;
}

.checkmark-circle .checkmark:after {
  opacity: 0;
  height: 40px;
  width: 20px;
  transform-origin: left top;
  border-right: 7px solid #fff;
  border-top: 7px solid #fff;
  border-radius: 2px !important;
  content: '';
  left: 25px;
  top: 45px;
  position: absolute;
}

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 20px;
    opacity: 1;
  }
  40% {
    height: 40px;
    width: 20px;
    opacity: 1;
  }
  100% {
    height: 40px;
    width: 20px;
    opacity: 1;
  }
}

.thank-you-wrapper h2 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.thank-you-wrapper p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.thank-you-button {
  background-color: #1aa3ab;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.thank-you-button:hover {
  background-color: #158f96;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .thank-you-wrapper {
    padding: 30px 20px;
  }
  
  .checkmark-circle {
    width: 70px;
    height: 70px;
  }
  
  .checkmark-circle .background {
    width: 70px;
    height: 70px;
  }
  
  .checkmark-circle .checkmark:after {
    height: 35px;
    width: 18px;
    left: 22px;
    top: 40px;
    border-right: 6px solid #fff;
    border-top: 6px solid #fff;
  }
  
  .thank-you-wrapper h2 {
    font-size: 22px;
  }
  
  .thank-you-wrapper p {
    font-size: 14px;
  }
  
  .thank-you-button {
    padding: 10px 25px;
    font-size: 15px;
  }
}

.thankYouPopup{
 display: none;
  position: fixed;
  z-index: 1000;
  left: 50%; 
  top: 50%;
  width: 500px; 
  height: 500px;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px 0;
}

/* Default: hide the button on large screens */
.book-now-btn-mb {
  display: none;
}

/* On small screens (mobile): show the button */
@media screen and (max-width: 600px) {
  .book-now-btn-mb {
    display: block; 
     background-color: #ffc107; /* Bootstrap warning yellow */
  color: white;
  padding: 6px 3PX;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  }
}
