
/* 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: "Nunito",  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: #012970; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4154f1; /* 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: #012970;  /* The default color of the main navmenu links */
  --nav-hover-color: #39ffc0; /* 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: #4154f1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #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);
}

/* 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: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 65px;   /* default for desktop */
  height: auto;
  width: auto;
  max-width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .header .logo img {
    max-height: 55px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .header .logo img {
    max-height: 45px;
  }
  
  .hero::after {
   
    bottom: -75px !important;
   
}
  
  
}


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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: #002954;
  font-size: 15px;
  padding: 12px 30px;
  margin: 0 0 0 30px;
  border-radius: 26px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* box-shadow: 0 4px 15px rgba(57, 255, 192, 0.3); */
  position: relative;
  overflow: hidden;
}

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

.header .btn-getstarted:hover::before {
  left: 100%;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: #2ce0a9;
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(57, 255, 192, 0.4); */
  border-color: rgba(255, 255, 255, 0.1);
}

.header .btn-getstarted:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(57, 255, 192, 0.2);
}

/* Alternative dark version */
.header .btn-getstarted.dark {
  background: #002954;
  border-color: #39ffc0;
  color: #39ffc0;
  box-shadow: 0 4px 15px rgba(0, 41, 84, 0.3);
}

.header .btn-getstarted.dark:hover {
  background: #00203d;
  color: #ffffff;
  border-color: #39ffc0;
  box-shadow: 0 6px 20px rgba(0, 41, 84, 0.4);
}

/* Gradient version */
.header .btn-getstarted.gradient {
  background: linear-gradient(135deg, #39ffc0, #002954);
  border: none;
}

.header .btn-getstarted.gradient:hover {
  background: linear-gradient(135deg, #2ce0a9, #00203d);
}



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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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 ul li .btn-getstarted {
    display: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

/* Tablet */
@media (max-width: 992px) {
   .cd {
    display: none !important;
  }

}

/* Mobile */
@media (max-width: 576px) {
   .cd{
    display: none !important;
  }

}

/* Features Grid - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown ul.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 12px 20px; /* row-gap | column-gap */
    padding: 15px 20px;
    max-width: 700px;
    margin: auto;
  }

  .navmenu .listing-dropdown ul.features-grid li {
    min-width: unset;
  }

  .navmenu .listing-dropdown ul.features-grid li a {
    display: block;
    padding: 10px 15px;
    text-align: left;
    white-space: nowrap;
  }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 768px) {
  .navmenu .listing-dropdown ul.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .navmenu .listing-dropdown ul.features-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column */
    gap: 8px;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

  .footer {
      color: #ffffff;
      background-color: #05cea9;
      background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(90deg, #05cea9 0%, #04b895 25%, #038a78 50%, #02675b 75%, #002954 100%);
      background-size: 60px 60px, 100% 100%;
      font-size: 14px;
      position: relative;
      padding-top: 50px;
    }

    .footerimg {
      width: 150px;
      background: rgba(255, 255, 255, .3);
      border-radius: 6px;
      padding: 4px;
      transition: all 0.3s ease;
    }

    .footerimg:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      background: rgba(255, 255, 255, .5);
    }

    /* Headings */
    .footer h4 {
      font-size: 16px;
      font-weight: bold;
      color: #ffffff;
      margin-bottom: 15px;
      position: relative;
      transition: color 0.3s ease;
    }

    .footer h4::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background: #ffffff;
      margin-top: 6px;
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    .footer h4:hover::after {
      width: 60px;
    }

    /* Links */
    .footer .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer .footer-links ul li {
      padding: 8px 0;
      display: flex;
      align-items: center;
      transition: transform 0.2s ease;
    }

    .footer .footer-links ul li:hover {
      transform: translateX(5px);
    }

    .footer .footer-links ul a {
      color: #ffffff;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .footer .footer-links ul a:hover {
      color: #39FFC0;
      text-shadow: 0 0 10px rgba(57, 255, 192, 0.5);
    }

    .footer .footer-links ul i {
      margin-right: 8px;
      font-size: 12px;
      color: #ffffff;
      transition: transform 0.3s ease;
    }

    .footer .footer-links ul li:hover i {
      transform: translateX(3px);
    }

    /* Social Links */
    .footer .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      font-size: 18px;
      color: #ffffff;
      margin-right: 10px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      position: relative;
      overflow: hidden;
    }

    .footer .social-links a::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: #ffffff;
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.4s ease;
      z-index: 0;
    }

    .footer .social-links a i {
      position: relative;
      z-index: 1;
    }

    .footer .social-links a:hover::before {
      transform: scale(1);
    }

    .footer .social-links a:hover {
      color: #002954;
      background-color: transparent;
      transform: translateY(-5px) scale(1.15);
      border-color: #ffffff;
      box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
    }

    /* Contact */
    .footer .footer-contact p {
      margin-bottom: 5px;
      color: #ffffff;
      transition: transform 0.2s ease;
    }

    .footer .footer-contact p:hover {
      transform: translateX(3px);
    }

    /* Copyright */
    .footer .copyright {
      padding-top: 20px;
      padding-bottom: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      color: #ffffff;
      background: rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
    }

    .footer .sitename {
      color: #ffffff;
      font-weight: 600;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      transition: text-shadow 0.3s ease;
    }

    .footer .sitename:hover {
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }

    /* All text in footer should be white */
    .footer,
    .footer p,
    .footer span,
    .footer li,
    .footer a:not(:hover) {
      color: #ffffff !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer {
        padding-top: 30px;
      }
      
      .footerimg {
        width: 120px;
      }
    }


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #05cea9 !important;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
 .breadcrumb-wrapper {
    position: relative;
    padding: 50px 0px 50px 0px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    /*margin-bottom: 30px;*/
    margin-top: 80px;
    
    /* Enhanced background with gradient overlay */
    background:  
        linear-gradient(
            135deg, 
            rgba(0, 41, 84, 0.9) 0%,   /* Dark navy base */
            rgba(0, 41, 84, 0.6) 50%,
            rgba(0, 41, 84, 0.4) 100%
        ),
        url("https://aiondemo.in/html/hrlogin/assets/img/common_banner.jpg") center/cover no-repeat;
    
    /* Subtle animation on load */
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 41 84 / 0%);
    z-index: 0;
}

