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

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
h2{
  color:#2a7a81 !important;
}

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

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

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

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

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

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

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

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

.headding-color{
   color: var(--nav-hover-color);
   font-size: 18px;
}
/*--------------------------------------------------------------
# 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: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  body.index-page .nayra-nav .dropdown ul a,
  body.index-page .nayra-nav .dropdown ul a:focus {
    color: #297980;
    padding-top:5px;
    padding-bottom: 5px;
    
  }
 

  body.index-page .nayra-nav .dropdown ul a.active,
  body.index-page .nayra-nav .dropdown ul a.active:focus {
    color: rgb(228 105 72);
  }

  body.index-page .nayra-nav .dropdown ul a:hover,
  body.index-page .nayra-nav .dropdown ul a:focus:hover {
    color: rgb(228 105 72);
  }

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

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

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

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

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

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

  body.index-page .nayra-nav .dropdown ul a,
  body.index-page .nayra-nav .dropdown ul a:focus {
    color: #297980;
  }

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

  body.index-page .nayra-nav .dropdown ul a:hover,
  body.index-page .nayra-nav .dropdown ul .active:hover,
  body.index-page .nayra-nav .dropdown ul li:hover>a {
    color: rgb(228 105 72);
  }

  body.index-page .nayra-nav .dropdown ul a.active:hover,
  body.index-page .nayra-nav .dropdown ul li:hover>a.active {
    color: rgb(228 105 72);
  }

  .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;
  }
}
.uppercase-text{
  text-transform: uppercase !important;
}
.dropdown a span .uppercase-text{
  text-transform: uppercase !important;

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

  body.index-page .nayra-nav .dropdown ul a,
  body.index-page .nayra-nav .dropdown ul a:focus {
    color: #297980;
  }

  body.index-page .nayra-nav .dropdown ul a.active,
  body.index-page .nayra-nav .dropdown ul a.active:focus {
    color: #f37d60;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 5px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 5px;
}
.footer_box{
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: space-between;
}
.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 50%);
  margin: 0 5px;
  transition: 0.3s;
}

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

 .wellness-footer {
   background: #174F45;
   color: rgba(255, 255, 255, 0.86);
   box-shadow: none;
   padding: 0;
   position: relative;
   overflow: hidden;
 }

 .wellness-footer a {
   color: rgba(255, 255, 255, 0.78);
 }

 .wellness-footer a:hover {
   color: rgba(255, 255, 255, 0.95);
 }

 .wellness-footer .wf-wave {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   height: 84px;
   transform: translateY(-1px);
 }

 .wellness-footer .wf-wave svg {
   width: 100%;
   height: 100%;
   display: block;
 }

 .wellness-footer .wf-inner {
   max-width: 1280px;
   margin: 0 auto;
   padding: 110px 24px 26px 24px;
 }

 .wellness-footer .wf-grid {
   display: grid;
   grid-template-columns: repeat(5, minmax(0, 1fr));
   gap: 32px;
 }

 .wellness-footer .wf-col-title {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0;
   border: 0;
   background: transparent;
   color: rgba(255, 255, 255, 0.92);
   font-family: "Inter", "Poppins", var(--nav-font);
   font-weight: 600;
   letter-spacing: 0.02em;
   text-transform: none;
   font-size: 14px;
 }

 .wellness-footer .wf-col-title i {
   font-size: 12px;
   opacity: 0.8;
 }

 .wellness-footer .wf-col-title-static {
   font-family: "Inter", "Poppins", var(--nav-font);
   font-weight: 600;
   letter-spacing: 0.02em;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.92);
   margin-bottom: 10px;
 }

 .wellness-footer .wf-col-body {
   margin-top: 14px;
   display: grid;
   gap: 10px;
 }

 .wellness-footer .wf-col-body a {
   font-family: "Inter", "Poppins", var(--default-font);
   font-size: 13px;
   line-height: 1.35;
 }

 .wellness-footer .wf-news-copy {
   margin: 0 0 12px 0;
   font-family: "Inter", "Poppins", var(--default-font);
   font-size: 13px;
   line-height: 1.5;
   color: rgba(255, 255, 255, 0.82);
 }

 .wellness-footer .wf-news-form {
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 10px;
   align-items: center;
 }

 .wellness-footer .wf-news-form input {
   width: 100%;
   height: 44px;
   padding: 0 16px;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, 0.22);
   background: rgba(255, 255, 255, 0.08);
   color: rgba(255, 255, 255, 0.92);
   outline: none;
   font-family: "Inter", "Poppins", var(--default-font);
   font-size: 13px;
 }

 .wellness-footer .wf-news-form input::placeholder {
   color: rgba(255, 255, 255, 0.6);
 }

 .wellness-footer .wf-news-form input:focus {
   border-color: rgba(244, 197, 66, 0.85);
   box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.18);
 }

 .wellness-footer .wf-news-form button {
   height: 44px;
   padding: 0 18px;
   border-radius: 999px;
   border: 0;
   background: #F4C542;
   color: #0c2b25;
   font-family: "Inter", "Poppins", var(--nav-font);
   font-weight: 600;
   font-size: 13px;
   letter-spacing: 0.02em;
   transition: transform 0.15s ease, filter 0.2s ease;
 }

 .wellness-footer .wf-news-form button:hover {
   filter: brightness(0.98);
   transform: translateY(-1px);
 }

 .wellness-footer .wf-social {
   margin-top: 14px;
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .wellness-footer .wf-social a {
   width: 38px;
   height: 38px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 1px solid rgba(255, 255, 255, 0.20);
   background: rgba(255, 255, 255, 0.06);
   transition: background 0.2s ease, border-color 0.2s ease;
 }

 .wellness-footer .wf-social a:hover {
   background: rgba(255, 255, 255, 0.10);
   border-color: rgba(255, 255, 255, 0.28);
 }

 .wellness-footer .wf-social i {
   font-size: 16px;
 }

 .wellness-footer .wf-bottom {
   margin-top: 34px;
   padding-top: 18px;
   border-top: 1px solid rgba(255, 255, 255, 0.14);
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   flex-wrap: wrap;
   font-family: "Inter", "Poppins", var(--default-font);
   font-size: 12px;
   color: rgba(255, 255, 255, 0.72);
 }

 .wellness-footer .wf-bottom-right {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }

 .wellness-footer .wf-bottom-right a {
   color: rgba(255, 255, 255, 0.72);
 }

 .wellness-footer .wf-bottom-right a:hover {
   color: rgba(255, 255, 255, 0.92);
 }

 @media (min-width: 992px) {
   .wellness-footer .wf-accordion-toggle i {
     display: none;
   }
 }

 @media (max-width: 991px) {
   .wellness-footer .wf-inner {
     padding-top: 96px;
   }

   .wellness-footer .wf-grid {
     grid-template-columns: 1fr;
     gap: 14px;
   }

   .wellness-footer .wf-col {
     padding: 10px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.14);
   }

   .wellness-footer .wf-col:first-child {
     border-top: 0;
   }

   .wellness-footer .wf-col-body {
     margin-top: 10px;
   }

   .wellness-footer .wf-accordion-panel {
     display: none;
   }

   .wellness-footer .wf-accordion.is-open .wf-accordion-panel {
     display: grid;
   }

   .wellness-footer .wf-accordion.is-open .wf-accordion-toggle i {
     transform: rotate(180deg);
   }

   .wellness-footer .wf-accordion-toggle i {
     transition: transform 0.2s ease;
   }

   .wellness-footer .wf-newsletter {
     border-top: 1px solid rgba(255, 255, 255, 0.14);
     padding-top: 16px;
   }
 }

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

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

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

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


/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #2a7a81;
  color:#2a7a81;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
margin: 0;
    font-size: 27px;
    font-weight: 700;
    line-height: 33px;
    color: #2a7a81;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 20px 0;
  font-size: 18px;
  font-weight: 400;
}

.hero .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

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

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}



 body.index-page .nayra-header {
   /* background-color: rgba(15, 60, 68, 0.55); */
   background-color: #ffff;
   backdrop-filter: blur(14px);
   -webkit-backdrop-filter: blur(14px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }

 /* body.index-page .nayra-header.sticky-top {
   top: 38px;
 } */

 body.index-page .nayra-logo {
   gap: 8px;
 }

 body.index-page .nayra-logo .nayra-logo-mark {
   font-family: "Playfair Display", var(--heading-font);
   font-weight: 700;
   font-size: 22px;
   letter-spacing: 0.02em;
   color: #ffffff;
 }

 body.index-page .nayra-logo .nayra-logo-sub {
   font-family: "Inter", var(--nav-font);
   font-weight: 500;
   font-size: 12px;
   letter-spacing: 0.28em;
   color: rgba(255, 255, 255, 0.75);
 }

 body.index-page .nayra-nav a,
 body.index-page .nayra-nav a:focus {
   color: rgb(42 119 127);
   font-family: "Inter", var(--nav-font);
   font-weight: 500;
   letter-spacing: 0.06em;
   font-size: 16px;
 }

 body.index-page .nayra-nav li:hover>a,
 body.index-page .nayra-nav .active,
 body.index-page .nayra-nav .active:focus {
   color: rgb(228 105 72);
 }

 body.index-page .header .btn-getstarted.nayra-contact-btn,
 body.index-page .header .btn-getstarted.nayra-contact-btn:focus {
       background: linear-gradient(180deg, rgb(228 105 72) 0%, rgb(245 147 117) 100%);
   color: #0b2f36;
   border: 1px solid rgba(255, 255, 255, 0.18);
   box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
 }

 body.index-page .header .btn-getstarted.nayra-contact-btn:hover,
 body.index-page .header .btn-getstarted.nayra-contact-btn:focus:hover {
  background: linear-gradient(180deg, rgb(228 105 72) 0%, rgb(245 147 117) 100%);
   color: #0b2f36;
 }

 body.index-page .nayra-hero {
  /* background: radial-gradient(900px 520px at 78% 34%, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 65%), radial-gradient(700px 420px at 20% 25%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #297980 0%, #075464 50%, #297980 100%); */
  background: linear-gradient(80deg, #287883 -10.68%, #f8846a 96.14%);
  /* background: linear-gradient(80deg, #287883 9.32%, #f8846a 109.14%); */
   padding: 110px 0 120px 0;
   min-height: 78vh;
 }

 body.index-page .nayra-hero::after {
   content: "";
   position: absolute;
   left: 0;
   right: 0;
   bottom: -1px;
   height: 110px;
   background: #ffffff;
   clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
 }

 body.index-page .nayra-hero .container {
   position: relative;
   z-index: 1;
 }

 body.index-page .nayra-hero-title {
   font-family: "Playfair Display", var(--heading-font);
   color: #ffffff;
   font-size: 35px;
   line-height: 1.05;
   font-weight: 700;
   letter-spacing: -0.01em;
   margin: 0 0 18px 0;
 }

 body.index-page .nayra-gold {
   color: rgb(228 105 72);
 }

 body.index-page .nayra-hero-lead {
   font-family: "Inter", var(--default-font);
   color: rgba(255, 255, 255, 0.78);
   font-size: 18px;
   line-height: 1.7;
   max-width: 520px;
   margin: 0 0 28px 0;
 }

 body.index-page .nayra-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 999px;
   padding: 12px 26px;
   font-family: "Inter", var(--nav-font);
   font-weight: 600;
   font-size: 13px;
   letter-spacing: 0.12em;
   transition: 0.25s;
   box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
 }
