/**
* Template Name: Scout
* Template URL: https://bootstrapmade.com/scout-bootstrap-multipurpose-template/
* Updated: May 05 2025 with Bootstrap v5.3.5
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:  "Montserrat",  sans-serif, "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: "Montserrat",  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: #52413a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #31221c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1b75bb; /* 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: #52413a;  /* The default color of the main navmenu links */
  --nav-hover-color: #f85d23; /* 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: #52413a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f85d23; /* 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: #f8f5f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #343333;
  --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);
  font-weight: 500;
}

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 8px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: rgb(0 0 0 / 20%) 0px 20px 30px;
}

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

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

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}
h3.sitename{
    font-size: 17px;
    padding-top: 5px;
}
a.logo.d-flex.me-auto {
    flex-direction: column;
    align-items: flex-start;
}

.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-getmail{
    color: #000000;
    font-size: 17px;
    padding: 6px 11px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    border: 1px solid #8a8a8a;
  }
.header .btn-getmail:hover {
    background-color: #add03a;
    color: #000;
    border: 1px solid #add03a;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #000000;
  background: #add03a;
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgb(255 255 255 / 95%);
}
.scrolled .header .logo img {
    max-height: 35px;
}
.scrolled .header h3.sitename {
    font-size: 13px;
    padding-top: 5px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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 {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1b75bb;
  }

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

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

/*Premium buttons*/

/* BASE BUTTON */
.btn-premium{
    display:inline-block;
    padding:12px 28px;
    font-size:15px;
    font-weight:500;
    border-radius:50px;
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
    text-decoration:none;
    border:none;
    cursor:pointer;
}
.btn-premium.outline {
    padding: 10px 28px;
}

/* PRIMARY (MAIN CTA) */
.btn-premium.primary{
    background:linear-gradient(135deg,#a3cd39,#8db82f);
    color:#000;
    box-shadow:0 8px 20px rgba(163,205,57,0.25);
}
.btn-premium.primary a {
    color: #000;
}
.btn-premium.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(163,205,57,0.35);
}
/* SHINE EFFECT (COMMON) */
.btn-premium::after{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition:0.5s;
}

.btn-premium:hover::after{
    left:100%;
}

/* OUTLINE BUTTON */
.btn-premium.outline{
    background:transparent;
    color:#ffffff;
    border:2px solid #ffffff;
}
.btn-premium.outline:hover{
    background:#a3cd39;
    color:#000;
    transform:translateY(-2px);
    border: 2px solid #a3cd39;
}

button.btn-premium.outline.black-out {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

button.btn-premium.outline.black-out:hover {
    background: #a3cd39;
    color: #000;
    transform: translateY(-2px);
    border: 2px solid #a3cd39;
}

/* RESPONSIVE */
@media(max-width:768px){
    .btn-premium{
        padding:10px 22px;
        font-size:14px;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  /*background-color: #1b75bb;*/
  font-size: 14px;
  position: relative;
  background: radial-gradient(circle at top left, #1b75bb, #070b14);
}

.footer .contact-cards-container.aos-init.aos-animate {
    display: flex;
    justify-content: space-between;
    /*background: radial-gradient(circle at top right, #17629e, #17609a);*/
    padding: 25px 35px 25px 0;
    border-radius: 10px;
    margin-bottom: 65px;
    border-bottom: 1px solid #e9e9e91c;
    flex-direction: column;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-bottom-links p {
   margin: 0;
   padding: 0;
}

.footer-bottom-links a {
   color: #ffffff;
}
.footer .contact-card {
    display: flex;
}

.footer .icon-box {
    border: 1px solid #fff;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    padding: 25px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  color: #ffffff;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 24px;
}

.col-lg-4.col-md-6.footer-about {
    margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
      padding: 25px 0;
    border-top: 1px solid #e9e9e933;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-about a {
    display: flex!important;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}

.copyright p a {
    color: #ffffff;
    padding: 0 10px;
}

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

.footer .credits {
  margin-top: 0px;
  font-size: 13px;
}
.contact-text a {
    color: #fff;
}

 .bottom-subfooter{   
    border-radius: 25px;
    background: #0a3f6b;
    padding: 11px 20px 11px 20px;
    box-shadow: 0 19px 53px #0000000d;
    border: 1px solid rgba(255,255,255,.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 0 40px;
  }
  .contact-subcolumn{
    display: flex;
    justify-content: space-between;
    /*gap: 200px;*/
  }
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

.service-info .service-action {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 90px 0 120px 0;
  /*background-color: #f4faff;*/
  /*background-image: url("hero-bg.jpg");*/
  background: linear-gradient(rgb(0 0 0 / 45%), rgb(0 0 0 / 52%)), url(hero-bg.jpg);
  background-size: cover;
  background-position: center;
}

.hero .hero-content {
  margin-bottom: 2rem;
}

img.img-fluid.hero-image {
    width: 1203px;
    position: absolute;
    right: -230px;
    top: -511px;
    rotate: 326deg;
    z-index: 0;
}

@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
    z-index: 9;
    position: relative;
  }
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  /*padding: 0.5rem 1rem;*/
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero .hero-tag i {
  color: #add03a;
  margin-right: 0.5rem;
}

.hero .hero-tag span {
  color: #ffffff;
  font-weight: 600;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: #add03a;
}

@media (min-width: 992px) {
  .hero h1 {
    font-size: 42px;
  }
}

.hero .lead {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero .hero-features li i {
  color: #add03a;
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
    background-color: #add03a;
    border-color: #add03a;
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
  background-color: #add03a;
  border-color: #add03a;
  color: #000;
}

.hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero-cta .btn-link:hover {
    color: var(--accent-color);
    background-color: #ffffff00;
    border: none;
    border-color: #ffffff00;
}


.hero  .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
}

.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: #0a4e84;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: -70px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 575px) {
  .hero .hero-image-wrapper {
    padding: 0;
  }

  .hero .hero-image-wrapper .stat-card {
    position: relative;
  }

  .hero .hero-image-wrapper .stat-card.top-right,
  .hero .hero-image-wrapper .stat-card.bottom-left {
    inset: auto;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

section.section-vis-mis {
    padding: 0 0 100px 0;
}
section.section-about{padding: 100px 0 100px 0;}
section#about{padding: 100px 0;}
section.section-indust {
    padding: 100px 0 0 0;
}
section.section {
    padding: 100px 0 100px;
}

.about .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.about .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.about .feature-box:hover:before {
  height: 100%;
}

.about .feature-box:hover .icon-container {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about .about-content-box {
  padding: 2rem;
}

.about .about-content-box h3 {
  font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    width: 526px;
}

.about .about-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .about-content-box .progress-item {
  margin-bottom: 1.2rem;
}

.about .about-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .about-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}

.about .about-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  /*background-color: color-mix(in srgb, var(--accent-color), transparent 90%);*/
  background-color: #00000012;
  margin-top: 0.5rem;
  overflow: hidden;
}

.about .about-content-box .progress-item .progress .progress-bar {
  background-color: var(--accent-color);
  border-radius: 4px;
}

.about .about-content-box .btn-discover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .about-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.about .about-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .about-content-box .btn-discover:hover:before {
  width: 100%;
}

.about .about-image-grid {
  position: relative;
  height: 540px;
  margin: 0 2rem;
}

.about .about-image-grid .img-grid-main {
    position: absolute;
    top: 0;
    right: 90px;
    width: 88%;
    height: 458px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 22%);
    z-index: 1;
}

.progress-bar {
  width: 0;
  transition: width 1.5s ease-in-out;
}
.about .about-image-grid .img-grid-secondary {
  top: 54%;
    position: absolute;
    bottom: 0;
    right: 45%;
    width: 52%;
    height: 281px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
    z-index: 2;
}

.about .about-image-grid .img-grid-tertiary {
       position: absolute;
    left: 330px;
    bottom: 104px;
    width: 56%;
    /* height: 315px; */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 39%);
    z-index: 3;
    top: 21%;
}

.about .about-image-grid .experience-badge {
     position: absolute;
    right: 183px;
    bottom: 19px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    box-shadow: 0 10px 25px rgb(0 0 0 / 15%);
    z-index: 4;
}

.about .about-image-grid .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about .about-image-grid .experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .about .about-image-grid {
    height: 480px;
  }

  .about .about-image-grid .img-grid-main {
    height: 300px;
  }

  .about .about-image-grid .img-grid-secondary {
    height: 200px;
  }

  .about .about-image-grid .img-grid-tertiary {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .about .section-heading {
    font-size: 2.2rem;
  }

  .about .about-content-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .about .about-content-box h3 {
    font-size: 1.8rem;
  }

  .about .about-image-grid {
    height: 450px;
    margin: 0 auto;
    max-width: 500px;
  }

  .about .about-image-grid .experience-badge {
    width: 100px;
    height: 100px;
  }

  .about .about-image-grid .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about .section-heading {
    font-size: 1.8rem;
  }

  .about .feature-box {
    padding: 1.8rem 1rem;
  }

  .about .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about .about-image-grid {
    height: 200px;
    margin-bottom: 2rem;
  }

  .about .about-image-grid .img-grid-main {
    width: 75%;
    height: 250px;
  }

  .about .about-image-grid .img-grid-secondary {
    width: 55%;
    height: 180px;
  }

  .about .about-image-grid .img-grid-tertiary {
    width: 40%;
    height: 180px;
  }
}


/* HERO PREMIUM */
.hero-inner{
  background: radial-gradient(circle at top left, #1b75bb, #070b14);
  color:#fff;
  padding:70px 0;
  position:relative;
  overflow:hidden;
}

/* animated gradient glow */
.hero-inner::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(255 255 255 / 20%), transparent);
    top: -98px;
    right: -19px;
    animation: floatGlow 6s ease-in-out infinite alternate;
    border-radius: 100%;
}

.hero-inner::after{
      content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgb(0 198 255 / 38%), transparent);
    bottom: -150px;
    left: -150px;
    animation: floatGlow 8s ease-in-out infinite alternate-reverse;
    border-radius: 100%;
}

@keyframes floatGlow{
  0%{transform:translateY(0px) translateX(0px);} 
  100%{transform:translateY(40px) translateX(40px);} 
}

.hero-inner h1{font-size:42px;font-weight:700;letter-spacing:1px;color: #fff;}
.hero-inner p{opacity:0.9;font-size:18px;}

/* subtle grid overlay */
.hero-inner .grid-overlay{
  position:absolute;
  width:100%;height:100%;
  top:0;left:0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events:none;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
section#stats {
    background-color: #f6f6f6;
}
.stats .stats-overview {
  height: 100%;
  padding: 30px;
}

.stats .stats-overview h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.stats .stats-overview h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .stats .stats-overview h3::after {
    margin: 0;
  }
}

.stats .stats-overview p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 0;
}