.breadcrumb-container {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #39FFC0; /* Accent color */
    text-shadow: 2px 2px 6px rgba(0, 41, 84, 0.8);
}

.breadcrumb-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: #e0f7f4; /* softer text */
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(57, 255, 192, 0.1); /* soft accent tint */
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 4px 12px rgba(0, 41, 84, 0.25);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #f8f9fa;
}

.breadcrumb li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 6px;
}

.breadcrumb li a:hover {
    color: #39FFC0; /* Accent on hover */
    background: rgba(57, 255, 192, 0.1);
    transform: translateY(-2px);
}

.breadcrumb li.active {
    color: #39FFC0; /* Active highlight */
    font-weight: 600;
    pointer-events: none;
}

.breadcrumb li+li::before {
    content: "›";
    color: #39FFC0; /* Accent divider */
    margin: 0 12px;
    font-size: 1.4rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 60px 0;
    }
    .breadcrumb-title {
        font-size: 2rem;
    }
    .breadcrumb {
        font-size: 1rem;
        padding: 12px 20px;
    }
    .breadcrumb li+li::before {
        margin: 0 8px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-wrapper {
        padding: 50px 0;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }
    .breadcrumb-title {
        font-size: 1.8rem;
    }
    .breadcrumb-subtitle {
        font-size: 1rem;
    }
    .breadcrumb {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        border-radius: 12px;
        padding: 15px;
    }
    .breadcrumb li+li::before {
        content: none;
    }
    .breadcrumb li {
        margin-bottom: 5px;
    }
    .breadcrumb li:not(:first-child) {
        padding-left: 20px;
        position: relative;
    }
    .breadcrumb li:not(:first-child)::before {
        content: "›";
        position: absolute;
        left: 0;
        color: #39FFC0; /* Accent */
        font-size: 1.2rem;
    }
}
 
  
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: linear-gradient(90deg, #002954 0%, #39FFC0 100%);
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
    color: #002954;
    margin: 10px 0 0 0;
    font-size: 24px;
    font-weight: 900;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: #39ffc0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 100px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg1.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  background: url(../img/banner-bg-shape-1.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 145px;
  z-index: 9;
}