.bg_service{
 background-color: #f4fafd;
}
 body.index-page .nayra-btn-primary {
      background: linear-gradient(180deg, rgb(228 105 72) 0%, rgb(245 147 117) 100%);
   color: #0b2f36;
   border: 1px solid rgba(255, 255, 255, 0.16);
 }

 body.index-page .nayra-btn-primary:hover {
   transform: translateY(-1px);
   box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
   color: #0b2f36;
 }

 body.index-page .nayra-btn-outline {
   background: rgba(255, 255, 255, 0.04);
   color: rgba(255, 255, 255, 0.9);
   border: 1px solid rgb(228 105 72);
   box-shadow: none;
 }

 body.index-page .nayra-btn-outline:hover {
   background: rgb(228 105 72);
   color: #ffffff;
   transform: translateY(-1px);
 }

 body.index-page .nayra-product-stage {
   position: relative;
   width: 100%;
   max-width: 520px;
   margin-left: auto;
   margin-right: auto;
   padding: 30px 20px 52px 20px;
 }

 body.index-page .nayra-glow {
   position: absolute;
   inset: 12% 10% 16% 10%;
   background: radial-gradient(circle at 50% 45%, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 65%);
   filter: blur(6px);
   z-index: 0;
 }

 body.index-page .nayra-product {
   position: relative;
   z-index: 1;
   width: 100%;
   height: auto;
   border-radius: 22px;
   transform: rotate(-7deg) translateY(4px);
   box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
 }

 body.index-page .nayra-shadow {
   position: absolute;
   left: 18%;
   right: 18%;
   bottom: 22px;
   height: 24px;
   background: rgba(0, 0, 0, 0.55);
   filter: blur(14px);
   border-radius: 999px;
   transform: translateY(0);
   z-index: 0;
 }

 body.index-page .nayra-featured {
   background: #ffffff;
   padding: 70px 0;
 }

 body.index-page .nayra-featured-title {
   font-family: "Inter", var(--nav-font);
   text-align: center;
   font-size: 12px;
   letter-spacing: 0.28em;
   text-transform: uppercase;
   color: rgba(15, 60, 68, 0.65);
   margin-bottom: 26px;
 }

 body.index-page .nayra-logo-grid {
   display: grid;
   grid-template-columns: repeat(6, minmax(0, 1fr));
   gap: 18px;
   align-items: center;
 }

 body.index-page .nayra-logo-item {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 14px 10px;
   border: 1px solid rgba(15, 60, 68, 0.08);
   border-radius: 16px;
   background: rgba(255, 255, 255, 0.7);
   box-shadow: 0 18px 40px rgba(6, 20, 24, 0.06);
 }

 body.index-page .nayra-logo-item img {
   max-height: 44px;
   width: auto;
   opacity: 0.7;
   filter: grayscale(100%);
   transition: 0.25s;
 }

 body.index-page .nayra-logo-item:hover img {
   opacity: 1;
   filter: none;
 }

 @media (max-width: 1199px) {
  

   body.index-page .nayra-hero-title {
     font-size: 34px;
   }

   body.index-page .nayra-logo-grid {
     grid-template-columns: repeat(3, minmax(0, 1fr));
   }
 }

 @media (max-width: 640px) {
   body.index-page .nayra-hero {
     padding: 90px 0 110px 0;
   }

   body.index-page .nayra-hero-title {
     font-size: 34px;
   }

   body.index-page .nayra-hero-lead {
     font-size: 16px;
   }

   body.index-page .nayra-logo-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
   }
 }

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: rgb(228 105 72);
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid rgb(228 105 72);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background:rgb(228 105 72);
  color: #ffffff;
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 20px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
}

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