.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin: 50px 0;
}

.stats .stats-card {
  /*background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);*/
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats .stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stats .stats-card .stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.stats .stats-card .stats-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stats-card .stats-content {
  flex-grow: 1;
}

.stats .stats-card .stats-content .stats-number {
  display: flex;
  align-items: baseline;
}

.stats .stats-card .stats-content .stats-number .purecounter {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.stats .stats-card .stats-content .stats-number .plus {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-left: 2px;
}

.stats .stats-card .stats-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 0;
  font-weight: 500;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats .stats-card {
    padding: 15px;
  }

  .stats .stats-card .stats-icon {
    width: 50px;
    height: 50px;
  }

  .stats .stats-card .stats-icon i {
    font-size: 20px;
  }

  .stats .stats-card .stats-content .stats-number .purecounter {
    font-size: 28px;
  }

  .stats .stats-card .stats-content .stats-number .plus {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 30px;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgb(27 117 187 / 12%) 100%);
}

.services .services-row {
  position: relative;
}

.services .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }

  .services .services-image-container .services-image {
    height: 350px;
  }

  .services .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  overflow-x: hidden;
  padding: 40px 0;
  /*background: linear-gradient(179deg,rgba(255, 255, 255, 1) 0%, rgb(27 117 187 / 32%) 100%);*/
  background: linear-gradient(179deg,rgba(255, 255, 255, 1) 0%, rgb(27 117 187 / 22%) 100%);
  /* Responsive adjustments */
}

.clients .clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.clients .clients-slider:not(:last-child) {
  margin-bottom: 20px;
}

.clients .clients-track {
  display: flex;
  width: fit-content;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients .clients-track.track-1 {
  animation-name: scroll-left;
}

.clients .clients-track.track-2 {
  animation-name: scroll-right;
}

.clients .clients-track:hover {
  animation-play-state: paused;
}

.clients .clients-slide {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.clients .clients-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--default-color), transparent 96%), transparent);
  transition: 0.5s;
}

.clients .clients-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.clients .clients-slide:hover::before {
  left: 100%;
}

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

.clients .clients-slide img {
  max-width: 80%;
  max-height: 60%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-2080px);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-2080px);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients .clients-slide {
    width: 180px;
    height: 90px;
    margin: 0 20px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1760px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1760px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 767px) {
  .clients .clients-slide {
    width: 150px;
    height: 75px;
    margin: 0 15px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1440px);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-1440px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow:  0 5px 20px rgb(0 0 0 / 13%);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 30px;
}
.mg-top{margin-top: 5px;}

h4.subtitles{
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
  }

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

/*Marquee*/
.vertical-marquee {
  height: 550px;               /* increase to show more items */
  overflow: hidden;
  position: relative;
}

.vertical-marquee-track {
  display: flex;
  flex-direction: column;
  animation: scrollUp 20s linear infinite; /* faster */
}

.marquee-set {
  display: flex;
  flex-direction: column;
}

/*.testimonial-wrapper {
  margin-bottom: 24px;
}*/

/* Infinite Scroll */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Pause on hover (optional) */
.vertical-marquee:hover .vertical-marquee-track {
  animation-play-state: paused;
}