.hero-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #002954;
}

.hero p {
  color: rgba(0, 0, 0, 0.7);
  margin: 15px 0 30px 0;
  font-size: 1rem;
  font-weight: 500;
  max-width: 90%;
}

/* Store Buttons */
.btn-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-store i {
  font-size: 28px;
}

.btn-store span small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* App Store Style */
.btn-appstore {
  background: #002954;
  color: #fff;
}

.btn-appstore:hover {
  background: #2ce0a9;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* Play Store Style */
.btn-playstore {
  background: #2ce0a9;
  color: #fff;
}

.btn-playstore:hover {
  background:#002954;
  transform: translateY(-2px) scale(1.02);
  color: #fff !important;
}

.typewriter {
  color: #2ce0a9; /* highlight color */
  font-weight: 900;
  border-right: 3px solid #2ce0a9; /* blinking cursor */
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
  0% { border-color: transparent; }
  50% { border-color: #2ce0a9; }
  100% { border-color: transparent; }
}



/* Animated Hero Image */
.hero .animated {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}

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

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .btn-store {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 40px;
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
}

.about .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

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

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# features Section
--------------------------------------------------------------*/
/* Base Grid */
#feature .feature-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Feature Column */
#feature .feature-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Feature Card */
#feature .feature-item {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

#feature .feature-item:hover {
  transform: translateY(-8px);
}

/* Icon */
#feature .feature-icon {
  width: 70px;
  height: 70px;
  background: #C7F5E9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #002954;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

#feature .feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #002954, #39ffc0);
  color: #fff;
  transform: scale(1.1);
}




.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6); /* dark background */
  border-radius: 50%;                   /* circle shape */
  width: 50px;
  height: 50px;
  background-size: 60%;                 /* icon size */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* soft shadow */
  transition: all 0.3s ease;
}
/* Hover effect */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #ff6600;  /* highlight color */
  transform: scale(1.1);      /* zoom effect */
}
.why-card{
    border-bottom:2px solid #05cea9;
}
.stats-item{
    z-index: 9;
}
.info-item{
    position: relative;
    overflow: hidden;
}
.contact .info-item i {
    position: relative;
    z-index: 9;
    font-size: 35px;
}
.mtbx{
    margin-top:-70px;
}
.info-item:before {
    content:'';
    position: absolute;
    width: 60px;
    height: 60px;  
    left:20px;
    top:20px;
    z-index: 9;
    font-size:20px;
    margin-bottom:20px;
    border: 6px solid #e5fcf7; 
    border-radius:50%;
    background: rgb(222, 252, 246, .6);
}
.stats-item i { 
    width: 40px;
    height: 40px;      
    font-size:20px;
    margin-bottom:20px;
    border: 6px solid #e5fcf7; 
    border-radius:50%;
    background: rgb(199, 245, 233);
}
 

/* Content */
.feature-item{
    overflow: hidden;
    position:relative;
}
.feature-item:before {
    content: '';
    width: 70px;
    height: 70px;
    position:absolute;
    right:-30px;
    border: 6px solid #e5fcf7;
    z-index: 9;
    top: -30px;
    border-radius:50%;
    background: rgb(199, 245, 233);
}
    #feature .feature-icon { 
        border-radius: 50%;
    }
#feature .feature-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #002954; 
}

#feature .feature-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Orb Section */
#feature .center-orb {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#feature .orb {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(#002954, #39ffc0, #39ffc0, #002954);
  opacity: 0.12;
  animation: rotate 25s linear infinite;
}

#feature .orb-1 { width: 350px; height: 350px; }
#feature .orb-2 { width: 270px; height: 270px; animation-direction: reverse; animation-duration: 20s; }
#feature .orb-3 { width: 190px; height: 190px; animation-duration: 15s; }