.services .service-item:hover:before,
.services .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 20px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

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

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

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

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

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

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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

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

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

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

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

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

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

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

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

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

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

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

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

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

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

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
 background: linear-gradient(180deg, rgb(228 105 72) 0%, rgb(245 147 117) 100%);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.mission-statement{
      background-color: #2a7a81;
    position: relative;
    bottom: -20px;
    width: 100%;
    color: #fff;
}
.span-circle{
      background-color: #2a7a81;
    color: #fff;
    width: 20px;
    height: 20px;
    text-align: center;
    margin: auto;
    justify-content: center;
    display: flex;
    align-items: center;
}
.legal_box{
  background-color: #f4fafd;
}
.legal_icon{
  background-color: #CCE8C9;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #215C5C;

}
.legal_left{
  align-items: center;
    display: flex;

}
.button_more{
      border:none;
    background-color: #2a7a81;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 5px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
  width:60%;
  margin:auto;

}
.services-img{
  text-align: center;
  margin:auto;
}

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

.service-details h4 {
  font-size: 20px;
  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
--------------------------------------------------------------*/

body.wealth-about-page {
  --wm-forest: #0f3d2e;
  --wm-forest-2: #0b2f24;
  --wm-soft: #dfeee7;
  --wm-sage: #86b89d;
  --wm-ink: #10231c;
  --wm-muted: rgba(16, 35, 28, 0.68);
  background: #ffffff;
}

body.wealth-about-page h2 {
  color: var(--wm-forest) !important;
  letter-spacing: -0.02em;
}

body.wealth-about-page .wm-section {
  padding: 70px 0;
}

body.wealth-about-page .wm-section-head {
  max-width: 760px;
  margin: 0 auto 26px auto;
  text-align: center;
}

body.wealth-about-page .wm-section-head p {
  color: var(--wm-muted);
  margin: 10px 0 0 0;
  font-size: 16px;
  line-height: 1.65;
}

body.wealth-about-page .wm-media-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 61, 46, 0.16);
  background: #ffffff;
}

