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

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

.php-email-form .sent-message {
  display: none;
  color: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 16px;
}
.php-email-form .thanknotify {
  padding-right: 12px;
    font-size: 19px;
    color: green;
}

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

/* Scrollbar global */
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #040677 #e6e9ff;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e6e9ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #040677, #1b6bff);
  border-radius: 10px;
}
/* Scrollbar global */
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

/* .header .logo img {
  max-height: 60px;
  margin-right: 8px;
} */
.header .logo img {
  height: 60px; /* Force a consistent height */
  width: auto;   /* Maintain aspect ratio */
  transition: none; /* Transitions on 'src' don't work; keeping it off prevents ghosting */
}

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

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

/*-----*/
.header .logo-scrolled {
  display: none;
}

/* When scrolled: hide main, show scrolled logo */
.scrolled .header .logo-main {
  display: none;
}

.scrolled .header .logo-scrolled {
  display: block;
  max-height: 60px; /* Keep consistent sizing */
}
/*-----*/

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*container Menu fix*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 6.5rem;
}

/* 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: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    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;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-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: 25px;
  }

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

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

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

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

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Submenu active item highlight */
.navmenu .dropdown ul a.active {
  color: var(--nav-dropdown-hover-color);
  /* font-weight: 600; */
  background: rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--nav-hover-color);
}
.navmenu a i.toggle-dropdown {
  transition: transform 0.3s ease;
}

/* Mobile Navigation */
/* Mobile Navigation - Left Sidebar */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
    position: relative;
  }

  .navmenu {
    padding: 0;
  }
/*--*/
.navmenu ul {
    display: none;                    /* ← MISSING THIS */
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;                         /* RIGHT sidebar */
    width: 320px;
    height: 100vh;
    padding: 80px 0 20px;
    margin: 0;
    background-color: var(--nav-mobile-background-color, #fff);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    z-index: 10000;                   /* HIGHEST */
    transform: translateX(100%);      /* HIDDEN right */
  }

  /* 2. Show sidebar when active */
  .mobile-nav-active .navmenu ul {
    display: block;
    transform: translateX(0);         /* SLIDE IN */
  }



  /* 4. Close icon - always visible */
  .mobile-nav-toggle {
    z-index: 10001 !important;       /* ABOVE EVERYTHING */
  }

.mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
    position: relative;
  }

  /* Close icon stays relative (no backdrop needed) */
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--nav-navy) !important; /* Keep normal color */
  }

  

/*--*/
  
.navmenu ul::-webkit-scrollbar {
  width: 6px;
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 25px;
    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;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 10px;
    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, #00A651), transparent 90%);
    color: #fff;
  }

  .navmenu a:hover i,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color, #00A651);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background-color: rgba(0, 165, 81, 0.05);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color, #00A651);
    transform: rotate(180deg);
  }
.navmenu .dropdown > ul {
  display: none !important;
  position: static !important;
  margin: 5px 0 0 25px !important;
  padding: 8px 0 !important;  /* Small padding only */
  background: rgba(0, 165, 81, 0.05) !important;
  border-radius: 4px !important;
  min-height: 0 !important;   /* CRITICAL: No minimum height */
  height: auto !important;    /* Auto height based on content */
}
 /* .navmenu .dropdown > ul {
    display: none !important;
    position: static !important;
    margin: 5px 0 0 25px !important;
    padding: 8px 0 !important;
    background: rgba(0, 165, 81, 0.05) !important;
    border-radius: 4px !important;
  } */
  .navmenu li.dropdown-active > ul {
    display: block !important;
    height: auto !important;
  }
    /* Submenu links styling */
  /* .navmenu .dropdown ul a {
    padding: 12px 25px 12px 45px !important;
    font-size: 16px !important;
    background: none !important;
  } */

  /* Icon rotation transition */
  .navmenu .toggle-dropdown {
    transition: transform 0.3s ease !important;
  }
/* .navmenu .dropdown-active > ul {
  display: block !important;
} */

  /* .navmenu .dropdown>.dropdown-active > ul {
    display: block;
  } */

  .navmenu .dropdown ul a {
    padding-left: 20px;
    font-size: 16px;
    background: rgba(0, 165, 81, 0.02);
  }


  /* .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.05);
    margin-left: 10px;
  } */

  .navmenu .dropdown ul a.active {
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
    background: rgba(0, 165, 81, 0.1);
    border-left: 3px solid var(--accent-color, #00A651);
  }





 


  /* Sleek Navy Scrollbar for Sidebar */
.navmenu ul::-webkit-scrollbar {
  width: 6px; /* Thin scrollbar */
}

.navmenu ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05); /* Almost transparent track */
  border-radius: 3px;
}

.navmenu ul::-webkit-scrollbar-thumb {
  background: #1e3a8a; /* Navy blue */
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.navmenu ul::-webkit-scrollbar-thumb:hover {
  background: #1e40af; /* Lighter navy on hover */
}

/* Firefox support */
.navmenu ul {
  scrollbar-width: thin;
  scrollbar-color: #1e3a8a rgba(0, 0, 0, 0.05);
}
}
/* mega menu */
:root {
  --nav-navy: #06225F;
  --nav-green: #10b981;
  --bg-light: #f5f7fb;
  --bg-hover: #f0fdf4;
  --bg-active: #e2e8f0; 
}

.products-mega-box a, 
.service-row .main, 
.sub a {
  box-sizing: border-box !important;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border-left: 5px solid transparent; 
  color: var(--nav-navy);
  font-weight: 600;
  width: 100%;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--bg-light);
  outline: none !important;
  transform: none !important;
}

.products-mega-box a:hover,
.service-row .main:hover,
.sub a:hover,
.products-mega-box a:active,
.service-row .main:active,
.sub a:active,
.products-mega-box a.active,
.service-row .main.active,
.sub a.active {
    background: #E0F2FF !important;   
  border-left-color: var(--nav-navy) !important;
  color: var(--nav-navy) !important;
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  padding-left: 20px !important;
}

.products-mega-box a.active,
.service-row .main.active,
.sub a.active {
  background: var(--bg-hover) !important;
  color: var(--nav-green) !important;
  border-left-color: var(--nav-green) !important;
}

.products-mega-box, .services-mega-box {
  background: #ffffff;
  border-radius: 14px;
  z-index: 1000;
  border: 1px solid #eee;
}

.service-row { 
  margin-bottom: 15px; 
}

.sub {
  padding-left: 20px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 5px; 
}

.sub a {
  background: transparent;
  min-height: 38px;
  font-size: 13px;
  color: #555;
}

@media (min-width: 992px) {
  .products-mega-box, .services-mega-box {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
  }

  .mega-products:hover .products-mega-box,
  .mega-services:hover .services-mega-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .products-mega-box {
    width: 720px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .services-mega-box {
    width: 380px;
    padding: 25px;
  }
}

@media (max-width: 1200px) {
  .products-mega-box, 
  .services-mega-box {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    position: static;
    width: 100% !important;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border: none;
    padding: 0 10px;
  }

  .dropdown.dropdown-active > .products-mega-box,
  .dropdown.dropdown-active > .services-mega-box {
    max-height: 1200px;
    opacity: 1;
    padding: 15px 10px;
  }

  .products-mega-box {
    display: flex !important;
    flex-direction: column; 
    gap: 10px;
    background: #f8fafc; 
    border-radius: 12px;
  }

  .products-mega-box a {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    justify-content: flex-start;
    text-align: left;
    font-size: 14px;
    min-height: 50px;
    padding: 10px 15px;
    border-radius: 10px !important;
    transition: 0.3s;
    border-left: 5px solid transparent !important; 
  }

  .products-mega-box a:active, 
  .products-mega-box a:hover {
    background: var(--bg-hover) !important;
    border-left-color: var(--nav-green) !important; /* Moon curve appears on left */
    color: var(--nav-green) !important;
    padding-left: 20px !important;
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
  }

  .service-row .main {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
    font-size: 14px;
    border-radius: 10px;
  }

  .sub {
    padding-left: 25px;
    border-left: 2px solid #e2e8f0;
    margin-left: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .sub a {
    background: transparent !important;
    border: none !important;
    font-size: 13px;
    color: #64748b;
    min-height: 35px;
    padding-left: 5px !important;
  }
}
/* perpetuuiti submenu */
/* ===============================
   COMMON
================================= */

.has-submenu {
  position: relative;
}

.has-submenu > a {
  display: flex;
  align-items: center;
}

.sub-arrow {
  margin-left: auto;
  font-size: 12px;
}


/* ===============================
   DESKTOP (>= 992px)
================================= */

@media (min-width: 992px) {

  .submenu-box {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    width: 460px;
    max-width: 90vw; /* 🔥 prevent overflow */
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
  }

  /* SHOW ON HOVER */
  .has-submenu:hover .submenu-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Columns */
  .submenu-col {
    flex: 1;
    min-width: 0; /* 🔥 FIX overflow */
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .submenu-col:first-child {
    border-right: 1px solid #e2e8f0;
    padding-right: 15px;
  }

  .submenu-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
  }

  .submenu-col a {
    font-size: 13px;
    color: #64748b;
    padding: 6px 8px;
    border-radius: 6px;
    /* 🔥 TEXT WRAP FIX */
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    transition: 0.25s;
  }

  .submenu-col a:hover {
    background: #f0fdf4;
    color: #10b981;
    padding-left: 12px;
  }

  /* Hide mobile submenu */
  .product-sub {
    display: none !important;
  }
}

/* ===============================
   PRODUCTS GRID
================================= */

.products-mega-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  grid-auto-flow: dense;
}

.products-mega-box .scm-wide {
  grid-column: span 2;
}

.products-mega-box a,
.has-submenu > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #06225F;
  font-weight: 600;
  background: #f5f7fb;
  padding: 10px 15px;
  border-radius: 8px;
  min-height: 45px;
  border-left: 5px solid transparent;
  transition: 0.25s;
}

/* 🔥 WRAP FIX FOR GRID ITEMS */
.products-mega-box a {
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

.products-mega-box a:hover,
.has-submenu > a:hover {
  background: #E0F2FF;
  border-left-color: #06225F;
  padding-left: 20px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}


/* ===============================
   MOBILE (< 992px)
================================= */

@media (max-width: 991px) {
  /* Hide desktop popup */
  .submenu-box {
    display: none !important;
  }
  /* Vertical layout */
  .products-mega-box {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    background: #f8fafc;
    border-radius: 12px;
    /* padding: 10px; */
  }

  .products-mega-box a {
    background: #fff !important;
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
    min-height: 50px;
  }

  /* ===============================
     MOBILE SUBMENU (ACCORDION)
  ================================= */

  .product-sub {
    display: none;
    flex-direction: column;
    padding-left: 25px;
    border-left: 2px solid #e2e8f0;
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 15px;
    gap: 5px;
  }

  .has-submenu.dropdown-active .product-sub {
    display: flex;
  }

  .product-sub a {
    background: transparent !important;
    border: none !important;
    font-size: 13px;
    color: #64748b;
    min-height: 35px;
    padding-left: 5px !important;
    white-space: normal;
    word-break: break-word;
  }

  .product-sub a:hover {
    color: #10b981;
    padding-left: 12px !important;
  }

  .product-sub .submenu-title {
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    color: #0f172a;
  }
}

.products-mega-box a, 
.service-row .main, 
.has-submenu > a,
.sub a,
.submenu-col a {
  white-space: normal !important;  
}
/* mega menu end */

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

  .navmenu .dropdown ul a.active {
  color: var(--nav-dropdown-hover-color);
  font-weight: 600;
}

} */

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.ice-footer{
  background:#06225F;
  color:#fff;
  font-family:"Poppins",sans-serif;
  padding-top:40px;
}