/* Slider Inside Orb */
#feature #featureSlider {
  width: 80%;
  height: auto;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
}

#feature #featureSlider img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Indicators & Controls */
#feature .carousel-indicators button {
  background-color: #002954;
}
#feature .carousel-indicators .active {
  background-color: #39ffc0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

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

/* Animation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */

/* Tablets */
@media (max-width: 992px) {
  #feature .feature-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  #feature .center-orb {
    width: 280px;
    height: 280px;
    margin: 40px auto;
  }
  #feature .orb-1 { width: 280px; height: 280px; }
  #feature .orb-2 { width: 220px; height: 220px; }
  #feature .orb-3 { width: 160px; height: 160px; }
}

/* Mobiles */
@media (max-width: 768px) {
  #feature .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  #feature .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  #feature .center-orb {
    width: 220px;
    height: 220px;
  }
  #feature .orb-1 { width: 220px; height: 220px; }
  #feature .orb-2 { width: 170px; height: 170px; }
  #feature .orb-3 { width: 120px; height: 120px; }
}

/* Small Phones */
@media (max-width: 480px) {
  #feature .feature-content h3 {
    font-size: 16px;
  }
  #feature .feature-content p {
    font-size: 0.85rem;
  }
  #feature .center-orb {
    width: 180px;
    height: 180px;
  }
  #feature .orb-1 { width: 180px; height: 180px; }
  #feature .orb-2 { width: 140px; height: 140px; }
  #feature .orb-3 { width: 100px; height: 100px; }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
  .stats .stats-item {
            background-color: #fff;
            box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
            padding: 30px 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid #002954;
            position: relative;
            overflow: hidden;
        }
        
        .stats .stats-item:hover {
            transform: translateY(-5px);
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
        }
        
        .stats .stats-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #002954, #39ffc0);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .stats .stats-item:hover::before {
            opacity: 1;
        }
        
        .stats .stats-item i {
            font-size: 48px;
            margin-right: 20px;
            transition: all 0.3s ease;
        }
        
        .stats .stats-item:hover i {
            transform: scale(1.1);
        }
        
        .stats .stats-item .bi-emoji-smile {
            color: #002954;
        }
        
        .stats .stats-item .bi-journal-richtext {
            color: #39ffc0;
        }
        
        .stats .stats-item .bi-trophy {
            color: #002954;
        }
        
        .stats .stats-item .bi-people {
            color: #39ffc0;
        }
        
        .stats .stats-item span {
            color: #002954;
            font-size: 32px;
            display: block;
            font-weight: 700;
            margin-bottom: 5px;
           
        }
        
        .stats .stats-item p {
            padding: 0;
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #555;
        }
      

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-red:hover {
  background: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-indigo:hover {
  background: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #f3268c;
}

.services .service-item.item-pink:hover {
  background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Hover effect */
.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Top Gradient Border */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, #002954, #39FFC0, #00D4FF);
  background-size: 300% 100%;
  animation: borderGradient 4s linear infinite;
}

@keyframes borderGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Title */
.pricing-card h3 {
 font-size: 20px;
    font-weight: 900;
    color: #002954;
    margin-bottom: 12px;
    /* letter-spacing: 0.5px; */
    text-transform: uppercase;
}

/* Price */
.pricing-card .price {
 font-size: 30px;
    font-weight: 700;
    color: #002954;
    margin: 10px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

/* Icon */
.pricing-card .icon i {
  font-size: 3rem;
  background: linear-gradient(135deg, #002954, #39FFC0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0;
  transition: transform 0.4s ease;
}

.pricing-card:hover .icon i {
  transform: rotate(6deg) scale(1.2);
}

/* Features */
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.pricing-card ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 10px;
}

.pricing-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #39FFC0;
  font-weight: bold;
}

.pricing-card ul .na {
  color: #bbb;
}

.pricing-card ul .na:before {
  content: "✗";
  color: #bbb;
}

/* CTA Button */
.pricing-card .btn-buy {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #002954, #39FFC0);
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-card .btn-buy:hover {
  box-shadow: 0 12px 28px rgba(0, 41, 84, 0.25);
  transform: translateY(-3px);
}

/* Badge */

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: -35px; /* makes it cut across the corner */
  background: linear-gradient(135deg, #002954, #39FFC0);
  color: #fff;
  padding: 6px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 41, 84, 0.25);
  z-index: 10;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-card {
    padding: 30px 22px;
  }
  .pricing-card h3 { font-size: 1.4rem; }
  .pricing-card .price { font-size: 2.4rem; }
  .pricing-card .icon i { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 25px 18px;
  }
  .pricing-card h3 { font-size: 1.3rem; }
  .pricing-card .price { font-size: 2rem; }
  .pricing-card .btn-buy { padding: 12px 28px; font-size: 0.9rem; }
  .pricing-card .badge { font-size: 0.7rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 20px 15px;
  }
  .pricing-card h3 { font-size: 1.2rem; }
  .pricing-card .price { font-size: 1.8rem; }
  .pricing-card .icon i { font-size: 2.2rem; }
  .pricing-card ul { font-size: 0.85rem; }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  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: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.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: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.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: var(--accent-color);
}

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 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);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

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

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

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

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

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

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

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.team .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.team .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--default-color);
}

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

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

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

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

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background-color: 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);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: #39FFC0;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  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: 20px !important;
  border:1px solid #05cea9 !important;
  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] {
  background: #002954;
  color: var(--contrast-color);
   border-radius: 20px !important;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #39FFC0, 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%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

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

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

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

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

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

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

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

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

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

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

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

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

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

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

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

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

.tags-widget {
  margin-bottom: -10px;
}

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

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

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

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

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










 /* CTA Banner */
    .cta-banner {
      width: 100%;
      background: linear-gradient(135deg, #002954 0%, #003972 100%);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .cta-banner .cta-content {
      padding: 60px;
      position: relative;
      z-index: 2;
    }

    .cta-banner .cta-tag {
      display: inline-block;
      background: #39ffc0;
      color: #002954;
      font-weight: 700;
      font-size: 14px;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(57, 255, 192, 0.3);
    }
.stats .stats-item span { 
    font-size: 26px; 
    margin-bottom: -5px;
}
    .cta-banner .cta-title {
      font-size: 40px;
      font-weight: 800;
      color: white;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .cta-banner .cta-title span {
      color: #39ffc0;
    }

    .cta-banner .cta-description {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 600px;
    }

    .cta-banner .cta-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-banner .btn-primary {
      background: #39ffc0;
      color: #002954;
      border: none;
      padding: 18px 35px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 20px rgba(57, 255, 192, 0.3);
    }

    .cta-banner .btn-primary:hover {
      background: #6affd2;
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(57, 255, 192, 0.4);
    }

    .cta-banner .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
      padding: 16px 33px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .cta-banner .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
    }

    .cta-banner .cta-visual {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      padding: 40px;
      position: relative;
    }

    .cta-banner .cta-card {
      width: 280px;
      background: white;
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      transform: rotate(5deg);
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .cta-banner .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .cta-banner .card-title {
      font-weight: 700;
      color: #002954;
      font-size: 18px;
    }

    .cta-banner .card-icon {
      width: 40px;
      height: 40px;
      background: #002954;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #39ffc0;
    }

    .cta-banner .card-content {
      background: #f5f9fc;
      border-radius: 12px;
      padding: 15px;
    }

    .cta-banner .card-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid #e6eef5;
    }

    .cta-banner .card-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    .cta-banner .card-label {
      color: #668bad;
      font-size: 14px;
    }

    .cta-banner .card-value {
      color: #002954;
      font-weight: 600;
    }

    /* Shapes */
    .cta-banner .cta-shape {
      position: absolute;
      z-index: 1;
    }

    .cta-banner .shape-1 {
      width: 300px;
      height: 300px;
      border: 15px solid #39ffc0;
      opacity: 0.15;
      border-radius: 50%;
      bottom: -100px;
      right: -100px;
    }

    .cta-banner .shape-2 {
      width: 150px;
      height: 150px;
      background: #39ffc0;
      opacity: 0.1;
      border-radius: 20px;
      bottom: 50px;
      right: 200px;
      transform: rotate(45deg);
    }

    /* Responsive */
    @media (min-width: 992px) {
      .cta-banner {
        flex-direction: row;
      }

      .cta-banner .cta-content {
        flex: 1;
      }

      .cta-banner .cta-visual {
        flex: 0 0 45%;
      }
    }

    @media (max-width: 991px) {
      .cta-banner .cta-content {
        padding: 40px 30px;
      }

      .cta-banner .cta-title {
        font-size: 36px;
      }

      .cta-banner .cta-visual {
        justify-content: center;
        padding: 30px;
      }

      .cta-banner .cta-card {
        transform: rotate(3deg);
      }

      .cta-banner .shape-1,
      .cta-banner .shape-2 {
        display: none;
      }
    }

    @media (max-width: 576px) {
      .cta-banner .cta-title {
        font-size: 28px;
      }

      .cta-banner .cta-description {
        font-size: 16px;
      }

      .cta-banner .cta-buttons {
        flex-direction: column;
      }

      .cta-banner .btn-primary,
      .cta-banner .btn-secondary {
        width: 100%;
        justify-content: center;
      }
    }

















    

/* Base container */
.containers1 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* Section title */
.containers1 .section-title1 {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.containers1 .subtitle {
  display: inline-block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #002954;
  background-color: rgba(57, 255, 192, 0.15);
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  border: 1px solid #39ffc0;
}

.containers1 h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #002954;
  line-height: 1.3;
}

/* Feature box */
.containers1 .feature1 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.containers1 .feature1:hover {
  transform: translateY(-3px);
}

.containers1 .feature-icon1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #002954 0%, #39ffc0 100%);
  color: #fff;
  border-radius: 14px;
  font-size: 24px;
  margin-right: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.containers1 .feature1:hover .feature-icon1 {
  background: linear-gradient(135deg, #39ffc0 0%, #002954 100%);
  transform: rotate(8deg);
}

.containers1 .feature-text1 {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.containers1 .feature-text1 strong {
  display: block;
  font-size: 18px;
  color: #002954;
  margin-bottom: 5px;
}

/* Image section */
.containers1 .image-container1 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.containers1 .image-container1 img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  transition: transform 0.5s ease;
  height: 550px; /* ✅ fixed */
  object-fit: contain;
}

.containers1 .image-container1:hover img {
  transform: translateY(-12px) scale(1.02);
}

/* Decorative floating circles */
.image-container1 {
  position: relative;
  display: inline-block;
}

.image-container1 img {
  position: relative;
  z-index: 2;
}

/* Circle 1 */
.circle1 {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(0, 41, 84, 0.15);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: 1;
  animation: float1 6s ease-in-out infinite;
}

/* Circle 2 */
.circle2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(57, 255, 192, 0.2);
  border-radius: 50%;
  bottom: -25px;
  right: -25px;
  z-index: 1;
  animation: float2 8s ease-in-out infinite;
}

/* Animations */
@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-10px); }
}