body.wealth-about-page .wm-media-card img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

body.wealth-about-page .wm-card {
  background: #ffffff;
  border: 1px solid rgba(15, 61, 46, 0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(15, 61, 46, 0.10);
  height: 100%;
}

body.wealth-about-page .wm-card-soft {
background: #f4fafd;
}

body.wealth-about-page .wm-card-title {
  margin: 0 0 10px 0;
  color: var(--wm-ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.wealth-about-page .wm-card-copy {
  margin: 0;
  color: var(--wm-muted);
  font-size: 15px;
  line-height: 1.7;
}

body.wealth-about-page .wm-feature-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

body.wealth-about-page .wm-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

body.wealth-about-page .wm-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 238, 231, 0.9);
  color: var(--wm-forest);
  border: 1px solid rgba(15, 61, 46, 0.14);
}

body.wealth-about-page .wm-point-title {
  font-weight: 700;
  color: var(--wm-ink);
  line-height: 1.25;
}

body.wealth-about-page .wm-point-copy {
  margin-top: 2px;
  color: var(--wm-muted);
  font-size: 14px;
  line-height: 1.55;
}

body.wealth-about-page .wm-card-iconbox {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(223, 238, 231, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-forest);
  border: 1px solid rgba(15, 61, 46, 0.14);
  margin-bottom: 14px;
}

body.wealth-about-page .wm-card-iconbox i {
  font-size: 22px;
}

body.wealth-about-page .wm-stats {
background: radial-gradient(1200px 420px at 20% 10%, rgb(23 98 109), transparent 55%), radial-gradient(900px 420px at 90% 25%, rgba(223, 238, 231, 0.22), transparent 55%), linear-gradient(180deg, #206f78, var(--wm-forest-2));
  padding: 64px 0;
}

body.wealth-about-page .wm-stats .wm-stat {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  height: 100%;
}

body.wealth-about-page .wm-stat-value {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.wealth-about-page .wm-stat-label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

body.wealth-about-page .wm-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(223, 238, 231, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-forest);
  border: 1px solid rgba(15, 61, 46, 0.14);
  margin-bottom: 14px;
}

body.wealth-about-page .wm-feature-icon i {
  font-size: 22px;
}

body.wealth-about-page .wm-person {
  text-align: center;
  padding: 28px 22px;
}

body.wealth-about-page .wm-person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 14px auto;
  background: linear-gradient(180deg, rgba(134, 184, 157, 0.55), rgba(223, 238, 231, 0.95));
  border: 1px solid rgba(15, 61, 46, 0.14);
  color: var(--wm-forest);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}

body.wealth-about-page .wm-person-name {
  font-weight: 800;
  color: var(--wm-ink);
  letter-spacing: -0.01em;
}

body.wealth-about-page .wm-person-role {
  margin-top: 4px;
  color: var(--wm-muted);
  font-size: 14px;
}

body.wealth-about-page .wm-cta {
  padding: 0 0 80px 0;
}

body.wealth-about-page .wm-cta-inner {
  border-radius: 22px;
  padding: 36px;
      background: linear-gradient(180deg, rgb(10 87 103 / 28%), rgba(255, 255, 255, 1));
  border: 1px solid rgba(15, 61, 46, 0.12);
  box-shadow: 0 18px 48px rgba(15, 61, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.wealth-about-page .wm-cta-copy h2 {
  margin: 0;
  color: var(--wm-forest) !important;
}

body.wealth-about-page .wm-cta-copy p {
  margin: 10px 0 0 0;
  color: var(--wm-muted);
  max-width: 620px;
}

body.wealth-about-page .wm-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.wealth-about-page .wm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s;
  border: 1px solid transparent;
  white-space: nowrap;
}

body.wealth-about-page .wm-btn-primary {
      background: linear-gradient(180deg, rgb(228 105 72) 0%, rgb(245 147 117) 100%);
  color: #ffffff;
}

body.wealth-about-page .wm-btn-primary:hover {
     background: linear-gradient(180deg, rgb(228 105 72) 0%, rgb(245 147 117) 100%);
  color: #ffffff;
}

body.wealth-about-page .wm-btn-ghost {
  background: #ffffff;
  color: var(--wm-forest);
  border-color: rgba(15, 61, 46, 0.22);
}

body.wealth-about-page .wm-btn-ghost:hover {
  background: rgba(223, 238, 231, 0.55);
  color: var(--wm-forest);
}

@media (max-width: 991px) {
  body.wealth-about-page .wm-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body.wealth-about-page .wm-cta-actions {
    justify-content: flex-start;
  }
}

body.benefits-page .benefits-hero {
  position: relative;
  padding: 120px 0 90px 0;
  background: radial-gradient(900px 520px at 78% 34%, rgba(168, 85, 247, 0.20) 0%, rgba(168, 85, 247, 0) 60%), radial-gradient(700px 420px at 18% 20%, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 62%), linear-gradient(135deg, #0b1b3a 0%, #1a0b3a 45%, #0b1b3a 100%);
}

body.benefits-page .benefits-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: #ffffff;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

body.benefits-page .benefits-hero .container {
  position: relative;
  z-index: 1;
}

body.benefits-page .benefits-hero-title {
  margin: 0 0 14px 0;
  color: #ffffff;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.benefits-page .benefits-hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
}

body.benefits-page .benefits-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: "Inter", var(--nav-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

body.benefits-page .benefits-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(13, 34, 74, 0.35);
}

body.benefits-page .benefits-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(13, 34, 74, 0.45);
}

body.benefits-page .benefits-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

body.benefits-page .benefits-btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.95);
}