.footer-wrapper{
  width:90%;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 2fr;
  gap:40px;
  padding-bottom:20px;
}

.footer-logo{
  width:170px;
  margin-bottom:15px;
}

.footer-brand p{
  font-size:14px;
  line-height:1.6;
  opacity:.9;
  max-width:320px;
}

.footer-social{
  margin-top:15px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:16px;
  transition:.3s;
}

.footer-social a:hover{
  background:#1bbf7a;
  transform:translateY(-3px);
}

.footer-col h4{
  font-size:18px;
  margin-bottom:16px;
  font-weight:800;
  color: white;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col li{
  margin-bottom:10px;
}

.footer-col a{
  color:#fff;
  text-decoration:none;
  opacity:.85;
  transition:.3s;
}

.footer-col a:hover{
  color:#71ffa7;
}

.contact-line{
  font-size:14px;
  margin-bottom:8px;
  opacity:.9;
}

.contact-line span{
  color:#71ffa7;
  margin-right:6px;
  font-size: 16px;
}

.contact-line a{
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.contact-line a:hover{
  color:#71ffa7;
}

.address-row{
  display:flex;
  gap:20px;
  margin-top:15px;
  align-items:flex-start;
}

.address h5{
  color:#71ffa7;
  font-size:14px;
  margin-bottom:5px;
}

.address p{
  font-size:13px;
  line-height:23px;
  margin:0;
  opacity:.85;
}

.divider{
  width:1px;
  height:80px;
  background:rgba(255,255,255,.3);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.2);
  text-align:center;
  padding:15px;
  font-size:14px;
  opacity:.8;
}

@media(max-width:900px){
  .footer-wrapper{
  grid-template-columns:1fr;
  gap:30px;
}

.address-row{
  flex-direction:column;
}

.divider{
  display:none;
}

.footer-brand p{
  max-width:100%;
}
}

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

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

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

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 40px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1.5; 
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  word-break: break-word;   
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 12px;
    line-height: 1.6;
    display: block;
    white-space: normal;  
  }

  .section-title h2 a {
    display: inline;
  }
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

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

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

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

  100% {
    transform: translateY(-10px);
  }
} */

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

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

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

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

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

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

.hero-banner {
  height: 85vh;
  object-fit: cover !important;
}

/* Mobile Adjustments for all banners*/
@media (max-width: 586px) {
  .hero-banner, .service-hero {
    height: 30vh !important;
  }

  .carousel-caption {
    bottom: 10%;
    text-align: center; 
  }

  .carousel-caption h1 {
    font-size: 24px !important;
  }

  .carousel-caption p {
    font-size: 12px !important;
  }
  
  .carousel-caption .col-md-6 {
    width: 100%;
  }

  .hero-btn {
    padding: 7px 25px !important;
    border-radius: 40px;
    background: linear-gradient(135deg,#3ae6a8,#12b97d);
    color: white;
    font-size: 8px !important;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
  }

  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      --bs-gutter-x: 2.5rem;
  }

  .header .logo img {
    height: 30px; 
    width: auto;   
    transition: none; 
  }
}

@media (min-width: 587px) and (max-width: 986px) {
.hero-banner, .service-hero {
    height: 40vh !important; 
  }

  .carousel-caption {
    bottom: 10%; 
    text-align: center; 
  }

  .carousel-caption h1 {
    font-size: 26px !important; 
  }

  .carousel-caption p {
    font-size: 14px !important;
  }
  
  .carousel-caption .col-md-6 {
    width: 100%;
  }

  .hero-btn {
    padding: 7px 25px !important;
    border-radius: 40px;
    background: linear-gradient(135deg,#3ae6a8,#12b97d);
    color: white;
    font-size: 10px !important;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 3.5rem;
}

.header .logo img {
  height: 40px; 
  width: auto;   
  transition: none; 
}
}

@media (min-width: 987px) and (max-width: 1200px) {
.hero-banner {
    height:75vh !important; 
  }
.service-hero {
  height: 60vh !important;
}

  .carousel-caption {
    bottom: 10%; 
    text-align: center; 
  }

  .carousel-caption h1 {
    font-size: 30px !important; 
  }

  .carousel-caption p {
    font-size: 16px !important;
  }
  
  .carousel-caption .col-md-6 {
    width: 100%;
  }

  .hero-btn {
    padding: 7px 25px !important;
    border-radius: 40px;
    background: linear-gradient(135deg,#3ae6a8,#12b97d);
    color: white;
    font-size: 12px !important;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 4.5rem;
}

.header .logo img {
  height: 50px; 
  width: auto;   
  transition: none; 
}
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg,#3ae6a8,#12b97d);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: .35s !important;
}

.hero-btn i {
  display: inline-block;
  transition: transform .35s ease;
}

.hero-btn:hover i {
  color: white;
  transform: translateX(8px);
}
.hero-btn:hover {
  color: white;
  box-shadow: 0 6px 14px rgba(0,0,0,.12),
    0 14px 28px rgba(18,185,125,.22) !important;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.carousel-caption {
  z-index: 2; /* Ensures text stays above the overlay */
}

.number-font {
  font-family:Arial, Helvetica, sans-serif;
}

/* FIX bootstrap caption behavior */
#heroCarousel .carousel-caption {
  position: absolute;
  left:25px;
  right: 0;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  padding: 0;
}

/* normal container flow */
#heroCarousel .carousel-caption.container {
  pointer-events: auto;
}

#heroCarousel h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

@media (min-width:1850px){
  #heroCarousel h1 {
   font-size: 60px;
  }
  #heroCarousel p {
  font-size: 25px !important;
}
}

#heroCarousel p {
  font-size: 17px;
  color: #f1f1f1;
  margin-bottom: 20px;
}



/* Start off-screen on RIGHT */
#heroCarousel .carousel-caption h1,
#heroCarousel .carousel-caption p,
#heroCarousel .carousel-caption a {
  opacity: 0;
  transform: translateX(700px);   /* was -80px */
  transition: all 0.9s ease;
}

/* When slide becomes active */
#heroCarousel .carousel-item.active h1,
#heroCarousel .carousel-item.active p,
#heroCarousel .carousel-item.active a {
  opacity: 1;
  transform: translateX(0);
}

/* stagger effect */
#heroCarousel .carousel-item.active h1 { transition-delay: 0.2s; }
#heroCarousel .carousel-item.active p  { transition-delay: 0.4s; }
#heroCarousel .carousel-item.active a  { transition-delay: 0.6s; }

.logo-marquee {
  background: transparent;
  overflow: hidden;
  padding: 25px 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08),
              0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 35s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .marquee-track {
  animation-play-state: paused;
  cursor: pointer;
}

.marquee-track img {
  height: 50px;
  margin: 0 40px;
  opacity: 0.8;
  flex-shrink: 0;
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scope to the hero carousel only */
#hero .carousel {
  overflow: hidden; /* keeps the controls neatly clipped inside */
}

/* Base styles for controls: round buttons, visible over images */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  position: absolute;
  z-index: 5;
  width: clamp(40px, 6vw, 54px);
  height: clamp(40px, 6vw, 54px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;

  /* Layout A: vertically centered near the edges */
  top: 50%;
  transform: translateY(-50%);
}

/* Nudge toward corners with a responsive inset */
#hero .carousel-control-prev { left: clamp(8px, 2vw, 6px); }
#hero .carousel-control-next { right: clamp(8px, 2vw, 6px); }

/* Make the chevrons a tad larger & crisper */
#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
  background-size: 100% 100%; /* ensure SVG scales cleanly */
}

/* Improve hover/focus affordance on larger screens */
@media (hover: hover) {
  #hero .carousel-control-prev:hover,
  #hero .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}

/* Keep indicators above the image and away from controls */
/* #hero .carousel-indicators {
  bottom: clamp(10px, 2.5vw, 24px);
  gap: 8px;
} */
/* #hero .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border-radius: 2px;
} */
 #hero .carousel-indicators {
  bottom: clamp(14px, 2.2vw, 28px);
  gap: 10px;                     /* uniform gap between dots */
  margin: 0;                     /* reset */
  padding: 0 12px;
}
#hero .carousel-indicators [data-bs-target] {
  width: 8px;                   /* circle size */
  height: 8px;
  border-radius: 50%;
  border: none;                  /* remove default outline */
  background-color: rgba(255,255,255,0.55);
  opacity: 0.6;                    /* Bootstrap sets .5 by default */
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
@media (hover:hover) {
  #hero .carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255,255,255,0.85);
    transform: scale(1.1);
  }
}
#hero .carousel-indicators [data-bs-target]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 200, 255, .35);
}
#hero .carousel-indicators .active {
  background-color: #00faff;                 /* pick your brand accent */
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(0,179,134, .35); /* subtle ring */
}
@media (max-width: 420px) {
  #hero .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px;
  }
  #hero .carousel-indicators { gap: 8px; }
}
/* Layout B for small screens: dock to bottom corners */
@media (max-width: 576px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    top: auto;
    bottom: clamp(12px, 3vw, 20px);
    transform: none; /* reset translateY */
    background: rgba(0, 0, 0, 0.4);
  }
  #hero .carousel-control-prev { left: clamp(10px, 3vw, 16px); }
  #hero .carousel-control-next { right: clamp(10px, 3vw, 16px); }
}

/* Optional: if your caption container overlaps the arrows on mid widths,
   add a little side padding on the caption area */
@media (min-width: 768px) {
  #hero .carousel-caption.container {
    /* padding-left: clamp(16px, 4vw, 48px); */
    padding-right: clamp(16px, 4vw, 48px);
  }
}

/* Product page hero Section */

.product-hero {
  min-height: 85vh;
  background: linear-gradient(
    120deg,
    #06142f,
    #0b2d66,
    #6087c1,
    #3b5d7c,
    #06142f
  );
  background-size: 450% 450%;
  animation: waveGradient 18s ease-in-out infinite;

  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* smoother continuous motion */
@keyframes waveGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 55%; }
  100% { background-position: 0% 50%; }
}

.features-item:not(:last-child){
  margin-bottom: 40px;
}

/* light wave overlay */
.product-hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12), transparent 45%);
  animation: waveLight 10s ease-in-out infinite;
  filter: blur(18px);
  will-change: transform;
  pointer-events: none;
}