/* 🔹 Responsive Breakpoints */

/* Tablets */
@media (max-width: 992px) {
  .containers1 h2 {
    font-size: 30px;
  }
  .containers1 .image-container1 {
    margin-top: 35px;
  }
  .circle1, .circle2 {
    width: 100px;
    height: 100px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .containers1 {
    padding: 25px;
  }
  .containers1 h2 {
    font-size: 26px;
  }
  .containers1 .feature1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .containers1 .feature-icon1 {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .containers1 .image-container1 img {
    max-width: 240px;
    height: auto; /* ✅ better fit */
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .containers1 h2 {
    font-size: 22px;
  }
  .containers1 .feature-text1 {
    font-size: 14px;
  }
  .containers1 .feature-text1 strong {
    font-size: 16px;
  }
  .containers1 .image-container1 img {
    max-width: 200px;
  }
  .circle1, .circle2 {
    width: 80px;
    height: 80px;
  }
}











.why-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 15px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
                rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 41, 84, 0.4) 0px 4px 10px,
                rgba(0, 41, 84, 0.25) 0px 6px 12px;
}

/* Icon styling with base colors */
.why-icon {
    font-size: 20px;
    margin-bottom: 20px;
    color: #002954; /* Icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #39FFC0; /* Circle background */
    box-shadow: 0 4px 10px rgba(0, 41, 84, 0.2);
    transition: all 0.3s ease-in-out;
}

.why-card:hover .why-icon {
    background: #002954; /* Invert on hover */
    color: #39FFC0;
}

/* Title with base color */
.why-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    color: #002954;
}