body.benefits-page .benefits-hero-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

body.benefits-page .benefits-hero-panel-inner {
  padding: 26px;
  display: grid;
  gap: 14px;
}

body.benefits-page .benefits-hero-metric {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

body.benefits-page .benefits-hero-metric-value {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.benefits-page .benefits-hero-metric-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.4;
}

body.benefits-page .benefits {
  padding-top: 70px;
}

body.benefits-page .benefits-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px auto;
}

body.benefits-page .benefits-title h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}

body.benefits-page .benefits-title p {
  margin: 12px 0 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

body.benefits-page .benefit-card {
  height: 100%;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(180deg, rgb(10 87 103 / 28%), rgba(255, 255, 255, 1));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 52px rgba(2, 6, 23, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.benefits-page .benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.12);
}

body.benefits-page .benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 238, 231, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.20);
  color: #1e40af;
  margin-bottom: 14px;
}

body.benefits-page .benefit-icon i {
  font-size: 22px;
}

body.benefits-page .benefit-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

body.benefits-page .benefit-copy {
  margin: 0;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  body.benefits-page .benefits-hero {
    padding: 105px 0 80px 0;
  }

  body.benefits-page .benefits-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  body.benefits-page .benefits-hero-title {
    font-size: 32px;
  }

  body.benefits-page .benefits-hero-panel-inner {
    padding: 20px;
  }
}

/* --------------------------------------------------------------------------
   Runelix global enterprise design system
   Applies to all static pages that share main.css.
   -------------------------------------------------------------------------- */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Manrope", "Inter", system-ui, sans-serif;
  --nav-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --rx-ink: #0b1220;
  --rx-ink-soft: #344054;
  --rx-muted: #667085;
  --rx-line: #d9e4e7;
  --rx-surface: #ffffff;
  --rx-surface-soft: #f5f9fb;
  --rx-primary: #176b73;
  --rx-primary-dark: #0f4850;
  --rx-primary-soft: #e5f4f5;
  --rx-accent: #e46b4a;
  --rx-blue: #2563eb;
  --rx-radius-md: 16px;
  --rx-radius-lg: 24px;
  --rx-shadow-sm: 0 8px 24px rgba(15, 72, 80, 0.08);
  --rx-shadow-md: 0 18px 54px rgba(15, 72, 80, 0.14);
  --rx-shadow-lg: 0 30px 90px rgba(11, 18, 32, 0.18);
  --rx-container: 1180px;
}