@keyframes waveLight {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(-60px, -25px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}


/* CONTENT ANIMATIONS (optimized) */
.slide-left {
  animation: slideLeft .9s cubic-bezier(.22,.61,.36,1) both;
  will-change: transform, opacity;
}

.slide-right {
  animation: slideRight .9s cubic-bezier(.22,.61,.36,1) both;
  will-change: transform, opacity;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translate3d(-70px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translate3d(70px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.product-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background: white;
  transform: skewY(-4deg);
}

.hero-title {
  color: white;
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1.2;
  /* margin-bottom: 20px; */
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

.hero-actions .btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

.hero-image {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

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

/* /Product page hero */

/* Product page brochure */
.brochure-section {
  padding: 80px 0;
  background: #f8fafc;
}

.brochure-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.brochure-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 22px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.brochure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #4facfe);
  opacity: 0;
  transition: .35s;
}

.brochure-card:hover::after {
  opacity: .08;
}

.brochure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.pdf-icon {
  font-size: 36px;
  color: #dc3545;
  z-index: 1;
}

.brochure-info {
  flex: 1;
  z-index: 1;
}

.brochure-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.brochure-info span {
  font-size: .9rem;
  color: #666;
}

.download-btn {
  font-size: 22px;
  color: #0d6efd;
  z-index: 1;
  transition: transform .3s ease;
}

.brochure-card:hover .download-btn {
  transform: translateY(-3px);
}
/* /Product page brochure */

/* /Product page portfolio */
.soft-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all .45s ease;
}

/* stagger delay */
/* .soft-card:nth-child(1) { transition-delay: .1s; }
.soft-card:nth-child(2) { transition-delay: .25s; }
.soft-card:nth-child(3) { transition-delay: .4s; } */

/* stop floating until revealed */
.soft-card {
  animation-play-state: paused;
}

/* .soft-card.reveal {
  animation-play-state: running;
} */

.soft-section {
  position: relative;
  /* padding: 70px 8%; */
  padding: 55px 8% 70px 8%;
  background: #eef4fb;
  overflow: hidden;
}

/* Section header */
.section-head h2 {
  font-size: 40px;
  font-weight: 800;
}

.section-head p {
  color: #5c6f82;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Cards */
.soft-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 42px;
  position: relative;
  z-index: 2;
}

.soft-grid-three {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.soft-grid-two {
  display: grid;
  grid-template-columns: repeat(2 ,1fr);
  gap: 25px;
}

@media (min-width: 1500px) {
  .soft-grid-two {
    grid-template-columns: repeat(3, 1fr);
  }
}
.soft-card {
  background: linear-gradient(145deg,#f9fcff,#e3edf6);
  padding: 25px;
  border-radius: 28px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  transition: all .45s ease;
  /* animation: floatCard 6s ease-in-out infinite; */
}

.soft-card:nth-child(2){ animation-delay:1.5s; }
.soft-card:nth-child(3){ animation-delay:3s; }

.soft-card .icon {
  font-size: 3.5rem;
  color: #1acc8d;
}

.soft-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.soft-card ul {
  text-align: left;
  padding-left: 18px;
}

@media (max-width:1400px) {
  .soft-card h3 {
    font-size: 18px;
  }
}

@media (min-width: 1300px) {
  .soft-card h3 {
    font-size: 28px;
    /* margin-bottom: 6px; */
  }
}

.abbr {
  display: block;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 14px;
  font-size: .95rem;
  letter-spacing: .5px;
}

.soft-card p {
  color: #555;
  line-height: 1.6;
}

/* make anchor fill card */
.soft-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Hover glow */
/* .soft-card:hover {
  transform: translateY(-20px) scale(1.03); */
  /* box-shadow:
    25px 25px 60px rgba(0,0,0,.12),
    -25px -25px 60px rgba(255,255,255,1); */
/* } */

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

/* Mobile */
@media(max-width:900px){
  .soft-grid { grid-template-columns:1fr; }
  .section-head h2 { font-size:2.2rem; }
}


/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  white-space: nowrap;
  align-self: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(145deg,#ffffff,#e6eef6);
  color: #1acc8d;;
  font-weight: 600;
  font-size: 14px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  transition: all .35s ease;
}

/* Arrow */
.read-more-btn i {
  display: inline-block;
  transition: transform .35s ease;
}

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

.home-read-more {
    display: inline-block;
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 40px;
    background: linear-gradient(135deg,#3ae6a8,#12b97d);
    /* background: linear-gradient(135deg,#4facfe,#00c6ff); */
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

.home-read-more i {
  display: inline-block;
  transition: transform .35s ease;
}

.home-read-more:hover i {
  transform: translateX(6px);
}

.home-read-more:hover {
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 6px 14px rgba(0,0,0,.12),
    0 14px 28px rgba(18,185,125,.22);
}

/* remove default link underline */
.soft-card a {
  text-decoration: none;
}


/* Flexera watermark backgrounds */
.flexera-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/flexara-watermark.jpg") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

/* Flexera watermark backgrounds */
.sai-global-bg {
  position: absolute;
  width: 200px;
  height: 200px;
  background: url("/assets/img/watermark/sai-global-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.perpetuuiti-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/perpetuuiti-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.nitro-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/nitro-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.securin-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/securin-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.scm-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/scm-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.azul-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/azul-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.haloitsm-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/haloITSM-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.jdisc-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/JDisc-watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

.fss-bg {
  position: absolute;
  width: 260px;
  height: 260px;
  background: url("/assets/img/watermark/fss_watermark.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(1.2) brightness(1.1);
  z-index: 1;
  animation: floatBrand 14s ease-in-out infinite;
}

/* left placement */
.flex-left {
  top: 60px;
  left: 80px;
}

/* right placement */
.flex-right {
  bottom: 5px;
  right: 60px;
  /* bottom: 80px;
  right: 90px; */
  animation-delay: 4s;
}

/* soft movement */
@keyframes floatBrand {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(50px,35px) rotate(3deg); }
}

/* layout */
.value-inner {
  position: relative;
  z-index: 200;
  display: grid;
  /* grid-template-columns: 1.1fr .9fr; */
  grid-template-columns: 8.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.value-copy h2 {
  font-size: 3rem;
  font-weight: 800;
}

.value-copy p {
  margin-top: 18px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #4a6176;
}

/* button */
.cta-modern {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg,#3ae6a8,#12b97d);
  /* background: linear-gradient(135deg,#4facfe,#00c6ff); */
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: .35s;
}

.cta-modern:hover {
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 6px 14px rgba(0,0,0,.12),
    0 14px 28px rgba(18,185,125,.22);
  /* box-shadow: 0 12px 30px rgba(79,172,254,.45); */
}

/* modern animated lines */
.value-motion {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  height: 220px;
}

@media (max-width:501px){
  .value-motion {
    display: none !important;
  }
  .value-inner {
    grid-template-columns: 1fr !important
  }
}

.value-motion span {
  width: 26px;
  border-radius: 16px;
  background: linear-gradient(135deg,#3ae6a8,#12b97d);
  /* background: linear-gradient(to top,#4facfe,#00c6ff); */
  animation: pulse 2.8s ease-in-out infinite;
}

.value-motion span:nth-child(1){height:80px}
.value-motion span:nth-child(2){height:160px;animation-delay:.3s}
.value-motion span:nth-child(3){height:220px;animation-delay:.6s}

@keyframes pulse {
  0%,100%{transform:scaleY(1)}
  50%{transform:scaleY(.55)}
}

/* scroll reveal */
/* .reveal {
  opacity:0;
  transform: translateY(80px);
  transition: 1s ease;
}
.reveal.active {
  opacity:1;
  transform: translateY(0);
} */

/* mobile */
@media(max-width:900px){
  .value-inner {grid-template-columns: 1fr .4fr;; gap:20px;}
  .value-motion {justify-content:center;}
  .value-copy h2 {font-size:2.2rem;}
}

/* ICE Value Add Section */
.wave-section {
  position: relative;
  background: #ffffff;
  /* padding: 140px 8%; */
  padding: 40px 6%;
  overflow: hidden;
}

/* wave background image layer */
.wave-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/bg-khow-us.png") center center / cover no-repeat;
  opacity: 1; /* adjust if you want softer */
  z-index: 0;
}

/* keep content above wave */
.wave-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* optional soft fade at edges (premium look) */
.wave-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    transparent 20%,
    transparent 80%,
    #ffffff 100%
  );
  z-index: 0;
}

/* mobile tweak */
@media (max-width: 768px) {
  .wave-section {
    padding: 100px 6%;
  }
}
/* /ICE Value Add Section */

/* Portfolio Section for only icon and header */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:36px;
}

.portfolio-grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

@media(max-width:1100px){
  .portfolio-grid{grid-template-columns:repeat(2,1fr);}
  .portfolio-grid3{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
  .portfolio-grid{grid-template-columns:1fr;}
  .portfolio-grid3{grid-template-columns:1fr;}
}

.portfolio-grid .soft-card{
  position:relative;
  padding:46px 30px;
  border-radius:26px;
  background:linear-gradient(145deg,#f9fcff,#e6eff7);
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  text-align:center;
  /* animation:softFloat 7s ease-in-out infinite; */
  /* will-change:transform;  */
}

.portfolio-grid .soft-card:nth-child(even){
  animation-delay:2.5s;
}

.portfolio-grid .soft-card .icon{
  width:78px;
  height:78px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  font-size:34px;
  color:#fff;
  background:linear-gradient(135deg,#3ae6a8,#12b97d);
  box-shadow:
    0 6px 14px rgba(0,0,0,.12),
    0 14px 28px rgba(18,185,125,.22);
}

.portfolio-grid .soft-card h3{
  font-size:1.1rem;
  font-weight:600;
  line-height:1.45;
  color:#040677;
}

.portfolio-grid .soft-card::after{
  content:"";
  display:block;
  width:40%;
  height:4px;
  margin:18px auto 0;
  border-radius:4px;
  opacity:.85;
  background:linear-gradient(90deg,#3ae6a8,#12b97d);
}

.portfolio-grid3 .soft-card{
  position:relative;
  padding:46px 30px;
  border-radius:26px;
  background:linear-gradient(145deg,#f9fcff,#e6eff7);
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  text-align:center;
  /* animation:softFloat 7s ease-in-out infinite; */
  /* will-change:transform;  */
}

.portfolio-grid3 .soft-card:nth-child(even){
  animation-delay:2.5s;
}

.portfolio-grid3 .soft-card .icon{
  width:78px;
  height:78px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  font-size:34px;
  color:#fff;
  background:linear-gradient(135deg,#3ae6a8,#12b97d);
  box-shadow:
    0 6px 14px rgba(0,0,0,.12),
    0 14px 28px rgba(18,185,125,.22);
}

.portfolio-grid3 .soft-card h3{
  font-size:1.1rem;
  font-weight:600;
  line-height:1.45;
  color:#040677;
}

.portfolio-grid3 .soft-card::after{
  content:"";
  display:block;
  width:40%;
  height:4px;
  margin:18px auto 0;
  border-radius:4px;
  opacity:.85;
  background:linear-gradient(90deg,#3ae6a8,#12b97d);
}

/* @keyframes softFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
} */

/* /Portfolio Section for only icon and header */


.sticky-section{
  /* padding:120px 8%; */
  background:#fff;
}

/* .sticky-wrap{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:80px;
  align-items:flex-start;
} */

/* LEFT SIDE STICKY IMAGE */
/* .sticky-media{
  position:sticky;
  top:120px;
} */

.sticky-media {
  position: sticky;
  top: 180px;
  align-self: flex-start;
}


.sticky-media img{
  width:100%;
  border-radius:10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  /* box-shadow:0 30px 70px rgba(0,0,0,.15); */
}

/* RIGHT SIDE CONTENT */
.sticky-content h6{
  letter-spacing:2px;
  font-weight:600;
  color:#2fdc9a;
  margin-bottom:12px;
}

.sticky-content h2{
  font-size:2.8rem;
  margin-bottom:22px;
  color:#1c2340;
}

.sticky-content p{
  color:#5b677a;
  line-height:1.8;
  margin-bottom:36px;
}

.sticky-content h4{
  margin:28px 0 12px;
  color:#1c2340;
}

.sticky-content ul{
  padding-left:18px;
  margin-bottom:24px;
}

.sticky-content li{
  margin-bottom:10px;
  color:#5b677a;
}

/* RESPONSIVE */
@media(max-width:900px){
  .sticky-wrap{
    grid-template-columns:1fr;
  }

  .sticky-media{
    position:relative;
    top:0;
  }
}




/* Update this section */
.service-hero {
  width: 100%;
  height: 70vh;           /* Full viewport height */
  position: relative;      /* CONTAINED within section */
  padding: 0;
  margin-bottom: 0;        /* No gap to next section */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full background image */
.service-hero .hero-bg {
  position: absolute;      /* Changed back to absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Perfect full cover */
  z-index: 1;
}

/* Subtle dark overlay for text readability */
.service-hero::before {
  content: none;
}

/* Content above everything */
.service-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}
.service-hero .row {
  justify-content: flex-start !important; 
  align-items: center;
  min-height: 100vh;
}
/*--*/

.service-hero [class*="col-"] {
  text-align: left !important;             /* Force left text */
}

/*--*/
.service-hero .hero-title {
  /* font-size: clamp(36px, 6vw, 64px); */
  font-weight: 700;
  line-height: 1.2;
  color: #fff !important;
  text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
  /* margin-bottom: 20px; */
  text-align: center;
}

.service-hero .hero-subtitle {
  color: rgba(255,255,255,0.95) !important;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}
/* .service-hero .hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

.service-hero .wave1 use { fill: rgba(255,255,255,0.15); }
.service-hero .wave2 use { fill: rgba(255,255,255,0.08); }
.service-hero .wave3 use { fill: rgba(255,255,255,0.12); } */
/* Mobile */

.service-hero .hero-subtitle {
  color: rgba(255,255,255,0.95) !important;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

@media (max-width: 1404px) {
    .service-hero .hero-bg {
        object-fit: fill;
    }
}
@media (min-width: 1405px) {
  .service-hero .col-lg-8 {
    max-width: 60%;                        /* Left 60% */
    padding-right: 5rem;                   /* Right spacing */
  }
  /* .service-hero {
    height: 40vh;
  } */
  .service-hero .container {
    padding: 0 15px;
    /* height: 40vh; */
  }
  .service-hero .row {
    justify-content: flex-start !important;
    align-items: center;
    min-height: 40vh;
}
.service-hero .hero-bg {
    object-fit: cover;
    /* height: 40vh; */
}
}
@media (min-width: 992px) {
  .service-hero .col-lg-8 {
    max-width: 60%;                        /* Left 60% */
    padding-right: 5rem;                   /* Right spacing */
  }

  .service-hero .container {
    padding: 0 15px;
    /* height: 40vh; */
  }
  .service-hero .row {
    justify-content: flex-start !important;
    align-items: center;
    min-height: 40vh;
}
.service-hero .hero-bg {
    object-fit: cover;
    /* height: 40vh; */
}
}
/* Centered responsive layout */
.service-hero .row {
  justify-content: center;
}


/* Waves - Static (no animation) */
.service-hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.service-hero .wave1 use {
  fill: rgba(255, 255, 255, 0.1);
}
.service-hero .wave2 use {
  fill: rgba(255, 255, 255, 0.05);
}
.service-hero .wave3 use {
  fill: rgba(255, 255, 255, 0.1);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .service-hero {
    padding: 80px 0 60px 0;
    /* min-height: 35vh; */
  }
  
  .service-hero .hero-title {
    text-align: center;
  }

  .section-title div {
    font-size: 22px;
  }

  .hero-title {
    font-size: 36px !important;
  }
}
/* .service-hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; 
  mix-blend-mode: lighten; 
  opacity: 0.5; 
}

.service-hero:before {
  content: "";
  background: #0a192f; 
  position: absolute;
  inset: 0;
  z-index: 0; 
}

.service-hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.service-hero .container {
  position: relative;
  z-index: 3;
}



.service-hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}



.service-hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.service-hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.service-hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.service-hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.service-hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.service-hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

@media (max-width: 640px) {
  .service-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .service-hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .service-hero .btn-get-started,
  .service-hero .btn-watch-video {
    font-size: 13px;
  }
}

.service-hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.service-hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.service-hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.service-hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

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

  100% {
    transform: translateY(-10px);
  }
}



*/
.partners-creative {
  padding: 40px 6%;
  background: #ffffff;
} 
/* HEADER */
.partners-header {
  max-width: 760px;
  margin-bottom: 90px;
}

.partners-header .eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #16a34a;
  font-weight: 600;
}

.partners-header h2 {
  font-size: 44px;
  margin: 10px 0;
}

.partners-header p {
  color: #6b7280;
  font-size: 17px;
}

/* MAIN LAYOUT */
.partners-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: stretch;
}

/* ELITE PANEL */
.elite-panel {
  position: relative;
  padding: 60px 50px;
  border-left: 6px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #16a34a, #22c55e) border-box;
  border-left-width: 6px;
  border-radius: 12px;
}

.elite-tag {
  top: -14px;
  left: 30px;

  /* position: absolute;
  top: -14px;
  left: 30px;
    color: green !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1); */
}

.elite-label {
  position: relative;
  padding: 6px 18px;
  border-radius: 6px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  overflow: hidden;

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.7),
    0 6px 14px rgba(22,163,74,.25);
}

/* WHITE LIGHT SWEEP */
.elite-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 55%,
    transparent 70%
  );

  animation: eliteWhiteSweep 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes eliteWhiteSweep {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: .4; }
  50%  { opacity: .8; }
  85%  { opacity: .3; }
  100% { left: 120%; opacity: 0; }
}

.elite-panel img {
  max-width: 220px;
  margin-bottom: 30px;
}

.elite-panel h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.elite-panel p {
  color: #4b5563;
  line-height: 1.6;
}

/* PREMIUM PANEL */
/* .premium-panel {
  display: flex;
  flex-direction: column;
} */

.bubble-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  justify-items: center;
  margin-top: 40px;
}

.bubble {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow:
    -12px 12px 25px rgba(0,0,0,0.12),
    inset 0 2px 6px rgba(255,255,255,0.6);

  animation: floatUp 6s ease-in-out infinite;
}

.bubble:nth-child(even) {
  animation: floatDown 6s ease-in-out infinite;
}

.bubble img {
  max-width: 70%;
  max-height: 55px;
  object-fit: contain;
  z-index: 2;
}

.bubble::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 200%;
  height: 200%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.1),
    transparent
  );

  transform: rotate(25deg);
  transition: 0.6s;
}

.bubble:hover::after {
  left: 100%;
}

.bubble:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow:
    -12px 12px 30px rgba(0,0,0,0.18),
    0 0 12px rgba(34,197,94,0.4),
    0 0 22px rgba(34,197,94,0.25);
}

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

@keyframes floatDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 992px) {
  .bubble-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .bubble-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: -40px; 
  }

  .bubble {
    width: 160px;
    height: 160px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .partners-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .elite-panel {
    padding: 50px 36px;
  }

  .premium-panel {
    margin-left: 20px;
  }
}

.partner-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #14532d;
}


.premium-tag {
  overflow: visible;  
  position: absolute;
  /* background: linear-gradient(180deg, #16a34a, #22c55e) border-box; */
}


.premium-panel .partner-tag {
  margin-top: -12px;
}


.premium-label {
  position: relative;
  padding: 6px 18px;
  border-radius: 6px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  overflow: hidden;

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.7),
    0 6px 14px rgba(22,163,74,.25);
}


.premium-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100%;
    background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 55%,
    transparent 70%
  );
  animation: eliteWhiteSweep 3.6s ease-in-out infinite;
}