/* Pause on hover (optional) */
.vertical-marquee:hover .vertical-marquee-track {
  animation-play-state: paused;
}
.vertical-marquee::before,
.vertical-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.vertical-marquee::before {
  top: 0;
  background: linear-gradient(to bottom, #f6f6f6, transparent);
}

.vertical-marquee::after {
  bottom: 0;
  background: linear-gradient(to top, #f6f6f6, transparent);
}

/*Horizontal marquee strip*/
section#horizontal-marquee {
    background-color: #1b75bb;
    height: 220px;
}
.horizontal-marquee {
  --marquee-duration: 40s;
  --marquee-gap: 2.5rem;
  font-size: 110px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff3b;
  height: 1em;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.horizontal-marquee span {
  display: inline-block;
  padding-right: var(--marquee-gap);
  will-change: transform;
  animation: marqueeMove var(--marquee-duration) linear infinite;
}

/* Animation */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.horizontal-marquee:hover span {
  animation-play-state: paused;
}


/* End Horizontal marquee strip */

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}
    .br-right{border-right: 1px dashed #000;}
    .br-bottom{border-bottom: 1px dashed #000;}
i.bi.bi-whatsapp {
    margin-right: 10px;
}

/*--------------------------------------------------------------
# integration banner
--------------------------------------------------------------*/

.integration-hero {
  background: radial-gradient(circle at top left, #1b75bb, #070b14);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* dotted background */
.integration-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff14 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
}

.integration-hero .container {
  position: relative;
  z-index: 1;
}

/* Headings */
.badge-title {
  color: #a7ce3a;
  font-size: 14px;
  letter-spacing: 1px;
}

.integration-hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin: 20px 0;
  color: #ffffff;
}

.integration-hero h1 span {
  color: #fff;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  background: #a7ce3a;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  color: #000000;
}

.btn:hover {
    color: #ffffff;
    background-color: #1b75bb;
    border-color: #1b75bb;
}

.btn-outline-light {
  padding: 12px 28px;
  border-radius: 30px;
}

/* Icon bubbles */
.icon-bubble {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.icon-bubble img {
  width: 35px;
}

/* Left positions */
.fb { top: -123px; left: 40%; }
.figma { top: -22px; left: 10%; animation-delay: 1s; }
.insta { top: 87px; left: 83%; animation-delay: 2s; }
.google { top: 73px; left: 96px; animation-delay: 1.5s; }
.slack { top: -35px; left: 67%; animation-delay: 2.5s; }

/* Right positions */
.drive { top: -100px; right: 30%; }
.codeigniter { top: 8px; right: 0%; animation-delay: 1s; }
.linkedin { top: 87px; right: 75%; animation-delay: 2s; }
.twitter { top: 60px; right: 33%; animation-delay: 1.3s; }
.php { top: -35px; right: 66%; animation-delay: 2.5s; }

/* Floating animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 991px) {
  .integration-hero {
    padding: 100px 0;
  }
  .integration-hero h1 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Why LBM
--------------------------------------------------------------*/
.process-section {
  padding: 90px 0;
  background-image: url(../img/services/border-line.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-color: #fafafa;
}

.process-line {
  height: 2px;
  background: #e5e5e5;
  margin-top: 65px;
}

.process-line .dot {
  position: absolute;
  top: -9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #a8ce3b;
}

.dot-1 { left: 0%; }
.dot-2 { left: 35%;}
.dot-3 { left: 69%;}
/*.dot-4 { left: 79%; transform: translateX(-100%); }*/

.process-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  min-height: 220px;
}

.process-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  color: #ffffff;
  margin: 0;
}

.process-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}


.step-badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background-color: #1b75bb;
}

/*.badge-1 { background: #21e6c1; }
.badge-2 { background: #ff6a00; }
.badge-3 { background: #6f63ff; }
.badge-4 { background: #0b3c3d; }*/

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.how-we-work .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.how-we-work .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.how-we-work .step-item:last-child {
  margin-bottom: 0;
}

.how-we-work .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.how-we-work .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.how-we-work .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.how-we-work .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.bg-light-blue
{background-color: #e3f3ff;}

.how-we-work .step-info {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.how-we-work .step-info:hover {
  transform: translateY(-5px);
}

.how-we-work .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.how-we-work h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.how-we-work p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .how-we-work .steps-wrapper::before {
    left: 25px;
  }

  .how-we-work .step-item .step-content {
    flex-direction: row !important;
  }

  .how-we-work .step-icon {
    width: 60px;
    height: 60px;
  }

  .how-we-work .step-icon i {
    font-size: 24px;
  }

  .how-we-work .step-info {
    padding: 20px;
  }

  .how-we-work h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .how-we-work .step-content {
    gap: 20px;
  }

  .how-we-work .step-icon {
    width: 50px;
    height: 50px;
  }

  .how-we-work .step-icon i {
    font-size: 20px;
  }

  .how-we-work .step-info {
    padding: 15px;
  }

  .how-we-work h3 {
    font-size: 1.2rem;
  }

  .how-we-work p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
  display: inline-flex;
  padding: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
  margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
  margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
  color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    margin: 5px;
  }
}

.faq .faq-list .faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-list .faq-item h3:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
  padding: 15px;
  display: none;
}

.faq .faq-list .faq-item .faq-content p {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 30px;
  border-radius: 10px;
}

.faq .faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.faq .faq-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #ffffff;
}

.faq .faq-cta .btn-primary:hover {
  background-color: #a9cf38;
  border-color: #a9cf38;
  transform: translateY(-2px);
  color: #000000;
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq .faq-list .faq-item h3 .num {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .faq .faq-list .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
    padding: 15px 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
section#call-to-action {
    background-color: transparent;
}
.call-to-action .cta-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    border-radius: 1rem;
    padding: 25px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 21%);
    background: #ffffff;
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action .cta-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000000;
}