body.index-page {
  color: var(--rx-ink-soft);
  background:
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 520px),
    var(--rx-surface);
  font-family: var(--default-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.index-page h1,
body.index-page h2,
body.index-page h3,
body.index-page h4,
body.index-page h5,
body.index-page h6 {
  color: var(--rx-ink);
  font-family: var(--heading-font);
  letter-spacing: 0;
}

body.index-page .container,
body.index-page .container-xl {
  max-width: var(--rx-container);
}

body.index-page .section {
  padding: clamp(72px, 8vw, 108px) 0;
}

body.index-page a:focus-visible,
body.index-page button:focus-visible,
body.index-page input:focus-visible,
body.index-page textarea:focus-visible {
  outline: 3px solid rgba(228, 107, 74, 0.35);
  outline-offset: 3px;
}

body.index-page .nayra-header {
  min-height: 76px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 228, 231, 0.82);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.index-page.scrolled .nayra-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(15, 72, 80, 0.09);
}

body.index-page .header .logo img {
  max-height: 44px;
  object-fit: contain;
}

body.index-page .nayra-nav ul {
  gap: 2px;
}

body.index-page .nayra-nav a,
body.index-page .nayra-nav a:focus {
  color: var(--rx-ink-soft);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 12px 13px;
  border-radius: 999px;
}

body.index-page .nayra-nav li:hover>a,
body.index-page .nayra-nav .active,
body.index-page .nayra-nav .active:focus {
  color: var(--rx-primary-dark);
  border-bottom: 2px solid var(--rx-primary-dark);
}

body.index-page .nayra-nav .dropdown ul {
  min-width: 232px;
  padding: 10px;
  border: 1px solid rgba(217, 228, 231, 0.9);
  border-radius: var(--rx-radius-md);
  box-shadow: var(--rx-shadow-md);
}

body.index-page .nayra-nav .dropdown ul a,
body.index-page .nayra-nav .dropdown ul a:focus {
  color: var(--rx-ink-soft);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

body.index-page .nayra-nav .dropdown ul a:hover,
body.index-page .nayra-nav .dropdown ul li:hover>a {
  color: var(--rx-primary-dark);
 border-bottom:2px solid var(--rx-primary-dark);
}

body.index-page .header .btn-getstarted.nayra-contact-btn,
body.index-page .header .btn-getstarted.nayra-contact-btn:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  margin-left: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(23, 107, 115, 0.24);
}

body.index-page .header .btn-getstarted.nayra-contact-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(23, 107, 115, 0.3);
}

body.index-page .nayra-hero {
  min-height: auto;
  padding: clamp(74px, 8vw, 118px) 0 clamp(70px, 8vw, 104px);
  background:
    linear-gradient(135deg, rgba(229, 244, 245, 0.92), rgba(255, 255, 255, 0.45) 52%, rgba(255, 240, 235, 0.76)),
    #f8fbfc;
  overflow: hidden;
}

body.index-page .nayra-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 107, 115, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 115, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

body.index-page .nayra-hero .container {
  position: relative;
  z-index: 1;
}

body.index-page .nayra-hero-title {
  max-width: 740px;
  margin: 0;
  color: var(--rx-ink);
  font-size: clamp(38px, 5.1vw, 66px);
  line-height: 1.02;
  font-weight: 800;
}

body.index-page .nayra-gold {
  color: var(--rx-primary-dark);
  background: linear-gradient(135deg, var(--rx-primary), var(--rx-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.index-page .nayra-hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--rx-ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
}

body.index-page .nayra-hero-cta {
  margin-top: 30px;
}

body.index-page .nayra-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.index-page .nayra-btn-outline {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 40px rgba(23, 107, 115, 0.25);
}

body.index-page .nayra-btn-outline:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(23, 107, 115, 0.32);
}

body.index-page .nayra-product-stage {
  position: relative;
  width: min(100%, 570px);
  margin-left: auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  box-shadow: var(--rx-shadow-lg);
}

body.index-page .nayra-glow,
body.index-page .nayra-shadow {
  display: none;
}

body.index-page .nayra-product {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(1.04) contrast(1.02);
}

body.index-page .section-title,
body.index-page .wm-section-head,
body.index-page .benefits-title {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 44px;
  text-align: center;
}

body.index-page .section-title h2,
body.index-page .wm-section-head h2,
body.index-page .benefits-title h2 {
  margin-bottom: 12px;
  color: var(--rx-ink) !important;
  font-size: clamp(30px, 4vw, 30px);
  line-height: 1.08;
  font-weight: 800;
}

body.index-page .section-title h2::before,
body.index-page .section-title h2::after {
  display: none;
}

body.index-page .section-title p,
body.index-page .wm-section-head p,
body.index-page .benefits-title p {
  color: var(--rx-muted);
  font-size: 17px;
  line-height: 1.65;
}

body.index-page .service-details {
  background: var(--rx-surface-soft);
}

body.index-page .services-list,
body.index-page .service-content,
body.index-page .wm-card,
body.index-page .wm-stat,
body.index-page .benefit-card,
body.index-page .contact .info-item,
body.index-page .php-email-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 228, 231, 0.92);
  border-radius: var(--rx-radius-lg);
  box-shadow: var(--rx-shadow-sm);
}

body.index-page .services-list {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

body.index-page .services-list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--rx-ink-soft);
  background: transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.35;
}