@keyframes premiumGoldSweep {
  0%   { left: -70%; }
  70%  { left: 120%; }
  100% { left: 120%; }
}


/* STAR ICON */
.elite-star {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('/assets/img/icon/star.png') no-repeat center;
  background-size: contain;
  animation: starRotate 5s linear infinite;
  filter:
    drop-shadow(0 0 4px rgba(0,0,0,0.1))
    drop-shadow(0 0 10px rgba(0,0,0,0.1));
  z-index: 3;
}

@keyframes starRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}


/* HAND ICON */
.hand-shake {
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url('/assets/img/icon/hand-shake.png') no-repeat center;
  background-size: contain;
  filter:
    drop-shadow(0 0 4px rgba(0,0,0,0.1))
    drop-shadow(0 0 10px rgba(0,0,0,0.1));
  z-index: 3;
}

/* ROTATION */
@keyframes handRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}


/* PREMIUM SWEEP ANIMATION */
.premium-animate {
  position: relative;
  /* overflow: hidden; */
}

.premium-animate::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255,255,255,0.35) 50%,
    transparent 75%
  );
  animation: premiumSweepSoft 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* Slightly slower & softer than Elite */
@keyframes premiumSweepSoft {
  0%   { left: -60%; }
  70%  { left: 120%; }
  100% { left: 120%; }
}

/* product-service dropdown selector */
.subject-dropdown {
  position: relative;
}

.subject-input {
  height: 48px;
  border: 1px solid #dee2e6;
  /* border-radius: 6px; */
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
}

.subject-input .placeholder {
  color: #444444 !important;
  font-size: 14px;
}

.subject-input i {
  font-size: 14px;
}

.subject-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 14px;
  display: none;
  z-index: 10;
}

.subject-dropdown.open .subject-menu {
  display: block;
}

.group {
  margin-bottom: 14px;
}

.group:last-child {
  margin-bottom: 0;
}

.group-title {
  font-size: 16px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 8px;
}

.subject-menu label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
}

.subject-menu input[type="checkbox"] {
  accent-color: #16a34a;
}


/* limit dropdown height + enable scroll */
.subject-menu {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* modern scrollbar (Chrome / Edge) */
.subject-menu::-webkit-scrollbar {
  width: 6px;
}

.subject-menu::-webkit-scrollbar-thumb {
  background: #16a34a;
  border-radius: 6px;
}

.subject-menu::-webkit-scrollbar-track {
  background: #f1f5f9;
}

/* input text handling */
.subject-input .placeholder {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  max-width: calc(100% - 20px);
  background-color: transparent !important;
  /* opacity: 1; */
}

/* green border when dropdown is open */
.subject-dropdown.open .subject-input {
  border-color: #1acc8d;
  /* box-shadow: 0 0 0 2px rgba(22,163,74,0.15); */
}

/* distributor Section */

.distributor-section {
  padding: 60px 0;
  background: linear-gradient(180deg,#f8fafc,#ffffff);
  text-align: center;
}

.distributor-section-title {
  font-size: 34px;
  font-weight: 700;
  /* font-size: 34px;
  font-weight: 700; */
  /* margin-top: 200px; */
  text-align: start;
  /* margin-bottom: 80px; */
  color: #040677;
}

.orbit-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
  /* animation: rotateOrbit 30s linear infinite; */
}


.orbit-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateOrbit 30s linear infinite;
}


@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Outer rotating ring */
.orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(22,163,74,0.25);
}

.orbit-item {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  margin: -70px;
}

/* Position 4 items around circle */
/* .item1 { transform: rotate(0deg) translate(220px) rotate(0deg); }
.item2 { transform: rotate(90deg) translate(220px) rotate(-90deg); }
.item3 { transform: rotate(180deg) translate(220px) rotate(-180deg); }
.item4 { transform: rotate(270deg) translate(220px) rotate(-270deg); } */
/* Position 8 items around circle */
/* .item1 { transform: rotate(0deg) translate(220px) rotate(0deg); }
.item2 { transform: rotate(45deg) translate(220px) rotate(-45deg); }
.item3 { transform: rotate(90deg) translate(220px) rotate(-90deg); }
.item4 { transform: rotate(135deg) translate(220px) rotate(-135deg); }
.item5 { transform: rotate(180deg) translate(220px) rotate(-180deg); }
.item6 { transform: rotate(225deg) translate(220px) rotate(-225deg); }
.item7 { transform: rotate(270deg) translate(220px) rotate(-270deg); }
.item8 { transform: rotate(315deg) translate(220px) rotate(-315deg); } */
/* Position 6 items around circle */
.item1 { transform: rotate(0deg) translate(220px) rotate(0deg); }
.item2 { transform: rotate(60deg) translate(220px) rotate(-60deg); }
.item3 { transform: rotate(120deg) translate(220px) rotate(-120deg); }
.item4 { transform: rotate(180deg) translate(220px) rotate(-180deg); }
.item5 { transform: rotate(240deg) translate(220px) rotate(-240deg); }
.item6 { transform: rotate(300deg) translate(220px) rotate(-300deg); }