/* Description in a softer tone */
.why-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom column sizing for 5 cards */
.col-custom {
    flex: 0 0 auto;
    width: 20%;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .col-custom {
        width: 33.3333%;
        margin-bottom: 20px;
    }
    .row-custom {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .col-custom {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .col-custom {
        width: 100%;
        max-width: 350px;
    }
    .row-custom {
        justify-content: center;
    }
}












  /* Hero Section */
/* ============================
   HERO SECTION 11
============================ */
.hero-section11 {
  padding: 70px 0;
  background: linear-gradient(to right, #edf1f4, #eaeef2);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* ============================
   FLOATING BACKGROUND CIRCLES
============================ */
.circle-decoration11 {
  position: absolute;
  border-radius: 50%;
  background: rgb(57 255 192 / 42%);
  z-index: 1;
  animation: float 8s infinite ease-in-out;
}

.circle-11 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -120px;
  animation-delay: 0s;
}

.circle-21 {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -60px;
  animation-delay: 1.5s;
}

.circle-31 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ============================
   CONTENT AREA
============================ */
.hero-content11 {
  position: relative;
  z-index: 2;
  padding-right: 140px; /* space for image */
}

.section-title11 .subtitle11 {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  background: rgba(57, 255, 192, 0.12);
  color: #05CEA9;
  border: 1px solid rgba(57, 255, 192, 0.3);
}

.hero-content11 h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #002B57;
  line-height: 1.3;
}

.hero-content11 p {
  font-size: 15px;
  margin-bottom: 35px;
  color: #002A56;
  max-width: 520px;
}

/* ============================
   CTA BUTTONS
============================ */
.hero-cta11 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-store11 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  background: #fff;
  color: #002954;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-store11::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.6s;
}

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

.btn-store11:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(57, 255, 192, 0.35);
}