.call-to-action .cta-content p {
  font-size: 15px;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
  color: #000000;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
    background-color: #8bc34a;
    color: #000000;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.call-to-action .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
    background-color: white;
    color: var(--default-color);
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-to-action .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .cta-image img {
  max-width: 54%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.call-to-action .cta-image img:hover {
  transform: translateY(-5px);
}

/* ===============================
   CTA 3D OUTER BOXES + SHADING
================================= */

/*section#call-to-action {
  --x: 50%;
  --y: 50%;
  perspective: 1400px;
}

.call-to-action .cta-wrapper {
  position: relative;
  z-index: 5;
  transform-style: preserve-3d;
  overflow: visible;
  border-radius: 20px;
}


.call-to-action .cta-wrapper::before,
.call-to-action .cta-wrapper::after{
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 20px;
  transition: all 0.2s ease;
}*/

/* ===============================
   BOX 1 (NEAREST)
================================= */
/*.call-to-action .cta-wrapper::before {
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);

  transform: translate3d(20px, 20px, -40px);

  background:
    radial-gradient(
      circle at top right,
      rgba(27,117,187,0.35),   
      rgba(15,25,45,0.4) 40%,  
      rgba(5,8,15,0.8) 100%   
    );

  border: 1px solid rgba(27,117,187,0.25);

  box-shadow:
    0 25px 50px rgba(5,10,20,0.6),          
    0 0 25px rgba(27,117,187,0.25),        
    inset 0 2px 6px rgba(27,117,187,0.35),  
    inset -6px -6px 14px rgba(0,0,0,0.7);   

  z-index: -1;
}*/

/* ===============================
   BOX 2 (MIDDLE)
================================= */
/*.call-to-action .cta-wrapper::after {
  top: -40px;
  left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);

  transform: translate3d(40px, 40px, -80px);

  background:
    radial-gradient(
      circle at top right,
      rgba(27,117,187,0.25),
      rgba(10,18,35,0.5),
      rgba(0,0,0,0.9)
    );

  border: 1px solid rgba(27,117,187,0.18);

  box-shadow:
    0 35px 70px rgba(0,0,0,0.7),
    0 0 30px rgba(27,117,187,0.2),
    inset 0 1px 4px rgba(27,117,187,0.25),
    inset -8px -8px 18px rgba(0,0,0,0.8);

  z-index: -2;
}*/



/* ===============================
   OPTIONAL HOVER DEPTH
================================= */
/*.call-to-action .cta-wrapper:hover::before {
  transform: translate3d(10px, 10px, -30px);
}

.call-to-action .cta-wrapper:hover::after {
  transform: translate3d(20px, 20px, -60px);
}
*/



@media (max-width: 992px) {
  .call-to-action .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-buttons {
    justify-content: center;
  }

  .call-to-action .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action .cta-content p {
    font-size: 1rem;
  }

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .row {
  align-items: center;
}

@media (max-width: 991px) {
  .team .team-intro {
    margin-bottom: 40px;
  }
}

img.product-logo{
    width: 222px;
    height: auto;
    position: absolute;
    top: -9%;
    background-color: #ffffff;
    z-index: 9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgb(149 157 165 / 6%) 0px 8px 24px;
    border: solid #8ec140;
    border-width: 4px 4px 0 4px;}

.team .team-intro .team-intro-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.team .team-intro .team-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.team .team-intro .team-intro-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.team .team-intro .team-intro-content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-intro .team-navigation {
  display: flex;
  gap: 10px;
}

.team .team-intro .team-navigation button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-intro .team-navigation button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.team .member-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-10px);
}

.team .member-card:hover .member-image:before {
  opacity: 0.7;
}

.team .member-card .member-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team .member-card .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-bottom: 4px solid #8ec140;
}

.team .member-card .member-image:hover img {
  transform: scale(1.05);
}

.team .member-card .member-info {
  padding: 25px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team .member-card .member-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .member-card .member-info span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 7px;
}

/* Description */
.desc-p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Capabilities */
.capabilities {
  padding-left: 18px;
  margin-bottom: 15px;
}

.capabilities li {
  font-size: 13px;
  margin-bottom: 6px;
  position: relative;
}

/* Industries tags */
.industries {
  margin-bottom: 15px;
}

.industries span {
  display: inline-block;
  background: #f1f5f9;
  color: #333;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 1px;
}

/* Buttons */
.service-action {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.service-action .btn {
  flex: 1;
  font-size: 13px;
  padding: 8px;
  border-radius: 25px;
  text-align: center;
  transition: 0.3s;
  font-weight: 500;
}

/* Watch Video */
.btn-video {
  background: #f1f5f9;
  color: #333;
}

.btn-video:hover {
  background: #e2e8f0;
}

/* Contact Sales */
.btn-contact {
  background: #8ec140;
  color: #fff;
}

.btn-contact:hover {
  background: #7ab135;
}

.team .member-card .member-social {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.team .member-card .member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-card .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .member-card .member-bio h4 {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-top: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
p.desc-p {
  font-size: 15px;
  color: #4b4b4b;
}

.team .team-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 20px;
}

.team .team-carousel {
  overflow: visible;
}

.team .team-carousel .swiper-slide {
  height: auto;
}

/*Home sections*/
/* HERO */
.hero-section {
  position: relative;
  overflow: visible;
}

/* WRAPPER */
.ribbon-wrapper {
 position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1185px;
    z-index: 10;
    box-shadow: 0 5px 12px rgb(0 0 0 / 0%);
}

/* MAIN RIBBON */
.ribbon {
  position: relative;
  background: linear-gradient(135deg, #add03a, #cbe85a);
  padding: 25px 35px;

  display: flex;
  align-items: center;

  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.ribbon {
  transform: rotateX(12deg) scale(0.96);
  transform-origin: center top;
  transition: all 0.4s ease;

  /* enhanced shadow for depth */
    box-shadow: 0 30px 60px rgb(0 0 0 / 10%), 0 10px 20px rgb(0 0 0 / 10%);
    transform: none;
    border-radius: 0 0 12px 12px;
}

/* FOLD LEFT */
.ribbon::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;

  border-top: 35px solid transparent;
  border-right: 30px solid #8fbf2a; /* darker shade */
}

/* FOLD RIGHT */
.ribbon::after {
  content: "";
  position: absolute;
  right: -29px;
  top: 0;

  border-top: 35px solid transparent;
  border-left: 30px solid #8fbf2a; /* darker shade */
}

/* INNER CONTENT */
.ribbon-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

/* TEXT */
.ribbon-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.ribbon-text p {
  font-size: 13px;
  margin: 0;
  color: #2d2d2d;
  max-width: 420px;
}


/* TAG WRAPPER */
/* TAG WRAPPER */
.ribbon-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* TAG ITEM */
.ribbon-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 13px;
  color: #1a1a1a;

  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* ICON */
.ribbon-tags span i {
  font-size: 13px;
  color: #1a1a1a;
}

/* DIVIDER - GRADIENT LINE */
.ribbon-tags span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 22px;
  margin: 0 12px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0,0,0,0.35),
    transparent
  );
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ribbon-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 167px;
  }

  .ribbon-wrapper {
    bottom: -50px;
    width: 85%;
  }

  .ribbon{padding: 24px 24px;}

  .ribbon-text h4 {
    font-size: 16px;
  }

  .ribbon-text p {
    font-size: 12px;
  }
}


/*Product*/

/*.products-section {
  background: #f8fbff;
}*/

/* Common Card */


/* ⭐ Subtle Different Card */
.custom-dev-card {
  background: #f9fbff;
  border: 1px dashed #cfe2ff;
  box-shadow: none;
}

/* Slight hover difference */
.custom-dev-card:hover {
  transform: translateY(-4px);
  border-color: #007bff;
}

/* Sub text */
.custom-dev-card .sub {
  font-size: 13px;
  color: #007bff;
  margin-bottom: 8px;
}

/* Mini Features */
.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mini-features span {
  font-size: 12px;
  background: #eef5ff;
  padding: 6px 10px;
  border-radius: 20px;
}

.mini-features i {
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    padding: 20px;
  }
}

.custom-dev-modern {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  height: 620px;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: 0.3s;
  position: relative;
  display: flex;
    flex-direction: column;
    gap: 14px;
}