body.index-page .services-list a:hover,
body.index-page .services-list a.active {
  color: var(--rx-primary-dark);
  background: var(--rx-primary-soft);
}

body.index-page .service-content {
  padding: clamp(22px, 3vw, 34px);
}

body.index-page .services-img,
body.index-page .wm-media-card img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 22px;
}

body.index-page .service-content h3,
body.index-page .wm-card-title,
body.index-page .benefit-title {
  color: var(--rx-ink);
  font-size: clamp(22px, 2.4vw, 20px);
  font-weight: 800;
  line-height: 1.18;
}

body.index-page .service-content p,
body.index-page .service-content li,
body.index-page .wm-card-copy,
body.index-page .benefit-copy {
  color: var(--rx-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

body.index-page .service-content ul {
  display: grid;
  gap: 12px;
  padding-left: 0;
  margin: 16px 0 0;
  list-style: none;
}

body.index-page .service-content li {
  position: relative;
  padding-left: 30px;
}

body.index-page .service-content li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--rx-primary);
  font-family: "bootstrap-icons";
}

body.index-page .wm-section,
body.index-page .wm-stats,
body.index-page .wm-why {
  padding: clamp(72px, 8vw, 108px) 0;
}

body.index-page .wm-media-card,
body.index-page .about-visual {
  padding: 16px;
  background: linear-gradient(135deg, var(--rx-primary-soft), #ffffff);
  border: 1px solid rgba(217, 228, 231, 0.9);
  border-radius: 32px;
  box-shadow: var(--rx-shadow-md);
}

body.index-page .wm-card {
  height: 100%;
  padding: clamp(24px, 3vw, 34px);
}

body.index-page .wm-card-iconbox,
body.index-page .wm-point-icon,
body.index-page .wm-feature-icon,
body.index-page .benefit-icon,
body.index-page .contact .info-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rx-primary), var(--rx-blue));
  box-shadow: 0 12px 28px rgba(23, 107, 115, 0.22);
}

body.index-page .wm-card-iconbox,
body.index-page .wm-feature-icon,
body.index-page .benefit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #e8f8f6;
    color: #00897b;
}

body.index-page .wm-point {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

body.index-page .wm-point-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: #e8f8f6;
  color: #00897b;
}

body.index-page .wm-point-title {
  color: var(--rx-ink);
  font-weight: 800;
}

body.index-page .wm-point-copy {
  color: var(--rx-muted);
  line-height: 1.65;
}

body.index-page .wm-stats {
  background: var(--rx-surface-soft);
}

body.index-page .wm-stat {
  height: 100%;
  padding: 24px;
  text-align: center;
}

body.index-page .wm-stat-value {
  color: var(--rx-primary-dark);
  font-family: var(--heading-font);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
}

body.index-page .wm-stat-label {
  margin-top: 10px;
  color: var(--rx-muted);
  font-weight: 700;
}

body.index-page .wm-cta {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(229, 244, 245, 0.92), rgba(255, 240, 235, 0.72)),
    #ffffff;
}

body.index-page .wm-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid rgba(217, 228, 231, 0.92);
  border-radius: 28px;
  box-shadow: var(--rx-shadow-md);
}

body.index-page .wm-cta-copy h2 {
  margin: 0;
  color: var(--rx-ink);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
}

body.index-page .wm-cta-copy p {
  margin: 10px 0 0;
  color: var(--rx-muted);
  line-height: 1.7;
}

body.index-page .wm-btn,
body.index-page .benefits-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

body.index-page .wm-btn-primary,
body.index-page .benefits-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
  box-shadow: 0 18px 40px rgba(23, 107, 115, 0.25);
}

body.index-page .wm-btn-ghost,
body.index-page .benefits-btn-ghost {
  color: var(--rx-primary-dark);
  background: #ffffff;
  border: 1px solid rgba(23, 107, 115, 0.22);
}

body.index-page .benefits-hero {
  background:
    linear-gradient(135deg, rgba(15, 72, 80, 0.94), rgba(23, 107, 115, 0.82)),
    #0f4850;
}

body.index-page .benefits-hero-title,
body.index-page .benefits-hero .benefits-hero-title {
  color: #ffffff;
}

body.index-page .benefits-hero-lead {
  color: rgba(255, 255, 255, 0.78);
}

body.index-page .benefits-hero-panel,
body.index-page .benefits-hero-metric {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

body.index-page .benefit-card {
  height: 100%;
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.index-page .benefit-card:hover,
body.index-page .wm-card:hover,
body.index-page .service-content:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 115, 0.24);
  box-shadow: var(--rx-shadow-md);
}

body.index-page .contact {
  background:
    linear-gradient(135deg, rgba(229, 244, 245, 0.86), rgba(255, 255, 255, 0.96) 48%, rgba(255, 240, 235, 0.72)),
    #ffffff;
}

body.index-page .contact .info-item {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding: 22px;
}

body.index-page .contact .info-item i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  font-size: 20px;
  background: #e8f8f6;
    color: #00897b;
}

body.index-page .contact .info-item h3 {
  margin-bottom: 7px;
  color: var(--rx-ink);
  font-size: 17px;
  font-weight: 800;
}