.orbit-logo {
  width: 100%;
  height: 100%;
  background: #ffffff;
  /* border-radius: 22px; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.08),
    0 6px 14px rgba(22,163,74,0.25);

  animation: counterRotate 30s linear infinite;
}

.orbit-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.orbit-center {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 50%;
  /* border-radius: 32px; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* box-shadow:
  rgba(22, 163, 74, 0.12) 0px 2px 4px 0px,
  rgba(22, 163, 74, 0.32) 0px 2px 16px 0px; */
}

.orbit-center h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #14532d;
}

.orbit-center p {
  font-size: 14px;
  color: #6b7280;
}

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@media (max-width: 768px) {

  .orbit-wrapper {
    width: 350px;
    height: 350px;
  }

  .orbit-item {
    width: 100px;
    height: 100px;
    margin: -50px;
  }

  .item1 { transform: rotate(0deg) translate(150px) rotate(0deg); }
  .item2 { transform: rotate(60deg) translate(150px) rotate(-60deg); }
  .item3 { transform: rotate(120deg) translate(150px) rotate(-120deg); }
  .item4 { transform: rotate(180deg) translate(150px) rotate(-180deg); }
  .item5 { transform: rotate(240deg) translate(150px) rotate(-240deg); }
  .item6 { transform: rotate(300deg) translate(150px) rotate(-300deg); }

  .orbit-center {
    width: 180px;
    height: 180px;
  }
}

.distributor-description {
  margin-top: 50px;
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.highlight-green {
  color: #1acc8d;
  font-weight: 700;
}


.about-company {
  padding: 40px 6%;
  background: linear-gradient(180deg,#ffffff,#f8fafc);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */

.about-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(43, 22, 163, 0.1);
  color: var(--heading-color);
  /* color: #16a34a; */
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--heading-color);
  /* color: #14532d; */
}

.about-content p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* RIGHT HIGHLIGHTS */

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.highlight-card {
  padding: 35px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
  rgba(4, 6, 119, 0.12) 0px 2px 4px 0px,
  rgba(4, 6, 119, 0.32) 0px 2px 16px 0px;


  /* box-shadow: 
    0 20px 40px rgba(0,0,0,0.06),
    0 6px 14px rgba(22,163,74,0.2); */
  transition: 0.4s ease;
  border-right: 4px solid var(--heading-color);;
}

@media (max-width:553px){
  .highlight-card {
      padding: 25px !important;
  }
}

/* .highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(22,163,74,0.25);
} */

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--heading-color);
  /* color: #14532d; */
}

.highlight-card p {
  color: #6b7280;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* SECTION */
.leaders-section {
  padding: 110px 6%;
  background: linear-gradient(180deg,#f8fafc,#eef2f7);
  text-align: center;
}

.leaders-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #111;
}

/* GRID */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.leader-profile {
  position: relative;
  height: 440px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
  transition: transform .4s ease;
}

.leader-profile:hover {
  transform: translateY(-12px);
}

/* IMAGE */
.leader-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SPOTLIGHT EFFECT */
.leader-profile::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 70% 30%,
    rgba(22,163,74,.35),
    transparent 55%
  );

  opacity: 0;
  transition: opacity .5s ease;
}

.leader-profile:hover::before {
  opacity: 1;
}

/* INFO PANEL */
.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 30px;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);

  transform: translateY(55%);
  transition: transform .45s ease;
}

/* HOVER REVEAL */
.leader-profile:hover .leader-info {
  transform: translateY(0);
}

/* TEXT */
.leader-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.leader-info span {
  color: #16a34a;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.leader-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;

  opacity: 0;
  transition: opacity .4s ease .15s;
}

.leader-profile:hover .leader-info p {
  opacity: 1;
}


/* ===== SECTION ===== */

.ceo-spotlight {
  padding: 120px 6%;
  background:
    radial-gradient(circle at 20% 20%, #16a34a22, transparent 40%),
    linear-gradient(180deg,#0f172a,#020617);
  color: white;
  font-family: "Segoe UI", sans-serif;
}

/* ===== CONTAINER ===== */

.ceo-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* ===== PHOTO ===== */

.ceo-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 40px 100px rgba(0,0,0,.7);
  transition: transform .4s ease;
}

/* .ceo-photo:hover {
  transform: translateY(-12px) scale(1.02);
} */

.ceo-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* GLOW BEHIND PHOTO */

.ceo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, #16a34a55, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

/* ===== CONTENT ===== */

.ceo-label {
  display: inline-block;
  background: #16a34a;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 0 8px #ffff;
}

.ceo-content h2 {
  font-size: 46px;
  margin: 0 0 6px;
  font-weight: 800;
}

.ceo-content h4 {
  font-size: 22px;
  color: #22c55e;
  margin-bottom: 24px;
}

.ceo-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 36px;
}

/* ===== STATS ===== */

.ceo-highlights {
  display: flex;
  gap: 40px;
}

.stat strong {
  font-size: 30px;
  display: block;
  color: #22c55e;
}

.stat span {
  font-size: 14px;
  color: #94a3b8;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

  .ceo-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

.ceo-photo img {
  height: auto;
  object-position: top;
}

  .ceo-highlights {
    justify-content: center;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
.ceo-photo img {
  height: 650px !important;
  object-position: top;
}

}

/* ===== SECTION BACKGROUND ===== */

.exec-section {
  background:
    radial-gradient(circle at 20% 20%, #16a34a22, transparent 40%),
    linear-gradient(180deg,#0f172a,#020617);
  color: white;
  overflow: hidden;
}

/* allow arrows to go outside */
#leaderCarousel{
  position: relative;
  overflow: visible !important;
}

/* arrows style */
#leaderCarousel .carousel-control-prev,
#leaderCarousel .carousel-control-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background:#16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* arrows style */
#leaderCarousel .carousel-control-next:hover{
  background:#2dcd67;
}
/* arrows style */
#leaderCarousel .carousel-control-prev:hover{
  background:#2dcd67;
}

/* move outside */
#leaderCarousel .carousel-control-prev{
  left: -80px;
}

#leaderCarousel .carousel-control-next{
  right: -80px;
}

@media (max-width:768px){

  #leaderCarousel .carousel-control-prev{
    left: 10px;
  }

  #leaderCarousel .carousel-control-next{
    right: 10px;
  }

}


#leaderCarousel {
  position: relative;
  overflow: visible !important;
  min-height: 550px; 
}

#leaderCarousel .carousel-control-prev,
#leaderCarousel .carousel-control-next {
  position: absolute;
  top: 250px; 
  transform: none; 
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #16a34a;
  z-index: 10;
}

@media (max-width: 468px) {
  #leaderCarousel {
    min-height: 800px;
  }

  #leaderCarousel .carousel-control-prev,
  #leaderCarousel .carousel-control-next {
    top: 540px; 
    width: 45px;
    height: 45px;
  }

  #leaderCarousel .carousel-control-prev {
    left: 5px;
  }

  #leaderCarousel .carousel-control-next {
    right: 5px;
  }
}

/* TITLE */

.exec-title {
  font-size: 3rem;
  font-weight: 800;
}

/* ===== PHOTO ===== */

.exec-photo-wrap {
  position: relative;
  display: inline-block;
}

.exec-photo {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  transition: transform .5s ease;
}

.exec-photo-wrap:hover .exec-photo {
  transform: scale(1.04);
}

/* ROLE BADGE */

.exec-role-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(135deg,#16a34a,#22c55e);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(22,163,74,.5);
}

/* ===== GLASS CONTENT CARD ===== */

.exec-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 45px;
  box-shadow: 0 25px 80px rgba(0,0,0,.6);
  transition: transform .4s ease;
}

.exec-card:hover {
  transform: translateY(-6px);
}

.exec-card h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.exec-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #e2e8f0;
}

/* ===== CAROUSEL BUTTONS ===== */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ===== MOBILE ===== */

@media (max-width: 992px) {

  .exec-card {
    text-align: center;
    padding: 30px;
  }

  .exec-role-badge {
    bottom: -12px;
  }

}

/* SECTION */

.values-showcase {
  background: linear-gradient(180deg,#f8fafc,#eef2f7);
}

.values-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}


.values-visual {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

.values-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.values-visual:hover img {
  transform: scale(1.05);
}


.value-item {
  padding: 22px 20px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: white;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

@media (max-width: 1400px) {
  .value-item {
    padding: 12px 16px;
  }
}

.value-item h4 {
  margin: 0;
  font-weight: 700;
}

.value-item p {
  margin: 6px 0 0;
  color: #555;
  font-size: 15px;
}


.value-item:hover,
.value-item.active {
  transform: translateX(8px);
  background: linear-gradient(135deg,#12b97d, #3ae6a8);
  /* background: linear-gradient(135deg,#16a34a,#22c55e); */
  color: white;
}

.value-item:hover p,
.value-item.active p {
  color: rgba(255,255,255,.9);
}
/* Logo Slider start*/
:root {
  --visible: 5;      /* Show exactly 5 logos */
  --gap: 40px;       /* Space between logos */
}

/* Slider container */
.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05), 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
}

/* Mask */
.logo-viewport {
  overflow: hidden;
}

/* Track that moves */
.logo-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform 0.4s linear;
}

/* Each logo slot = 1/5 width */
.logo-item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--visible) - 1))) / var(--visible));
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

/* Logo image */
.logo-item img {
  max-width: 120px;
  max-height: 55px;
  object-fit: contain;
  opacity: 0.9;
}

/* Arrows — simple black arrows */
.logo-prev,
.logo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #000;
  font-size: 32px;
  cursor: pointer;
  padding: 0 12px;
  z-index: 10;
}
.logo-prev { left: 6px; }
.logo-next { right: 6px; }
.logo-prev:hover,
.logo-next:hover { color: #333; }

/* Optional pause cursor hint */
.logo-slider:hover .logo-track { cursor: pause; }
/* Logo Slider End*/

.office-wrapper{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  /* perspective:600px; */
  align-items: stretch;
  justify-content: center;
}


/* ================= LOGO SLIDER (ONE BY ONE MOBILE) ================= */

.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 14px 0;
  position: relative;

  --visible: 5;
  --gap: 30px;
}

/* viewport */
.logo-viewport {
  overflow: hidden;
  padding: 0 40px; /* space for arrows */
}

/* track */
.logo-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.4s ease;
}

/* item */
.logo-item {
  flex: 0 0 calc((100% - (var(--gap) * (var(--visible) - 1))) / var(--visible));
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

/* image */
.logo-item img {
  max-width: 120px;
  max-height: 55px;
  object-fit: contain;
}

/* arrows */
.logo-prev,
.logo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  color: #000;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo-prev { left: 5px; }
.logo-next { right: 5px; }

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .logo-slider {
    --visible: 1;   /* 🔥 ONLY ONE LOGO */
    --gap: 0px;
  }

  .logo-viewport {
    padding: 0 50px; /* space for arrows */
  }

  .logo-item {
    height: 80px;
  }

  .logo-item img {
    max-width: 120px;
    max-height: 60px;
  }
}