/* subtle top accent */
.custom-dev-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #2b6ea6, #7dbb3b);
  border-radius: 16px 16px 0 0;
}

.custom-dev-modern:hover {
  transform: translateY(-6px);
}

/* Title */
.custom-dev-modern h3 {
  font-weight: 700;
  margin-bottom: 5px;
}

.custom-dev-modern .sub {
  color: #2b6ea6;
  font-size: 13px;
  margin-bottom: 0px;
}

/*.custom-dev-modern .desc {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}*/

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

.f-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fbff;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
}

.f-item i {
  color: #2b6ea6;
}

/* Buttons */
.bottom-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.bottom-row .btn {
  flex: 1;
  border-radius: 25px;
  font-size: 13px;
}

/* ===============================
   PRODUCTS SECTION
=============================== */
.products-section {
  padding: 40px 20px 100px 20px;
}

/* HEADER */
.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* ===============================
   PRODUCT CARD
=============================== */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 440px;
  padding: 50px 25px 25px;

  border-radius: 22px;
  overflow: visible;

  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);

  transition: all 0.4s ease;
}

/* BACKGROUND IMAGE + GRADIENT */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: 
    linear-gradient(140deg, rgba(255,255,255,0.92), rgba(240,246,255,0.75)),
    url('assets/img/services/why-choose-bg.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.45;
  z-index: 0;
  transition: 0.5s ease;
}

/* LIGHT GLOW EFFECT */
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;

  /*background: radial-gradient(circle at 80% 10%, rgba(59,130,246,0.18), transparent 55%);*/
  z-index: 1;
  transition: 0.4s;
}

/* CONTENT ABOVE BACKGROUND */
.product-card > * {
  z-index: 2;
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.12),
    0 10px 25px rgba(59,130,246,0.1);
}

.product-card:hover::before {
  opacity: 0.6;
  transform: scale(1.05);
  border-radius: 22px;
}

.product-card:hover::after {
  background: radial-gradient(circle at 80% 10%, rgb(129 176 58 / 46%), transparent 60%);
  border-radius: 22px;
}

/* HIGHLIGHT CARD */
/*.product-card.highlight {
  border: 1px solid rgba(59,130,246,0.25);
  box-shadow: 
    0 20px 60px rgba(59,130,246,0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
}*/

/* ===============================
   LOGO (FLOATING STYLE)
=============================== */
.product-top {
  text-align: center;
}

img.product-logo {
    width: 200px;
    height: auto;
    position: absolute;
    top: -7%;
    background-color: #ffffff;
    z-index: 9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgb(149 157 165 / 6%) 0px 8px 24px;
    border: solid #8ec140;
    border-width: 4px 4px 0 4px;
    right: 34%;
}

/* ===============================
   CONTENT
=============================== */
.product-content {
  margin-top: 10px;
}

.product-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-content p {
  color: #555;
  font-size: 14.5px;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ===============================
   LIST
=============================== */
.feature-list {
  padding-left: 0;
  margin-bottom: 15px;
}

/*.feature-list li {
  list-style: disc;
 display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}
*/
.feature-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 6px;
    color: #374151;
  }
.feature-list li i {
  color: #3b82f6;
  font-size: 14px;
}

/* ===============================
   TAGS (APPLE STYLE)
=============================== */
.tags {
  margin-bottom: 15px;
}

.tags span {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  margin: 4px;

  border-radius: 999px;

  background: rgba(59,130,246,0.08);
  color: #1b75bb;
  border: 1px solid rgba(59,130,246,0.15);

  transition: 0.3s ease;
}

.tags span:hover {
  background: rgba(59,130,246,0.15);
  transform: translateY(-2px);
}

/* ===============================
   BUTTONS
=============================== */
.service-action {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.service-action .btn {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-video {
  background: #eef4ff;
  color: #1b75bb;
}

.btn-video:hover {
  background: #dbeafe;
  color: #1b75bb;
}

.btn-contact {
  background: #1b75bb;
  color: #fff;
}

.btn-contact:hover {
      background: #8dbf3f;
}


/*services-section home page*/
.softdev-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f6f9ff, #eef3ff);
}

.softdev-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  /*border-radius: 24px;*/
  overflow: hidden;
 /* background: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);*/
}

/* LEFT SIDE */
.softdev-content {
  /*width: 50%;*/
  /*padding: 60px;*/
  position: relative;
  /*background: linear-gradient(135deg, #ffffff, #f4f8ff);*/
}

/* Glow effect */
.softdev-content::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(0, 102, 255, 0.08);
  border-radius: 50%;
/*  top: -60px;
  left: -60px;*/
  filter: blur(50px);
}

.softdev-tag {
  font-size: 13px;
  font-weight: 600;
  color: #1b75bb;
  letter-spacing: 1px;
}

.softdev-title {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
  color: #111;
}

/*.softdev-subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}*/

.softdev-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* LIST */
.softdev-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.softdev-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #444;
}

/* Check icon */
.softdev-list li::before {
  content: "✓";
  margin-right: 10px;
  color: #1b75bb;
  background: rgba(0,102,255,0.1);
  padding: 4px 7px;
  border-radius: 50%;
  font-size: 13px;
}

/* BUTTON */
.softdev-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0066ff, #0047cc);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.softdev-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: 0.4s;
}

.softdev-btn:hover::after {
  width: 100%;
}

.softdev-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,102,255,0.3);
}

/* RIGHT SIDE */
.softdev-visual {
  width: 50%;
  background: linear-gradient(135deg, #0a192f, #172a45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .softdev-wrap {
    flex-direction: column;
  }

  .softdev-content,
  .softdev-visual {
    width: 100%;
  }

  .softdev-content {
    padding: 40px 25px;
  }

  .softdev-title {
    font-size: 26px;
  }
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio-section {
  /*background: #f9f9f9;*/
  padding: 100px 0;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgb(27 117 187 / 12%) 100%);
}

.portfolio-tabs .nav-link {
    margin: 0 6px;
    color: #666;
    font-weight: 500;
    padding: 10px 35px;
    border: 1px solid rgba(17,24,39,.12);
    border-radius: 5px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    font-size: 17px;
}
button.nav-link i.bi {
    font-size: 25px;
    margin-right: 10px;
}

.portfolio-tabs .nav-link.active {
  background: #1b75bb;
  color: #fff;
}

  .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

/* Image */
.portfolio-item img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.portfolio-item:hover img {
  transform: scale(1.15);
  filter: blur(2px);
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 135deg, rgb(27 117 187 / 76%), rgba(0,0,0,0.9) );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.6s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* Content animation */
.portfolio-content {
  text-align: center;
  color: #fff;
  max-width: 85%;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

/* Badge */
.portfolio-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* Icon */
.portfolio-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Title */
.portfolio-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}

/* Description */
.portfolio-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.4s;
}

.portfolio-btn:hover {
  background: #fff;
  color: #0d6efd;
}

.mb-45{margin-bottom: 4.5rem!important;}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/*.contact {
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgb(27 117 187 / 12%) 100%);
}*/