body.index-page .contact .info-item p {
  margin: 0;
  color: var(--rx-muted);
  line-height: 1.65;
}

body.index-page .php-email-form {
  padding: clamp(24px, 4vw, 36px);
}

body.index-page .php-email-form .form-control {
  min-height: 52px;
  padding: 13px 15px;
  color: var(--rx-ink);
  background: #ffffff;
  border: 1px solid rgba(217, 228, 231, 1);
  border-radius: 14px;
  box-shadow: none;
  font-size: 15px;
}

body.index-page .php-email-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

body.index-page .php-email-form .form-control:focus {
  border-color: rgba(23, 107, 115, 0.58);
  box-shadow: 0 0 0 4px rgba(23, 107, 115, 0.12);
}

body.index-page .php-email-form button[type="submit"] {
  min-height: 50px;
  padding: 13px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rx-primary-dark), var(--rx-primary));
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(23, 107, 115, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.index-page .php-email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(23, 107, 115, 0.32);
}

body.index-page .footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0b343a;
  box-shadow: none;
}

body.index-page .footer_box {
  gap: 18px;
}

body.index-page .footer .copyright p {
  color: rgba(255, 255, 255, 0.78);
}

body.index-page .footer .sitename {
  color: #ffffff;
}

body.index-page .footer .social-links {
  margin-top: 0;
}

body.index-page .footer .social-links a {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

body.index-page .footer .social-links a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  body.index-page .nayra-nav.position-absolute {
    position: static !important;
    transform: none !important;
  }

  body.index-page .mobile-nav-toggle {
    color: var(--rx-primary-dark);
  }

  body.index-page .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
  }

  body.index-page .navmenu ul {
    inset: 74px 18px 20px;
    padding: 12px;
    border-radius: 20px;
  }

  body.index-page .nayra-nav a,
  body.index-page .nayra-nav a:focus {
    padding: 12px 14px;
    border-radius: 12px;
  }
}

@media (max-width: 991px) {
  body.index-page .nayra-hero {
    padding-top: 58px;
  }

  body.index-page .nayra-product-stage {
    margin: 0 auto 18px;
  }

  body.index-page .services-list {
    position: static;
  }

  body.index-page .wm-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  body.index-page .section,
  body.index-page .wm-section,
  body.index-page .wm-stats,
  body.index-page .wm-why {
    padding: 64px 0;
  }

  body.index-page .header .logo img {
    max-height: 38px;
  }

  body.index-page .header .btn-getstarted.nayra-contact-btn {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  body.index-page .nayra-hero-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  body.index-page .nayra-btn,
  body.index-page .wm-btn {
    width: 100%;
  }

  body.index-page .footer_box {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.index-page *,
  body.index-page *::before,
  body.index-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


.automation-section{
    padding:100px 0 70px;
    background:linear-gradient(180deg,#ffffff 0%,#f9fbfc 100%);
}

.automation-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.sub-title{
    display:block;
    font-size:42px;
    font-weight:700;
    color:#0f2d3a;
    margin-bottom:18px;
}

.automation-section h2{

    max-width:720px;
    margin:auto;

    font-size:18px;
    font-weight:500;

    line-height:1.7;

    color:#5d6973;
}

.description{

    max-width:650px;

    margin:auto !important;

    font-size:15px;

    line-height:1.8;

    color:#7d8790;
}

.automation-btn{

    display:inline-block;

    padding:14px 34px;

    border-radius:30px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:linear-gradient(135deg,#00897b,#00695c);

    box-shadow:0 15px 30px rgba(0,137,123,.25);

    transition:.3s;
}

.automation-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,137,123,.35);
    color:#ffff !important;

}

.feature-wrapper{

    margin-top:70px;

    background:#fff;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    display:grid;

    grid-template-columns:repeat(4,1fr);

    overflow:hidden;
}

.feature-card-automation{

    padding:35px 28px;

    text-align:left;

    border-right:1px solid #edf1f4;

    transition:.3s;
}

.feature-card-automation:last-child{

    border-right:none;

}

.feature-card-automation:hover{

    background:#fbfcfd;

}

.feature-card-automation .icon{

    width:46px;

    height:46px;

    border-radius:12px;

    background:#e8f8f6;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#00897b;

    margin-bottom:20px;
}

.feature-card-automation .icon i{

    font-size:18px;

}

.feature-card-automation h4{

    font-size:18px;

    margin-bottom:12px;

    color:#23313a;
}

.feature-card-automation p{

    font-size:14px;

    line-height:1.7;

    color:#6c7680;
}

@media(max-width:991px){

.feature-wrapper{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.sub-title{

font-size:32px;

}

.automation-section h2{

font-size:16px;

}

.feature-wrapper{

grid-template-columns:1fr;

}

.feature-card{

border-right:none;

border-bottom:1px solid #eee;

}

.feature-card:last-child{

border-bottom:none;

}

}


.clientSwiper {
    padding: 20px 0;
}

.nayra-logo-item {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.nayra-logo-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: .3s;
}

.nayra-logo-item:hover img {
    filter: grayscale(0%);
}

.nayra-logo-item:hover {
    transform: translateY(-5px);
}