.modern-office-card{
  position:relative;
  width:320px;
  padding:30px;
  border-radius:20px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,0.2);
  /* box-shadow:0 20px 40px rgba(0,0,0,0.25); */
  transition:all 0.4s ease;
  overflow:hidden;
  border: none;
  /* animation:rotateCard 6s ease-in-out infinite; */
}

.modern-office-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.35);
}

.modern-office-card h3{
  font-size:18px;
  margin-bottom:8px;
  font-weight:600;
  padding-top: 7px;
  font-family: var(--default-font);
}

.modern-office-card h4{
  font-size:15px;
  margin-bottom:15px;
  /* font-weight: 600; */
  font-family: var(--default-font);
  color: #12a772;
  /* opacity:.8; */
}

.modern-office-card p{
  font-size:14px;
  margin:4px 0;
  opacity:.75;
}

.office-phone{
  display:inline-block;
  margin-top:15px;
  font-weight:600;
  font-size:14px;
}

/* subtle animated border glow */
.modern-office-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:1px;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  animation:borderMove 4s linear infinite;
}

@keyframes borderMove{
  0%{ background-position:-200px;}
  100%{ background-position:200px;}
}

.card__tag{
  position: absolute;
  top: 7px;
  right: -5px;
  background: linear-gradient(135deg,#4facfe,#00c6ff);
  color: white;
  padding: 5px 15px 5px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
  filter: drop-shadow(-2px 2px 2px rgba(0,0,0,0.2));

  overflow: hidden; /* IMPORTANT */
}

.card__tag::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
    background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0.55) 55%,
    transparent 70%
  );
  transform:skewX(-25deg);
  animation: shineMove 2.6s ease-in-out 1 forwards 1s;
  /* animation: shineMove 3.6s ease-in-out infinite; */
}

@keyframes shineMove{
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: .4; }
  50%  { opacity: .8; }
  85%  { opacity: .3; }
  100% { left: 120%; opacity: 0; }
}


/* Add the premium rotate + shadow effect */
.modern-office-card {
  transform-style: preserve-3d;
  animation: rotateOfficeCard 6s ease-in-out infinite;
}

@keyframes rotateOfficeCard {

  from,
  to {
    animation-timing-function: ease-in;

    box-shadow:
      0 0 0 hsl(0,0%,80%),
      0.1rem 0 0 hsl(0,0%,100%),
      -0.2rem 0 0.75rem 0 rgba(0,0,0,0.3);

    transform: rotateY(-12deg);
  }

  25%,
  75% {
    animation-timing-function: ease-out;

    box-shadow:
      0 0 0 hsl(0,0%,80%),
      0 0 0 hsl(0,0%,100%),
      -0.25rem -0.05rem 1rem 0.15rem rgba(0,0,0,0.3);

    transform: rotateY(0deg);
  }

  50% {
    animation-timing-function: ease-in;

    box-shadow:
      -0.1rem 0 0 hsl(0,0%,80%),
      0 0 0 hsl(0,0%,100%),
      -0.3rem -0.1rem 1.5rem 0.3rem rgba(0,0,0,0.3);

    transform: rotateY(12deg);
  }
}

.map-section{
  padding:70px 20px;
  background:#f7f9fc;
}

.map-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  align-items:center;
}

.map-info{
  flex:1 1 350px;
}

.map-info h2{
  font-size:28px;
  margin-bottom:15px;
  color:#0f172a;
}

.map-info p{
  font-size:16px;
  line-height:1.7;
  color:#475569;
}

.map-frame{
  flex:1 1 500px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.map-frame iframe{
  width:100%;
  height:420px;
  border:0;
}

/* google map */
  .map-wrapper {
    width: 100%;
    height: 430px; /* Reduced height to hide the bottom too if needed */
    overflow: hidden; /* This hides everything outside the box */
    border: 1px solid #ccc;
  }

  /* 2. Move the iframe up to push the header out of the window */
  .map-wrapper iframe {
    margin-top: -59px; /* Adjust this number until the header disappears */
    border: none;
  }

  .map-wrapper {
  position: relative;
}

.map-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none; /* Allows clicks to pass through to the link */
}

/* .map-wrapper iframe {
  pointer-events: none;
} */

    /* .map-wrapper iframe {
  pointer-events: none;
}

  .map-wrapper.active iframe {
  pointer-events: auto;
}  */
  @media (max-width: 600px) {
  .map-wrapper iframe {
    transform: scale(0.8); /* Shrinks the content to 80% size */
    transform-origin: 0 0;
    width: 125%; /* Increase width to compensate for the scale shrinking */
    height: 125%;
  }
}
#map { height: 450px; }


:root {
  --scm-blue: #1acc8d;
  --scm-accent: #3b82f6;
  --glass-white: rgba(255, 255, 255, 0.7);
}

.super-cool-contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fbff;
  overflow: hidden;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

/* Floating Spheres */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}
.sphere-1 { width: 400px; height: 400px; background: rgba(30, 86, 160, 0.1); top: -100px; left: -100px; }
.sphere-2 { width: 300px; height: 300px; background: rgba(59, 130, 246, 0.15); bottom: -50px; right: -50px; }

/* Glass Wrapper */
.glass-wrapper {
  position: relative;
  z-index: 5;
  max-width: 900px;
  width: 100%;
  background: var(--glass-white);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 60px;
  box-shadow: 0 40px 100px rgba(30, 86, 160, 0.08);
}

.contact-header { text-align: center; margin-bottom: 40px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0px rgba(34, 197, 94, 0); } }

.gradient-text {
  background: linear-gradient(90deg, var(--scm-blue), var(--scm-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pill Inputs */
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pill-input { position: relative; margin-bottom: 20px; }

.pill-input input, .pill-input textarea {
  width: 100%;
  padding: 20px 25px;
  background: white;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.02); */
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.pill-input label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  transition: 0.3s;
}

.pill-input input:focus ~ label, .pill-input input:not(:placeholder-shown) ~ label {
  top: 0;
  left: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--scm-blue);
  background: white;
  padding: 2px 10px;
  border-radius: 10px;
}

.pill-input input:focus { border-color: var(--scm-blue); box-shadow: 0 15px 30px rgba(30, 86, 160, 0.1); }

.textarea-pill { grid-column: span 2; }
.textarea-pill label { top: 25px; transform: none; }
textarea { min-height: 120px; }

/* Magnetic Button */
.magnetic-btn {
  width: 50%;
  margin-top: 20px;
  padding: 20px;
  background: var(--scm-blue);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-content { display: flex; align-items: center; justify-content: center; gap: 15px; }

.magnetic-btn:hover {
  background: #000;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .input-grid { grid-template-columns: 1fr; }
  .glass-wrapper { padding: 30px; border-radius: 30px; }
}

/* Map section */
.scm-bento-section{
  background:#f8fbff;
  padding:40px 0;
  padding-bottom: 0px;
}

.bento-grid{
  background:#fff;
  border:1px solid #edf2f7;
  box-shadow:0 25px 50px rgba(0,0,0,0.05);
  overflow:hidden;
}

/* INFO SIDE */

.info-side{
  padding:50px;
  border-right:1px solid #f1f5f9;
  height:100%;
}

.badge{
  color:#1e56a0;
  font-weight:800;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1.5px;
}

.highlight{
  color:#1e56a0;
}

.location-list{
  margin-top:40px;
}

.loc-item{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  margin-top:6px;
}

.dot.india{
  background:#2D358B;
  box-shadow:0 0 8px #2D358B;
}

.dot.uae{
  background:#1A94D9;
  box-shadow:0 0 8px #1A94D9;
}

.dot.abu{
  background:#5da01e;
  box-shadow:0 0 8px #5da01e;
}

.dot.hyd{
  background:#673CBA;
  box-shadow:0 0 8px #673CBA;
}

.loc-item strong{
  display:block;
  font-size:16px;
  color:#1e293b;
}

.loc-item p{
  font-size:13px;
  color:#64748b;
  margin:0;
}

/* MAP SIDE */

.map-side{
  position:relative;
  height:480px;
  overflow:hidden;
}

.map-interact-wrapper{
  width:100%;
  height:100%;
  position:relative;
}

.hidden-header-map{
  position:absolute;
  top:-65px;
  left:0;
  width:100%;
  height:calc(100% + 65px);
  border:0;
  pointer-events:none;
}

/* MAP SHIELD */

.map-scroll-shield{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  cursor:pointer;
}

.shield-content{
  background:#1e56a0;
  color:#fff;
  padding:12px 24px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  opacity:0;
  transform:translateY(10px);
  transition:0.3s;
}

.map-interact-wrapper:hover .shield-content{
  opacity:1;
  transform:translateY(0);
}

.map-interact-wrapper.active .map-scroll-shield{
  display:none;
}

.map-interact-wrapper.active .hidden-header-map{
  pointer-events:auto;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .bento-grid { 
    flex-direction: column; 
    height: auto; 
    border-radius: 20px; 
  }

  .info-side { 
    width: 100%; 
    border-right: none; 
    border-bottom: 1px solid #f1f5f9; 
    padding: 40px 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;    
    text-align: center;     
  }

  .location-list {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;   
  }

  .loc-item {
    display: flex;
    flex-direction: row;    
    /* justify-content: center;  */
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    /* max-width: 300px;      */
    text-align: left;      
  }

  .dot {
    flex-shrink: 0;        
    margin-top: 6px;       
  }

  .map-side { 
    width: 100%;
    height: 450px; 
    position: relative; 
    border-radius: 0 0 20px 20px; 
  }

  .hidden-header-map {
    height: calc(100% + 65px); 
    width: 100%;
    position: absolute;
    top: -65px;
    left: 0;
  }
}

/* SECTION */
.fusion-contact {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fbff;
  padding: 40px 20px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Glow spheres */
.fusion-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
}
.fusion-s1 {
  width: 400px;
  height: 400px;
  background: rgba(30, 86, 160, 0.12);
  top: -120px;
  left: -120px;
}
.fusion-s2 {
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.18);
  bottom: -80px;
  right: -80px;
}

/* Glass Card */
.fusion-glass {
  position: relative;
  z-index: 5;
  width: 100%;
  /* max-width: 90%; */
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(25px);
  /* border-radius: 40px; */
  padding: 40px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.27);
  /* box-shadow: 0 40px 100px rgba(0,0,0,0.08); */
}

/* Header */
.fusion-header {
  text-align: center;
  margin-bottom: 35px;
}

.fusion-header h2 {
  font-size: 34px;
  font-weight: 800;
}

.fusion-header span {
  color: #1acc8d;
}

/* GRID */
.fusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fusion-full {
  grid-column: span 2;
}