.btn-store11 i {
  font-size: 1.5rem;
}

.btn-store11 small {
  font-size: 0.75rem;
  color: #555;
}

/* App Store */
.btn-appstore11 {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

/* Play Store */
.btn-playstore11 {
  background: linear-gradient(135deg, #39FFC0 0%, #00c9a7 100%);
  color: #002954;
}

.btn-playstore11 small {
  color: #002954;
}

/* ============================
   HERO IMAGE (RIGHT SIDE)
============================ */
.hero-image11 {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 480px;
}

.hero-image11 img {
  width: 100%;
  height: auto;
  display: block;
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 991px) {
  .hero-section11 {
    padding: 60px 0;
  }

  .hero-content11 {
    padding-right: 0;
    text-align: center;
  }

  .hero-content11 p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta11 {
    justify-content: center;
  }

  .hero-image11 {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 50px auto 0;
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .hero-content11 h2 {
    font-size: 28px;
  }

  .hero-content11 p {
    font-size: 14px;
  }

  .btn-store11 {
    width: 100%;
    justify-content: center;
  }
}


/* Feature Highlights */
.features-highlights11 {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.feature-card11 {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card11:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.feature-icon11 {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #002954 0%, #034078 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
}

.feature-card11 h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #002954;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
  .hero-content11 {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-content11 h2 {
    font-size: 2.2rem;
  }

  .hero-cta11 {
    justify-content: center;
  }

  .hero-image11 {
    margin-top: 20px;
  }

  .features-highlights11 {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-section11 {
    padding: 30px 0;
  }

  .hero-content11 h2 {
    font-size: 1.9rem;
  }

  .hero-content11 p {
    font-size: 14px;
  }

  .btn-store11 {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section11 {
    padding: 50px 0;
  }

  .hero-content11 h2 {
    font-size: 1.6rem;
  }

  .hero-image11 img {
    width: 90%;
    display: none;
  }

  .btn-store11 {
    width: 100%;
    justify-content: center;
  }
}

    /* Booking demo form */
    
  
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 20px;
      animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .popup-overlay.active {
      display: flex;
    }

    .demo-container {
      position: relative;
      z-index: 2;
      max-width: 500px;
      width: 100%;
    }

    .demo-card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      animation: slideUp 0.6s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Close button at top right of form */
    .popup-close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      color: #ffffff;
      font-size: 24px;
      cursor: pointer;
      z-index: 1001;
      transition: transform 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2);
    }

    .popup-close-btn:hover {
      transform: scale(1.1);
      background: rgba(0, 0, 0, 0.3);
    }

    .demo-header {
      background: linear-gradient(135deg, #05cea9 0%, #02675b 100%);
      padding: 40px 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .demo-header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(135deg, #002954 0%, #39ffc0 100%);
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.1);
        opacity: 0.8;
      }
    }

    .demo-header h2 {
      color: white;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .demo-header p {
      color: #e0f7f3;
      font-size: 16px;
      margin: 0;
      position: relative;
      z-index: 1;
    }

    .demo-body {
      padding: 40px 30px;
    }

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

    .form-label {
      display: flex;
      align-items: center;
      font-weight: 600;
      color: #2ce0a9;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .form-label i {
      margin-right: 8px;
      color: #002954;
      font-size: 18px;
    }

    .form-control {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 15px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
      background: #f8f9fa;
    }

    .form-control:focus {
      outline: none;
      border-color: #05cea9;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(5, 206, 169, 0.1);
      transform: translateY(-2px);
    }

    .form-control:hover {
      border-color: #05cea9;
      background: #ffffff;
    }

    /* Two fields in one row */
    .row-inputs {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
    }

    .row-inputs .form-group {
      flex: 1;
      margin-bottom: 0;
    }

    .btn-book {
      width: 100%;
      padding: 16px;
      background: #002954;
      border: none;
      border-radius: 12px;
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(5, 206, 169, 0.3);
      margin-top: 10px;
    }

    .btn-book::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-book:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-book:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(5, 206, 169, 0.4);
    }

    .btn-book:active {
      transform: translateY(-1px);
    }

    .btn-book span {
      position: relative;
      z-index: 1;
    }

    .success-message {
      display: none;
      background: linear-gradient(135deg, #39FFC0 0%, #05cea9 100%);
      color: #002954;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      font-weight: 600;
      margin-top: 20px;
      animation: slideDown 0.5s ease-out;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .success-message.show {
      display: block;
    }

    .success-message i {
      font-size: 24px;
      margin-right: 10px;
    }

    /* Input validation states */
    .form-control.error {
      border-color: #dc3545;
      animation: shake 0.3s;
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-10px); }
      75% { transform: translateX(10px); }
    }

    .error-message {
      color: #dc3545;
      font-size: 12px;
      margin-top: 5px;
      display: none;
    }

    .error-message.show {
      display: block;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .welcome-content h1 {
        font-size: 32px;
      }

      .welcome-content p {
        font-size: 16px;
      }

      .demo-header h2 {
        font-size: 26px;
      }

      .demo-body {
        padding: 30px 20px;
      }

      .btn-book {
        font-size: 16px;
        padding: 14px;
      }
      
      .row-inputs {
        flex-direction: column;
        gap: 25px;
      }

      .popup-close-btn {
        top: 10px;
        right: 10px;
        font-size: 20px;
        width: 35px;
        height: 35px;
      }
    }

    /* Loading spinner */
    .spinner {
      display: none;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-top-color: #ffffff;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
      margin-left: 10px;
    }

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

    .btn-book.loading .spinner {
      display: inline-block;
    }

    .btn-book.loading span {
      opacity: 0.7;
    }












