.contact .container {
  max-width: 1320px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .icon-box:hover {
    background-color: #ffffff;
    color: #000;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1b75bb;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: #91bb30;
  color: #000000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 30px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 30px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
}

.service-details .service-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .section-header .divider {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-details .service-content .service-features .feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: -1;
  transition: 0.4s;
}

.service-details .service-content .service-features .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-card:hover:before {
  height: 100%;
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.float-anim {
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .service-details .service-content .service-features .feature-card {
    margin-bottom: 20px;
  }
}



/* FEATURES GRID */
.crm-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.feature-item {
    background: linear-gradient(275deg,#eef2ff,#eef2ff);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    color: #000000;
}

.feature-item {
  position: relative;
  padding-left: 29px;
  font-size: 14px;
  color: #333;
}

.feature-item::before {
  content: "»"; /* double chevron */
  position: absolute;
  left: 9px;
  top: 3px;
  right: 8px;
  color: #1b75bb;
  font-size: 23px;
}

.feature-item:hover {
  background: linear-gradient(134deg,#1b75bb,#145183);
  transform: translateY(-3px);
  color: #fff;
}

/* SUITABLE TAGS */
.crm-suitable h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.crm-suitable .tags span {
      display: inline-block;
    margin: 5px 8px 0 0;
    padding: 8px 12px;
    background: rgb(112 112 112 / 9%);
    border-radius: 20px;
    font-size: 12px;
    color: #000;
}

.crm-suitable .tags span:hover {
    background: #a5cd39;
}

.switch-wrap {
  position: relative;
  display: inline-flex;
  background: #eef2ff;
  border-radius: 50px;
  padding: 5px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-top: 15px;
}

/* Sliding background */
.switch-bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 50%;
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #8ec140, #508316);
  border-radius: 50px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}

/* Buttons */
.switch-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #1b75bb;
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.3s ease;
}

.switch-bg {
  will-change: transform;
}

/* Active text */
.switch-btn.active {
  color: #fff;
}

/* Hover */
.switch-btn:hover {
    color: #16578a;
}
.switch-btn.active:hover{
  color: #b3f156;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.switch-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Make icon smoother */
.switch-btn svg {
  transition: transform 0.3s ease;
}

/* Subtle animation */
.switch-btn:hover svg {
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* SECTION BACKGROUND ai & Future */
.ai-future-sec {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: radial-gradient(circle at top left, #12456f, #134a77);
}

/* LEFT CONTENT */
.ai-left {
    position: relative;
    z-index: 2;
    color: #fff;
    /*max-width: 520px;*/
}

.ai-subtitle {
    color: #38bdf8;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ai-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 12px 0 18px;
    color: #ffffff;
}

.ai-left p {
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ffffff;
}

/* LIST */
.ai-list {
    list-style: none;
    padding: 0;
}

.ai-list li {
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
    color: #e2e8f0;
}

.ai-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 50%;
}

/* RIGHT VIDEO WRAPPER */
.ai-video-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

/* VIDEO */
.ai-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEFT FADE (IMPORTANT FOR BLEND) */
.ai-video-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient( to right, #12456f 0%, rgb(18 70 112 / 55%) 50%, #12456f00 100% );
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ai-video-wrap {
        position: relative;
        width: 100%;
        height: 250px;
        margin-top: 30px;
    }

    .ai-video-wrap::before {
        display: none;
    }

    .ai-left h2 {
        font-size: 28px;
    }
}


/* SECTION BG */
/* GRID */
.premium-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
  margin-top:50px;
}

/* CARD */
.card{
  background:#ffffff;
  border-radius:22px;
  padding:26px;
  border:1px solid #eef2f7;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.35s;
  display:flex;
  flex-direction:column;
}

/* HOVER */
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* TOP SECTION */
.card-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

/* ICON BOX (INFOGRAPHIC STYLE) */
.icon-box{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  background:linear-gradient(135deg,#eaf3ff,#f4f8ff);
  color:#1b75bb;
  flex-shrink:0;
}

/* HEADINGS */
.card h3{
  font-size:22px;
  font-weight:600;
  color:#1b2a4e;
  margin:0;
}

/* DESCRIPTION */
.card p{
  font-size:14px;
  color:#131416;
  margin-bottom:15px;
  line-height:1.6;
}

/* LIST */
.card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.card ul li{
  font-size:14.5px;
  color:#000000;
  margin-bottom:8px;
  padding-left:20px;
  position:relative;
}

/* BULLETS */
.card ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#ffffff;
}

/* SIZE CONTROL */
.xl{ grid-column: span 2; }
.tall{ grid-row: span 2; }
.wide{ grid-column: span 2; }

/* SUBTLE COLOR VARIATION */
.card:nth-child(1){ background:#f7fbff; }
.card:nth-child(2){ background:#f9f7ff; }
.card:nth-child(3){ background:#fff7f9; }
.card:nth-child(4){ background:#f7fffc; }
.card:nth-child(5){ background:#fffaf5; }
.card:nth-child(6){ background:#f8f9ff; }
.card:nth-child(7){ background:#fff7fb; }

/* RESPONSIVE */
@media(max-width:992px){
  .premium-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:576px){
  .premium-grid{
    grid-template-columns: 1fr;
  }
}

/* DECOR CONTAINER */
/* DECOR WRAPPER */
.card-decor{
  position:absolute;
  bottom:12px;
  right:12px;
  width:90px;
  height:70px;
  opacity:0.9;
  transition:0.4s ease;
}

/* MAIN ICON */
.main-icon{
  font-size:64px;
  position:absolute;
  right:10px;
  bottom:18px;
  color:#1b75bb;
  transition:0.4s;
}

/* MINI UI (bars) */
.mini-ui{
  position:absolute;
  bottom:8px;
  left:8px;
  display:flex;
  align-items:flex-end;
  gap:4px;
}

.mini-ui span{
  width:6px;
  background:#1b75bb;
  border-radius:3px;
  animation: bars 1.5s ease-in-out infinite alternate;
}

.mini-ui span:nth-child(1){ height:10px; animation-delay:0s; }
.mini-ui span:nth-child(2){ height:16px; animation-delay:0.2s; }
.mini-ui span:nth-child(3){ height:22px; animation-delay:0.4s; }

/* ANIMATION */
@keyframes bars{
  from{ transform:scaleY(0.6); }
  to{ transform:scaleY(1); }
}


/* SUBTLE GLOW ON HOVER */
.card:hover{
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ICON GLOW (VERY PREMIUM DETAIL) */
.card:hover .main-icon{
  text-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* BASE CARD */
.card{
  background:#ffffff;
}

/* 1. BLUE (Analysis) */
.card:nth-child(1){
  background: linear-gradient(180deg,#ffffff,#f2f7ff);
}
.card .main-icon{
  color:#ffffff;
}

/* 2. PURPLE (Development) */
.card:nth-child(2){
  background: linear-gradient(180deg,#ffffff,#f6f3ff);
}
.card .main-icon{
  color:#ffffff;
}

/* 3. ROSE (Deployment) */
.card:nth-child(3){
  background: linear-gradient(180deg,#ffffff,#fff3f6);
}
.card .main-icon{
  color:#ffffff;
}

/* 4. TEAL (Migration) */
.card:nth-child(4){
  background: linear-gradient(180deg,#ffffff,#f2fffb);
}
.card .main-icon{
  color:#ffffff;
}

/* 5. ORANGE (Training) */
.card:nth-child(5){
  background: linear-gradient(180deg,#ffffff,#fff7f2);
}
.card .main-icon{
  color:#ffffff;
}

/* 6. INDIGO (Hosting) */
.card:nth-child(6){
  background: linear-gradient(180deg,#ffffff,#f3f5ff);
}
.card .main-icon{
  color:#ffffff;
}

/* 7. PINK (Support) */
.card:nth-child(7){
  background: linear-gradient(180deg,#ffffff,#fff2f8);
}
.card .main-icon{
  color:#ff4d8d;
}
/* IMAGE CARD */
.image-card{
  padding:0;
  overflow:hidden;
  position:relative;
}

/* IMAGE */
.image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

/* OVERLAY */
.image-overlay{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:25px;
  color:#fff;
  z-index:2;
}

/* TEXT */
.image-overlay h3{
  font-size:20px;
  font-weight:600;
}

.image-overlay p{
  font-size:14px;
  opacity:0.9;
}

/* GRADIENT OVERLAY (MATCH YOUR THEME) */
.image-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1),
    rgba(20,20,40,0.6)
  );
}

/* BLUR GLOW (MATCH OTHER CARDS) */
.image-card::before{
  content:"";
  position:absolute;
  width:200px;
  height:200px;
  background: radial-gradient(circle, rgba(91,108,255,0.25), transparent 70%);
  top:-60px;
  right:-60px;
  filter: blur(50px);
}

/* HOVER EFFECT */
.image-card:hover img{
  transform:scale(1.08);
}

.image-card:hover{
  transform:translateY(-8px);
}
.image-card.wide{
  grid-column: span 1;
}

.image-card.xl{
  grid-column: span 2;
  grid-row: span 2;
}

.container.section-title h4 {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 25px;
    line-height: 34px;
}
section.section.product {
    padding: 100px 0 20px 0;
}

/*New*/
.process-ultra-sec{
  padding:120px 0;
  background:linear-gradient(135deg,#0a0f1f,#1b75bb);
  color:#fff;
  overflow:hidden;
}

/* HEADER */
.process-ultra-header h2{
  font-size:42px;
  font-weight:700;
}
.process-ultra-header p{
  color:#cfd6ff;
  margin-bottom:70px;
}

/* WRAP */
.process-ultra-wrap{
  overflow:hidden;
  position:relative;
}

/* TRACK */
.process-ultra-track{
  display:flex;
  gap:40px;
  width:max-content;
  animation:ultraScroll 25s linear infinite;
}

/* CARD */
.process-ultra-card{
   width: 300px;
    height: 170px;
    padding: 30px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) );
    /*backdrop-filter: blur(14px);*/
    border: 1px solid rgb(83 110 134);
    transition: all 0.5s cubic-bezier(.23,1,.32,1);
    transform: scale(0.85) rotateY(12deg);
    opacity: 0.55;
    position: relative;
    overflow: hidden;
    margin: 25px 0;
}

.process-ultra-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:radial-gradient(
    circle at 30% 20%,
    rgba(255,255,255,0.25),
    transparent 60%
  );

  opacity:0;
  transition:0.5s;
}

/* TEXT POLISH */
.process-ultra-card h4{
  font-size:22px;
  margin-bottom:10px;
  letter-spacing:0.5px;
  color:#ffffff;
}

.process-ultra-card p{
  color:#ffffff;
  font-size:14px;
}

/* ICON POLISH */
.process-ultra-card i{
  font-size:26px;
  margin-bottom:14px;

  background:linear-gradient(135deg,#fff,#aab6ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ACTIVE CARD (SILK PREMIUM) */
.process-ultra-card.active{
  transform:scale(1.12) rotateY(0deg);
  opacity:1;

  border:1px solid rgba(255,255,255,0.25);
  border-radius:22px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(255,255,255,0.05);
}

/* ACTIVATE SOFT LIGHT */
.process-ultra-card.active::before{
  opacity:1;
}

/* HOVER = SLIGHT LIFT (NOT TOO MUCH) */
.process-ultra-card:hover{
  transform:scale(1.16) rotateY(0deg);
  opacity:1;
}

/* AUTO SCROLL */
@keyframes ultraScroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* PAUSE ON HOVER */
.process-ultra-wrap:hover .process-ultra-track{
  animation-play-state:paused;
}

/* RESPONSIVE */
@media(max-width:768px){
  .process-ultra-card{
    width:260px;
  }
}

/*Career page*/
/* HERO */
.career-hero{
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:#fff;
    padding:100px 0;
    text-align:center;
}
.career-hero h1{
    font-weight:700;
    font-size:48px;
}
.career-hero p{
    max-width:700px;
    margin:auto;
    opacity:0.9;
}

/* ABOUT SECTION */
.career-about{
    padding:100px 0 0;
}
.career-about-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* JOB CARD */
.job-card{
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius:20px;
    padding:25px;
    position:relative;
    transition:0.4s;
    border:1px solid rgba(0,0,0,0.05);
}
.job-card:hover{
    transform: translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* STRIP */
.job-strip{
    position:absolute;
    top:0;
    right:0;
    background:linear-gradient(45deg,#08121e,#2e8fdc);
    color:#fff;
    padding:5px 15px;
    font-size:12px;
    border-radius:0 20px 0 20px;
}

/* TITLE */
.job-title{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

/* BADGES */
.badge-custom{
    background: #1b75bb0d;
    color: #124874;
    font-size:12px;
    padding:6px 10px;
    border-radius:8px;
    margin-right:5px;
}




/* BIG RIGHT ICON */
.big-icon{
    font-size:50px;
    color:#28a745;
    opacity:0.15;
    margin-bottom:10px;
}

/* MINI TAGS */
.mini-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:5px;
}
.mini-tags span{
    font-size:10px;
    background:rgba(40,167,69,0.1);
    color:#28a745;
    padding:3px 6px;
    border-radius:10px;
}

/* BETTER CARD SPACING */
.job-card{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* CLEAN HR */
.job-card hr{
    margin:10px 0;
    opacity:0.2;
}

/* ICON LIST */
.job-info{
    margin-top:15px;
    margin-bottom: 20px;
}
.job-info p{
    margin-bottom:8px;
    font-size:14px;
    color:#555;
}
.job-info i{
    color:#1b75bb;
    margin-right:8px;
}

/* APPLY BTN */
/*.apply-btn{
    margin-top:15px;
    background:linear-gradient(45deg,#28a745,#20c997);
    border:none;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    transition:0.3s;
}
.apply-btn:hover{
    opacity:0.9;
}*/

/* SECTION TITLE */
.section-title{
    text-align:center;
    margin-bottom:40px;
}
.section-title h2{
    font-weight:700;
}

.job-info p{
    display:flex;
    align-items:flex-start;
    gap:8px;
}

.job-info i.fa-check{
    margin-top:4px;
    color:#28a745;
}

/* MODAL GLASS STYLE */
.premium-modal{
    border-radius:20px;
    padding:10px;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(15px);
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 20px 60px rgba(0,0,0,0.1);
}

/* HEADER */
.modal-title{
    font-weight:600;
}

/* INPUT */
.premium-input{
    border-radius:12px;
    padding:12px;
    border:1px solid #e5e5e5;
}
.premium-input:focus{
    border-color:#a3cd39;
    box-shadow:none;
}

/* UPLOAD BOX */
.upload-box{
    border:2px dashed #dfe6e2;
    border-radius:15px;
    padding:30px;
    cursor:pointer;
    transition:0.3s;
    position:relative;
}
.upload-box:hover{
    border-color:#a3cd39;
    background:#f9fff2;
}
.upload-box i{
    font-size:30px;
    color:#a3cd39;
    margin-bottom:10px;
}
.upload-box p{
    font-size:14px;
    color:#666;
}

/* HIDE FILE INPUT */
.file-input{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0;
    cursor:pointer;
}

/* ANIMATION */
.modal.fade .modal-dialog{
    transform:scale(0.9);
    transition:0.3s ease;
}
.modal.show .modal-dialog{
    transform:scale(1);
}

.progress{
    height:6px;
    border-radius:10px;
    background:#eee;
}
.progress-bar{
    background:#a3cd39;
    transition:width 0.3s;
}

/* RESPONSIVE */
@media(max-width:768px){
    .premium-modal{
        padding:5px;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .career-hero h1{
        font-size:32px;
    }
}
/*Contact us page*/
/* CARD */
.cont-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    transition:0.3s;
}
.cont-card:hover{
    transform:translateY(-5px);
}

/* ICON */
.contact-icon{
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#eaf3ff,#f4f8ff);
    color:#1b75bb;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    font-size:20px;
}

/* FORM */
.form-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.form-control{
    border-radius:10px;
    padding:12px;
    border:1px solid #e0e0e0;
}
.form-control:focus{
    box-shadow:none;
    border-color:#28a745;
}

/* BUTTON */
.submit-btn{
    background:linear-gradient(45deg,#28a745,#20c997);
    border:none;
    padding:12px;
    color:#fff;
    border-radius:30px;
    width:100%;
    transition:0.3s;
}
.submit-btn:hover{
    transform:scale(1.03);
}

/* MAP */
.map-section iframe{
    width:100%;
    height:310px;
    border:0;
    border-radius:20px;
    margin-top:40px;
    box-shadow: 0 10px 40px rgb(0 0 0 / 12%);
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-hero{
        padding:60px 0;
    }
}
/*privacy policy*/
/* ===== CARD ===== */
.policy-block{
    background:var(--card);
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 35px rgb(0 0 0 / 12%);
    margin-bottom:25px;
    transition:0.3s;
}

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

/* ===== HEADINGS ===== */
.policy-block h5{
    font-weight:600;
    margin-bottom:15px;
    position:relative;
    padding-left:28px;
}

.policy-block h5::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:12px;
    height:12px;
    background:#9dc836;
    border-radius:50%;
}

.contact-box-pri p {
    color: #161616;
}

/* ===== TEXT ===== */
.policy-block p{
    font-size:1rem;
    line-height:1.8;
}

/* ===== CONTACT ===== */
.contact-box-pri{
    background:linear-gradient(135deg,#a3cd39,#6ea820);
    color:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
}

/*why choose us tooltip*/
.tooltip-inner {
  background: linear-gradient(135deg,#a3cd39,#8db82f);
  color: #000;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #93be32;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #93be32;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #93be32;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #93be32;
}
.icon-bubble {
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-bubble:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
section.contact-inner-sec {
    padding: 100px 0;
}
img.crm-img{position: absolute;
    top: -240px;
    right: -98px;}

img.erp-img{position: absolute;
    top: -256px;
    left: -80px;}

/* RESPONSIVE */
@media(max-width:768px){
    img.img-fluid.hero-image {
    width: 1203px;
    position: absolute;
    left: 92px;
    bottom: -125px;
    rotate: 326deg;
    z-index: 0;
    right: auto;
    top: auto;
}
.hero {padding: 50px 0 114px 0;}
.hero h1 {font-size: 1.5rem;}
.lead {font-size: 12px; font-weight: 400;z-index: 1;position: relative;}
.hero .hero-features{display: none;}
.dis-none{display: none;}
.header .btn-getmail{display: none;}
.header .logo img {max-height: 40px;}
.crm-features{    grid-template-columns: repeat(1, 1fr);}
.section-header p{margin: 0;}
.product-card.highlight {margin-top: 50px;}
.contact-subcolumn{flex-direction: column;}
.footer .footer-links ul{gap: 9px;padding: 10px 0;margin-left: -14px;}
.social-links.d-flex{    justify-content: center;}
.footer-bottom-links{    justify-content: center;}
.footer .footer-about .logo{margin-bottom: 0;}
.footer .footer-about .logo img { max-height: 50px;}
.section-title{margin-bottom: 30px;}
.about .about-content-box h3{width: auto;font-size: 18px;}
.softdev-content{padding: 0;}
.softdev-list li {margin-bottom: 6px;}
.bottom-subfooter{margin: 25px 0 25px;}
.about .about-image-grid .img-grid-main{width: 100%;height: 250px;right: -3px;}
.about .about-image-grid .experience-badge{ right: 245px;bottom: 149px;}
.about .about-image-grid .img-grid-tertiary{display: none;}
section#about { padding: 77px 0 50px;}
.ai-future-sec {position: relative;z-index: 1;}
.ai-future-sec::before {content: "";position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: rgb(0 0 0 / 59%);z-index: -1;}
.switch-btn{padding: 10px 10px;font-size: 11px;}
.switch-btn .icon{display: none;}
img.product-logo{top: -4%;}
.switch-bg{width: 53%;}
.navmenu ul{height: 360px; width: auto;}
.ribbon-tags span{gap: 6px;}
.section-title h2{font-size: 1.5rem;}
.products-section {padding: 100px 20px 100px 20px;}
.ai-left h2{font-size: 1.5rem;}
.section-header h2{font-size: 1.5rem;}
.integration-hero h1 {font-size: 1.5rem;text-transform: capitalize;}
.hero-inner h1 { font-size: 1.5rem;}
.hero-inner p{ font-size: 16px;}
.hero-inner{padding: 50px 0;}
img.erp-img {position: initial;}
img.crm-img {position: initial;padding-top: 25px;}
.premium-grid .card {grid-column: span 2;}
section.services-premium {padding: 0 0 30px 0;}
.section-vis-mis{padding: 30px 0;}
.footer .copyright{justify-content: center;}
.cta button.btn-premium.primary.me-2 { margin-bottom: 12px;}
}