/* INPUTS */
.fusion-field input,
.fusion-field textarea {
  width: 100%;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.fusion-field input:focus,
.fusion-field textarea:focus {
  border-color: #1acc8d;
  box-shadow: 0 10px 30px rgba(26,204,141,0.18);
}

/* SUBJECT DROPDOWN */
.fusion-subject-dropdown {
  position: relative;
}

.fusion-subject-input {
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* GREEN ACTIVE STATE */
.fusion-subject-dropdown.open .fusion-subject-input {
  border-color: #1acc8d;
  box-shadow: 0 10px 30px rgba(26,204,141,0.18);
}

.fusion-placeholder {
  color: #6b7280;
}

.fusion-subject-menu {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  padding: 15px;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 50;
}

.fusion-subject-input:focus {
  outline: none;
  border-color: #1acc8d;
  box-shadow: 0 10px 30px rgba(26,204,141,0.18);
}

.fusion-subject-dropdown.open .fusion-subject-menu {
  display: block;
}

.fusion-group-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #1acc8d;
}

/* .fusion-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
} */

/* FIX checkbox alignment */
.fusion-group label {
  display: flex;
  align-items: center;
  gap: 10px;              /* space between box and text */
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  justify-content: flex-start;  /* IMPORTANT */
}

/* Reset weird global styles */
.fusion-group label input[type="checkbox"] {
  margin: 0;
  flex: none;
  width: 16px;
  height: 16px;
}

/* BUTTON */
.fusion-submit button {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg,#3ae6a8,#12b97d);
  /* background: linear-gradient(135deg,#4facfe,#00c6ff); */
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: .35s;
  border: none;
}

.fusion-submit button:hover {
  transform: translateY(-5px);
  color: white;
  box-shadow: 0 6px 14px rgba(0,0,0,.12),
    0 14px 28px rgba(18,185,125,.22);
}

/* MOBILE */
@media (max-width: 768px) {
  .fusion-grid {
    grid-template-columns: 1fr;
  }
  .fusion-full {
    grid-column: span 1;
  }
  .fusion-glass {
    padding: 30px;
  }
}

.fusion-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* Recaptcha sizing */
.fusion-recaptcha {
  transform: scale(0.95);
  transform-origin: left;
}

/* Button */
.fusion-submit button {
  background: linear-gradient(135deg, #1acc8d, #0ea5e9);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.fusion-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Mobile fix */
@media (max-width: 768px) {
  .fusion-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .fusion-submit {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# home about
--------------------------------------------------------------*/
.ice-tech {
  position: relative;
  padding: 40px 6%;
  background: transparent;
  /* background: linear-gradient(180deg, #f4f7ff, #ffffff); */
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.tech-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      120deg,
      rgba(37, 99, 235, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      60deg,
      rgba(37, 99, 235, 0.05) 1px,
      transparent 1px
    );
  background-size: 120px 120px;
  animation: moveLines 25s linear infinite;
}

.tech-logo {
  position: absolute;
  opacity: 0.08;
  transition: 0.6s ease;
}

/* .tech-logo.ice {
  width: 240px;
  top: 20%;
  left: -60px;
}

.tech-logo.scm {
  width: 240px;
  bottom: 10%;
  right: -40px;
} */

.ice-tech:hover .tech-logo {
  transform: scale(1.05);
}

.tech-content {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: center;
  z-index: 2;
}

.tech-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #2563eb;
  font-weight: 600;
}

.tech-content h2 {
  font-size: 50px;
  margin: 20px 0;
  color: #0f172a;
}

.tech-content h2 span {
  display: block;
  color: #2563eb;
}

.tech-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
}

.tech-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.tech-stats strong {
  font-size: 28px;
  color: #2563eb;
  display: block;
}

.tech-stats span {
  font-size: 14px;
  color: #64748b;
}

@keyframes moveLines {
  from { background-position: 0 0; }
  to { background-position: 300px 300px; }
}

@media (max-width: 900px) {
  .tech-content h2 {
    font-size: 32px;
  }

  .tech-stats {
    flex-direction: row;
    gap: 20px;
  }

  .tech-logo {
    display: none;
  }
}


.ice {
  animation: orbitMove 16s linear infinite;
}

.scm {
  animation: orbitMoveReverse 16s linear infinite;
}

@keyframes orbitMove {
  from { transform: rotate(0deg) translateX(210px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(210px) rotate(-360deg); }
}

@keyframes orbitMoveReverse {
  from { transform: rotate(360deg) translateX(210px) rotate(-360deg); }
  to   { transform: rotate(0deg) translateX(210px) rotate(0deg); }
}


/*--------------------------------------------------------------
# Home Service Section
--------------------------------------------------------------*/
.services-section {
  padding: 40px 6%;
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
}

.service-card {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background .4s ease;
}

.service-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: white;
  transition: transform .4s ease;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  opacity: .9;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card:hover .service-overlay {
  background: rgba(40, 59, 97, 0.868);
}

.service-card:hover .service-content {
  transform: translateY(-10px);
}

.card-ttl {
  color: white;
  font-weight: bold;
}

.card-para {
  color: white;
}


.explore-btn {
  display: inline-block;
  color: white;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 2;
}

.explore-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width .3s ease;
}

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

.service-card:hover .explore-btn {
  transform: translateX(6px);
  opacity: 1;
  color: #22c55e;
  font-weight: bold;
}

.service-card:hover .explore-btn::after {
  width: 100%;
}

.products-section {
  padding: 100px 6%;
  background: linear-gradient(135deg,#f8fafc,#eef2f7);
  font-family: "Poppins", sans-serif;
}

.card-img {
  height: 260px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.card-body {
  position: relative;
  margin: -60px 20px 0 20px;
  padding: 30px 20px;
  border-radius: 20px;
  border: none;
  /* background: rgba(255,255,255,0.75); */
  background: rgb(255 255 255);
  backdrop-filter: blur(15px);
  /* box-shadow: 0 25px 60px rgba(0,0,0,0.08); */
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  transition: all .4s ease;
  height: 260px;
  margin-bottom: 20px;
}

@media (min-width: 1023px) and (max-width: 1150px) {
  .card-body {
    height: 300px !important;
  }
}

@media (min-width: 1600px) {
  .card-body {
    height: 200px !important;
  }
}

@media (max-width: 500px) {
  .card-body {
    height: 240px !important;
  }
}

.card-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 14px;
  line-height: 1.6;
  /* margin-bottom: 20px; */
  color: #555;
}

.explore-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #12a772;
  text-decoration: none;
  transition: color .3s ease;
}

/* Arrow */
.explore-link .arrow{
  display: inline-block;
  transition: transform .3s ease;
}

/* Hover effect */
.explore-link:hover{
  color: #12a772;
}

.explore-link:hover .arrow{
  transform: translateX(6px);
}
/* HOVER EFFECT */
/* .unique-card:hover {
  transform: translateY(-15px);
} */

/* make whole card clickable feel */

/*--------------------------------------------------------------
# Home Product section
--------------------------------------------------------------*/
.unique-card{
  position: relative;
  border-radius: 25px;
  overflow: visible;
  transition: all .4s ease;
  cursor: pointer;
}

/* IMAGE ZOOM when hovering anywhere on card */
.unique-card:hover .card-img img{
  transform: scale(1.08);
}

/* CARD BODY SHADOW */
.unique-card:hover .card-body{
  /* box-shadow: 0 35px 80px rgba(0,0,0,0.15); */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

/* EXPLORE LINK ANIMATION when hovering anywhere on card */
.unique-card:hover .explore-link{
  color:#15803d;
}

.unique-card:hover .explore-link .arrow{
  transform: translateX(6px);
}

.wrap-container{
width:90%;
margin:auto;
}

.showcase-title{
text-align:center;
font-size:34px;
font-weight:700;
margin-bottom:10px;
}

.slider-holder{
position:relative;
}

.showcase-card{
background:#fff;
border-radius:14px;
padding:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.showcase-card img{
width:100%;
border-radius:10px;
margin-bottom:15px;
}

.showcase-card h3{
font-size:20px;
margin-bottom:10px;
}

.showcase-card p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

.showcase-card a{
display:inline-block;
padding:8px 22px;
background:#040677;
color:#fff;
border-radius:25px;
text-decoration:none;
font-size:14px;
}

/* arrows */

.nav-next,
.nav-prev{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
background:#040677;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
z-index:10;
}

.nav-prev{
left:-60px;
}

.nav-next{
right:-60px;
}

.nav-next::after{
content:"›";
color:#fff;
font-size:28px;
font-weight:bold;
margin-top: -5px;
padding-left: 3px;
}

.nav-prev::after{
content:"‹";
color:#fff;
font-size:28px;
font-weight:bold;
margin-top: -5px;
padding-right: 3px;
}

@media (max-width:768px){

.nav-prev{
left:-20px;
}

.nav-next{
right:-20px;
}

.showcase-title{
font-size:26px;
}

.product-showcase{
padding:50px 0;
}

}
/*----------About Us----------*/
/* .ice-tech {
  position: relative;
  background-image: url("/scmwebsite/assets/img/about.png"); 
  background-size: cover;      
  background-position: center;  
  background-repeat: no-repeat;
  padding: 100px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.tech-logo {
  max-width: 140px;
  height: auto;
}

@media (max-width: 768px) {
  .tech-logo {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .ice-tech {
    padding: 60px 20px;
    text-align: center;
  }

  .tech-content {
    max-width: 100%;
  }
} */
/*---------About Us-----------*/
/*--------Home page body--------------*/
.product-services-bg {
  background-image: url("/assets/img/home/productbg.png");
  /* background: linear-gradient(135deg,#0f2027,#203a43,#2c5364); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 10px 0;
}
.product-showcase,
.services-section {
  background: transparent;
}


.product-showcase,
.services-section {
  position: relative;
  z-index: 1;
}

.bullet-remove li i {
  color: #1acc8d;
  font-size: 16px;
}

.bullet-remove {
  list-style: none;
  padding-left: 0;
}

.bullet-remove li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px; /* 🔥 THIS CREATES SPACE */
}

/* optional: remove last extra space */
.bullet-remove li:last-child {
  margin-bottom: 0;
}

/* .bullet-remove li i {
  color: green;
  font-size: 18px;
  margin-top: 4px;
} */

.detail-img {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border: none !important;
}

.detail-img-inner {
  box-shadow: none;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,0.2))
    drop-shadow(0 0 15px rgba(58, 230, 168, 0.25));
}

.detail-img-shadow {
  box-shadow: none;
  filter: drop-shadow(0px 20px 25px rgba(0, 0, 0, 0.25))
          drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.15));
}

/* haloITSM code */
 .elementor-video {
    -o-object-fit: cover;
    object-fit: cover;
    border: none;
}

.strg-contant {
  font-weight: bolder !important;
  font-size: 18px !important;
}

/* lime2 start */
.product-selector {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 60px 6%;
}

.product-card {
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg,#3ae6a8,#1297b9);
  color: #fff;
}

.oracle-trust-red {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(135deg, #fff5f5);
  border: 1px solid #ffd6d6;
  padding: 18px 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

/* LEFT RED LINE */
.oracle-trust-red::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff3b3b, #b30000);
}

/* ICON */
.oracle-icon-red {
  min-width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff3b3b, #b30000);
  color: #fff !important; /* WHITE TICK */
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.4);
}

/* TEXT */
.oracle-content-red h4 {
  margin: 0;
  font-size: 16px;
  color: #7f1d1d;
  font-weight: 600;
}

.oracle-content-red p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #5f2121;
  line-height: 1.5;
}

.oracle-icon-red {
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

.product-showcase {
  position: relative;
  padding: 40px 6%;
  /* background: rgba(248, 251, 255, 0.4); */
}
/* PRODUCT SECTION */
.product-section {
  margin-bottom: 40px;
}

/* INNER */
.product-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.product-text {
  flex: 1;
}

.product-media {
  flex: 1;
}

.product-media img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.product-media iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  border: none;
}

/* BADGE */
/* .oracle-badge {
  background: linear-gradient(135deg,#ff4d4d,#b30000);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
} */

/* FLOATING NAV */
.floating-product-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.4s ease;
  z-index: 999;
}

/* SHOW ONLY IN SECTION */
.floating-product-nav.show {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* NAV STYLE */
.nav-pill {
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.nav-pill span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
}

/* ACTIVE */
.nav-pill.active {
  background: linear-gradient(135deg, #3ae6a8, #91e56f);
  /* background: linear-gradient(135deg,#3ae6a8,#1297b9); */
  font-weight: bolder;
  color: #fff;
  transform: scale(1.08);
}

.nav-pill.active span {
  background: #fff;
}

/* MOBILE */
@media (min-width: 612px) and (max-width: 991px) {

  .product-inner {
    flex-direction: column;
  }

  .floating-product-nav {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: space-around;
    transform: translateY(100px);
  }

  .floating-product-nav.show {
    transform: translateY(0);
  }
}

@media (max-width: 612px) {

  .floating-product-nav {
    bottom: 10px;
    top: auto;
    left: 10px;
    right: 10px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px;
    overflow-x: auto;         
    white-space: nowrap;    
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transform: translateY(100px);
  }

  .floating-product-nav.show {
    transform: translateY(0);
  }

  .nav-pill {
    font-size: 12px;
    padding: 6px 12px;       
    gap: 6px;
    flex-shrink: 0;        
  }

  .nav-pill span {
    width: 6px;
    height: 6px;
  }

}

/* CONTROL ALL SPACING IN ONE PLACE */
.product-block h3,
.product-block h4,
.product-block p,
.product-block strong,
.product-block span {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* BIG TITLE */
.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* SUB TEXT */
.product-sub {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 10px;
}

/* SECTION HEADINGS */
.section-heading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px !important; /* spacing between sections */
}

/* STRONG TEXT */
.strg-contant {
  display: block;
  font-weight: 600;
}

/* VIDEO TEXT */
.video-desc {
  font-size: 14px;
  color: #666;
}

/* VIDEO */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 12px;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}

/* ICON STYLE */
.feature-list i {
  color: #1acc8d;
  font-size: 16px;
  /* margin-top: 2px; */
}

/* HEADER FLEX */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

/* BADGE STYLE */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #ff4d4d, #b30000);
  color: #fff;

  padding: 8px 14px;
  border-radius: 30px;

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

  box-shadow: 0 8px 20px rgba(179, 0, 0, 0.25);

  white-space: nowrap;
}

/* ICON */
.verified-badge i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .verified-badge {
    margin-top: 8px;
  }
}

.bg-img-wrapper {
  background: #f8fbff;
  padding: 12px;
  border-radius: 12px;

  width: 100%;
  max-width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden; /* 🔥 prevents overflow on small screens */
}

/* IMAGE RESPONSIVE */
.bg-img-wrapper img {
  width: 100%;
  height: auto;

  max-width: 100%;
  object-fit: contain;  /* 🔥 keeps full image visible */

  mix-blend-mode: multiply;

  border-radius: 10px;
}

@media (max-width: 768px) {
  .bg-img-wrapper {
    padding: 8px;
  }

  .bg-img-wrapper img {
    border-radius: 8px;
  }
}

.security-box {
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  border-left: 4px solid #e63946;

  padding: 20px 22px;
  border-radius: 12px;

  margin: 20px 0;

  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.08);
}

/* HEADER */
.security-header {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;
  font-weight: 600;
  color: #b30000;

  margin-bottom: 12px;
}

.security-header i {
  font-size: 18px;
}

/* LIST */
.security-box .feature-list {
  margin-top: 10px;
}

.security-box .feature-list li {
  margin-bottom: 10px;
}

/* NOTE TEXT */
.security-note {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* ===== NAVY SECURITY BOX ===== */
.security-box-navy {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff); 
  border-left: 4px solid #06225F; 
  padding: 20px 22px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(6, 34, 95, 0.08);
}

.security-box-navy .security-note {
  margin-top: 10px;
  font-size: 14px;
  color: #475569;
}
/* lime2 end */

/* bullets start */
.icon-bullets {
  list-style: none;
  padding-left: 25px;
}

.icon-bullets li {
  margin-bottom: 10px;
}

.icon-bullets li::before {
  content: "✔";
  margin-right: 10px;
  color: #2e7d32;
  font-weight: bold;
}


/* circle bullets */
.circle-bullets {
  list-style: none;
  padding-left: 25px;
}

.circle-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.circle-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #1acc8d;
  border-radius: 50%;
}
/* circle bullets */ 
/* bullets end */

/* SCM details page slider start */
/* Isolated Container */
.scm-sam-container {
  position: relative;
  /* padding: 0 60px;  */
}

/* Base Buttons (60px) */
.scm-sam-static-btn, 
.scm-sam-loader-btn {
  width: 60px;
  height: 60px;
  background: #ffffff !important;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  z-index: 10;
  border: 2px solid #e2e8f0;
}

.scm-sam-static-btn { left: -20px; cursor: pointer; }
.scm-sam-loader-btn { right: -20px; transition: all 0.3s ease; }

.scm-sam-static-btn i, .scm-sam-loader-btn i {
  color: #06225F;
  font-size: 24px; /* Increased arrow size for 60px button */
  font-weight: 800;
}

/* LEFT: Strictly Static (No Hover changes) */
.scm-sam-static-btn:hover {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
}

/* RIGHT: Loader Green Hover */
.scm-sam-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  transform: rotate(-90deg);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.scm-sam-ring-circle {
  /* Circumference = 2 * PI * 28 = ~175.9 */
  stroke-dasharray: 175.9;
  stroke-dashoffset: 175.9;
  stroke-linecap: round;
}

/* SCM slider timing maintain */
/* Animation Start Class */
.scm-sam-active-loading .scm-sam-ring-circle {
  animation: scmSamFill 5s linear forwards;
}

@keyframes scmSamFill {
  from { stroke-dashoffset: 175.9; }
  to { stroke-dashoffset: 0; }
}

/* Isolated Indicators */
.scm-sam-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}
.scm-sam-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: #06225F;
  opacity: 0.3;
  transition: 0.3s;
}
.scm-sam-indicators button.active {
  opacity: 1;
  background-color: #10b981 !important;
  width: 20px;
  border-radius: 10px;
}

@media (min-width: 992px) and (max-width: 1550px) {
    .scm-sam-container {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 558px) {

  .scm-sam-ring {
    display: none !important;
  }
  .scm-sam-static-btn, 
  .scm-sam-loader-btn {
    width: 38px;
    height: 38px;
  }
  .scm-sam-static-btn i, 
  .scm-sam-loader-btn i {
    font-size: 14px;
  }
  .scm-sam-indicators button {
    width: 6px;
    height: 6px;
  }
  .scm-sam-indicators button.active {
    width: 12px;
  }
}
/* SCM details page slider End */

/* FSS SECTION */
.cosmos-section {
  padding: 40px 6%;
  background: linear-gradient(170deg, #ffffff00, #4e65adb3);
  /* background: linear-gradient(135deg, #f7f8fa, #4e65ad42); */
  /* background: linear-gradient(135deg, #f5f7fb, #eef2ff); */
}

.cosmos-header h2 {
  font-size: 34px;
  font-weight: 700;
}

.cosmos-header span {
  color: #1acc8d;
}

.cosmos-header p {
  color: #666;
  margin-top: 10px;
}

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

.cosmos-card {
  position: relative;
  padding: 25px 25px 25px 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.cosmos-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: 60%;
  width: 5px;
  background: linear-gradient(to bottom, #1acc8d, #0ea5e9);
  border-radius: 10px;
  transition: 0.3s;
}

.cosmos-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cosmos-card ul {
  padding-left: 18px;
}

.cosmos-card li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cosmos-grid {
    grid-template-columns: 1fr;
  }
}
/* FSS END */
/* home Our Customer Start*/
.futuristic-customers {
  /* height: 100vh; */
  padding: 40px;
  padding-bottom: 70px;
  background: radial-gradient(circle at center, #eef2ff, #f8fbff);
  position: relative;
  overflow: hidden;
}

/* HEADER */
.fc-header {
  text-align: center;
  margin-bottom: 40px;
}

.fc-header h2 {
  font-size: 40px;
  font-weight: 700;
}

.fc-header p {
  color: #666;
}

/* STAGE */
.fc-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* COMMON CARD */
.fc-item {
  height: 130px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: 0.3s;
}

/* ICON */
.fc-item i {
  font-size: 24px;
  color: #1acc8d;
}

/* CREATIVE STAGGER (NO OVERLAP) */
.i1 { transform: translateY(-10px); }
.i2 { transform: translateY(30px); }
.i3 { transform: translateY(30px); }
.i4 { transform: translateY(-10px); }

.i5 { transform: translateY(-5px); }
.i6 { transform: translateY(15px); }
.i7 { transform: translateY(15px); }
.i8 { transform: translateY(-5px); }

/* SOFT GLOW BACKGROUND SHAPES */
.futuristic-customers::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #1acc8d30;
  filter: blur(100px);
  top: 10%;
  left: 20%;
}

.futuristic-customers::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #0ea5e930;
  filter: blur(100px);
  bottom: 10%;
  right: 20%;
}

/* IMAGE INSIDE CARD */
.fc-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* OPTIONAL: if your icons are different sizes */
.fc-item img {
  max-width: 60px;
  max-height: 60px;
}

@media (max-width: 992px) {
  .fc-stage {
    display: grid !important;
    /* Create 6 thin columns to allow items to span 2 or 3 spots */
    grid-template-columns: repeat(6, 1fr) !important; 
    gap: 20px;
    padding: 0 15px;
  }

  .fc-item {
    transform: translateY(0) !important;
    height: 120px;
    grid-column: span 2; /* Default: 3 items fit in 6 columns (6 / 2 = 3) */
  }

  .fc-item:nth-child(7) {
    grid-column: 2 / span 2; /* Starts at col 2 to center the pair */
  }
  
  .fc-item:nth-child(8) {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .fc-header h2 {
    font-size: 26px;
  }

  .fc-stage {
    gap: 12px;
  }

  .fc-item {
    height: 100px;
    padding: 10px;
  }

  .fc-item img {
    width: 40px;
    height: 40px;
  }

  .fc-item span {
    font-size: 13px;
  }
    
  .fc-item {
    box-shadow: none;      
    background: transparent;
    backdrop-filter: none;     
  }
}
/* home Our Customer End*/

/* Continuity Vault point section Start */
.cv-clean {
  background: #f8fafc; /* light background */
  padding: 35px 20px;
}

/* heading */
.cv-heading {
  text-align: center;
  color: #0f172a; /* dark text */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.cv-heading span {
  color: #16a34a; /* green highlight */
}

/* layout */
.cv-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* column */
.cv-col {
  position: relative;
  padding: 0 20px;
}

/* vertical divider */
.cv-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: rgba(0,0,0,0.08);
}

/* text */
.cv-col p {
  color: #475569; /* FIXED visible text */
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  padding-left: 28px;
  position: relative;
  transition: 0.2s ease;
}

/* bullet */
.cv-col p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}

/* hover */
.cv-col p:hover {
  color: #0f172a;
  /* transform: translateX(4px); */
}

/* responsive */
@media (max-width: 992px) {
  .cv-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cv-col::after {
    display: none;
  }
}
/* Continuity Vault point section End */
/* Error message - RED TEXT, NO BACKGROUND */
.error-message {
    color: #dc3545 !important;         /* Red text */
    font-weight: 600;
    font-size: 14px;
    padding: 0;
    margin: 10px 0;
    background: transparent !important; /* No background */
    border: none !important;
    border-left: none !important;
    box-shadow: none !important;
    text-align: left;
}

/* Show error when d-block class is added */

/* captcha error msg */
.error-message.d-block {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide error initially */
.error-message:not(.d-block) {
    display: none;
    visibility: hidden;
    opacity: 0;
}